/* Svadobnydom — svadobný salón, Bratislava. Self-contained stylesheet (no external fonts/CDN). */

:root{
  --bg:#faf7f2;
  --bg-header:#fdfbf8;
  --bg-card:#fdfbf8;
  --border:#e6ded3;
  --border-soft:#ece5da;
  --text:#3a312b;
  --text-muted:#6f6259;
  --text-muted-2:#8a7d72;
  --rose:#b14a46;
  --rose-dark:#8f3a37;
  --rose-bg:#f3dfdb;
  --rose-border:#e3b8b1;
  --rose-text:#8b3b37;
  --brand:#5c4a42;
  --brand-text:#fbf8f5;
  --gold:#cda463;
  --gold-text:#3f2f1c;
  --blush:#f1ded6;
  --ok-bg:#f2ecd1;
  --ok-border:#d8c98b;
  --font-serif:Georgia,'Times New Roman',Times,serif;
  --font-sans:'Segoe UI',Tahoma,Geneva,Verdana,Arial,sans-serif;
  --maxw:1240px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--bg);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img{max-width:100%;display:block;}
a{color:var(--rose);text-decoration:none;}
a:hover{color:var(--rose-dark);text-decoration:underline;}
input,textarea,button,select{font-family:var(--font-sans);}
.container{max-width:var(--maxw);margin:0 auto;padding:0 40px;}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}

/* ---------- Header ---------- */
.site-header{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:16px 40px;background:var(--bg-header);border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:50;flex-wrap:wrap;
}
.brand{cursor:pointer;}
.brand-name{font-family:var(--font-serif);font-style:italic;font-size:28px;font-weight:700;color:#402f28;line-height:1;}
.brand-sub{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#8a5a4a;margin-top:2px;}

.nav-toggle{display:none;background:none;border:1px solid var(--border);border-radius:2px;padding:8px 10px;cursor:pointer;font-size:18px;line-height:1;color:var(--text);}

.main-nav{display:flex;gap:22px;flex-wrap:wrap;align-items:center;}
.main-nav a{
  font-size:14.5px;padding-bottom:6px;color:#4a3d34;font-weight:600;
  border-bottom:2px solid transparent;white-space:nowrap;text-decoration:none;
}
.main-nav a:hover{color:var(--rose);text-decoration:none;border-bottom-color:#d9b3ae;}
.main-nav a.active{color:var(--rose);font-weight:700;border-bottom-color:#9e5750;}

.header-actions{display:flex;align-items:center;gap:14px;}
.cart-btn{
  cursor:pointer;background:var(--rose-bg);border:1px solid var(--rose-border);
  padding:9px 16px;border-radius:2px;font-weight:700;font-size:14px;color:var(--rose-text);
  white-space:nowrap;
}
.cart-btn:hover{background:#eecfca;}

/* ---------- Cart drawer ---------- */
.cart-overlay{position:fixed;inset:0;background:rgba(30,25,22,.35);z-index:998;display:none;}
.cart-overlay.open{display:block;}
.cart-panel{
  position:fixed;top:0;right:0;height:100vh;width:380px;max-width:92vw;
  background:var(--bg-card);box-shadow:-4px 0 24px rgba(20,15,10,.15);
  z-index:999;transform:translateX(100%);transition:transform .3s ease;
}
.cart-panel.open{transform:translateX(0);}
.cart-panel-inner{padding:24px;display:flex;flex-direction:column;height:100%;}
.cart-panel-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;}
.cart-panel-title{font-family:var(--font-serif);font-size:22px;font-weight:700;}
.cart-close{cursor:pointer;font-size:24px;color:var(--text-muted);line-height:1;background:none;border:none;}
.cart-panel-items{flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:14px;}
.cart-empty-msg{color:var(--text-muted);font-size:14px;padding:30px 0;text-align:center;}
.cart-row{display:flex;gap:12px;border-bottom:1px solid var(--border-soft);padding-bottom:12px;}
.cart-row img{width:56px;height:70px;object-fit:cover;flex-shrink:0;border:1px solid var(--border);}
.cart-row-name{font-weight:700;font-size:14px;}
.cart-row-price{font-size:12px;color:var(--text-muted);margin:2px 0 6px;}
.qty-controls{display:flex;align-items:center;gap:8px;}
.qty-btn{cursor:pointer;width:20px;height:20px;text-align:center;line-height:18px;border:1px solid var(--border-soft);border-radius:2px;font-size:13px;background:#fff;}
.remove-link{cursor:pointer;margin-left:auto;font-size:12px;color:var(--rose-text);text-decoration:underline;background:none;border:none;padding:0;}
.cart-panel-foot{border-top:1px solid var(--border);padding-top:16px;margin-top:12px;}
.cart-subtotal-row{display:flex;justify-content:space-between;font-weight:700;font-size:15px;margin-bottom:12px;}
.btn-checkout{display:block;cursor:pointer;background:var(--brand);color:var(--brand-text);text-align:center;padding:13px;font-weight:700;font-size:14px;letter-spacing:.03em;border:none;width:100%;}

/* ---------- Buttons ---------- */
.btn{display:inline-block;cursor:pointer;padding:14px 28px;font-weight:700;font-size:14px;letter-spacing:.03em;border:none;text-align:center;text-decoration:none;}
.btn:hover{text-decoration:none;}
.btn-primary{background:var(--brand);color:var(--brand-text);}
.btn-primary:hover{background:#4a3b34;color:var(--brand-text);}
.btn-outline{border:1.5px solid var(--brand);color:var(--brand);background:transparent;}
.btn-outline:hover{background:var(--brand);color:var(--brand-text);}
.btn-gold{background:var(--gold);color:var(--gold-text);}
.btn-gold:hover{background:#bb8f4f;color:var(--gold-text);}
.btn-sm{padding:10px;font-size:13px;width:100%;}

/* ---------- Hero ---------- */
.hero{position:relative;height:560px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.hero-box{position:relative;text-align:center;max-width:680px;padding:36px 40px;background:rgba(250,247,242,.82);}
.hero-title{font-family:var(--font-serif);font-size:48px;font-weight:600;line-height:1.15;color:#402f28;margin:0;}
.hero-text{font-size:16px;color:var(--text-muted);margin:18px 0 26px;line-height:1.6;}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* ---------- USPs ---------- */
.usps{display:flex;justify-content:center;gap:56px;padding:44px 24px;flex-wrap:wrap;background:var(--bg-header);border-bottom:1px solid var(--border-soft);}
.usp{text-align:center;max-width:190px;}
.usp-icon{width:44px;height:44px;border-radius:50%;border:1.5px solid var(--gold);margin:0 auto 12px;}
.usp-title{font-weight:700;font-size:14px;margin-bottom:4px;}
.usp-desc{font-size:12.5px;color:var(--text-muted);line-height:1.5;}

/* ---------- Section heading ---------- */
.section{padding:64px 40px 20px;max-width:var(--maxw);margin:0 auto;}
.section-tight{padding:48px 40px 80px;max-width:var(--maxw);margin:0 auto;}
.section-narrow{max-width:1000px;}
.section-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:28px;flex-wrap:wrap;gap:10px;}
.section-title{font-family:var(--font-serif);font-size:32px;font-weight:600;margin:0;}
.page-title{font-family:var(--font-serif);font-size:38px;font-weight:600;margin:0 0 10px;}
.page-lead{font-size:15px;color:var(--text-muted);max-width:680px;line-height:1.6;margin-bottom:36px;}

/* ---------- Product grid ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.card{background:var(--bg-card);border:1px solid var(--border);display:flex;flex-direction:column;}
.card-img{width:100%;object-fit:cover;border-bottom:1px solid var(--border);}
.card-img-lg{height:340px;}
.card-img-md{height:300px;}
.card-img-sm{height:240px;}
.card-body{padding:18px 20px 22px;flex:1;display:flex;flex-direction:column;}
.card-tag{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:4px;}
.card-name{font-family:var(--font-serif);font-size:19px;font-weight:600;margin:0 0 6px;}
.card-desc{font-size:12.5px;color:var(--text-muted);line-height:1.5;margin-bottom:10px;}
.card-price{font-size:14px;font-weight:700;margin-bottom:12px;}

/* ---------- Category tiles ---------- */
.tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.tile{cursor:pointer;position:relative;height:220px;display:flex;align-items:flex-end;padding:16px;overflow:hidden;text-decoration:none;}
.tile img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.tile-label{position:relative;background:rgba(250,247,242,.88);padding:8px 14px;font-weight:700;font-size:14px;color:var(--text);}

/* ---------- Testimonials ---------- */
.testi-section{background:var(--blush);padding:64px 40px;}
.testi-inner{max-width:1100px;margin:0 auto;}
.testi-title{font-family:var(--font-serif);font-size:30px;font-weight:600;text-align:center;margin-bottom:36px;}
.testi-card{background:var(--bg-card);padding:26px;border:1px solid var(--border);}
.testi-quote{font-size:14px;line-height:1.6;color:#4a3d34;font-style:italic;margin-bottom:14px;}
.testi-name{font-weight:700;font-size:13px;}

/* ---------- Newsletter CTA ---------- */
.cta-section{padding:56px 40px;text-align:center;background:var(--brand);color:var(--brand-text);}
.cta-title{font-family:var(--font-serif);font-size:26px;font-weight:600;margin:0 0 10px;}
.cta-text{font-size:14px;color:#e9ddd6;margin-bottom:22px;}
.cta-form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.cta-form input{padding:12px 16px;border:none;width:260px;font-size:14px;}

/* ---------- Looks grid ---------- */
.grid-looks{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.look-card{background:var(--bg-card);border:1px solid var(--border);}
.look-img{height:230px;}
.look-body{padding:20px;}
.look-title{font-family:var(--font-serif);font-size:19px;font-weight:600;margin:0 0 8px;}
.look-desc{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:12px;}

/* ---------- Prep timeline ---------- */
.timeline{display:flex;flex-direction:column;gap:0;margin-bottom:50px;}
.timeline-item{display:flex;gap:20px;border-left:2px solid #d9b3ae;padding:0 0 26px 22px;position:relative;}
.timeline-item::before{content:"";position:absolute;left:-6px;top:2px;width:10px;height:10px;border-radius:50%;background:var(--rose);}
.timeline-when{width:150px;flex-shrink:0;font-weight:700;font-size:13px;color:var(--rose-text);}
.timeline-title{font-weight:700;font-size:14.5px;margin-bottom:4px;}
.timeline-desc{font-size:13px;color:var(--text-muted);line-height:1.5;}
.subhead{font-family:var(--font-serif);font-size:22px;font-weight:600;margin:0 0 20px;}
.service-card{border:1px solid var(--border);padding:22px;background:var(--bg-card);}
.service-title{font-weight:700;font-size:15px;margin-bottom:6px;}
.service-desc{font-size:13px;color:var(--text-muted);line-height:1.6;}
.consult-box{text-align:center;background:var(--blush);padding:34px;}
.consult-title{font-family:var(--font-serif);font-size:20px;font-weight:600;margin:0 0 10px;}

/* ---------- Tips ---------- */
.tips-list{display:flex;flex-direction:column;gap:22px;}
.tip-item{display:flex;gap:20px;border-bottom:1px solid var(--border-soft);padding-bottom:22px;}
.tip-item img{width:160px;height:110px;flex-shrink:0;object-fit:cover;}
.tip-title{font-family:var(--font-serif);font-size:18px;font-weight:600;margin:0 0 6px;}
.tip-excerpt{font-size:13.5px;color:var(--text-muted);line-height:1.6;margin-bottom:8px;}

/* ---------- About ---------- */
.about-hero{display:flex;gap:36px;align-items:center;margin-bottom:44px;flex-wrap:wrap;}
.about-text{flex:1;min-width:260px;font-size:15px;line-height:1.75;color:#4a3d34;}
.about-photo{width:320px;height:260px;flex-shrink:0;object-fit:cover;}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:46px;}
.value-card{text-align:center;padding:18px 10px;border:1px solid var(--border);}
.value-title{font-weight:700;font-size:14px;margin-bottom:6px;}
.value-desc{font-size:12px;color:var(--text-muted);line-height:1.5;}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.team-photo{height:200px;object-fit:cover;margin-bottom:10px;width:100%;}
.team-name{font-weight:700;font-size:14px;}
.team-role{font-size:12.5px;color:var(--rose-text);}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;}
.contact-block{margin-bottom:26px;}
.contact-label{font-weight:700;font-size:14px;margin-bottom:6px;}
.contact-value{font-size:14px;color:var(--text-muted);line-height:1.6;}
.map-box{height:180px;overflow:hidden;border:1px solid var(--border-soft);}
.map-box img{width:100%;height:100%;object-fit:cover;}
.success-box{background:var(--ok-bg);border:1px solid var(--ok-border);padding:24px;}
.success-title{font-weight:700;font-size:15px;margin-bottom:6px;}
.success-text{font-size:13.5px;color:var(--text-muted);}

/* ---------- Forms ---------- */
form.stack{display:flex;flex-direction:column;gap:12px;}
.field{padding:12px 14px;border:1px solid #d9cfc2;font-size:14px;width:100%;background:#fff;color:var(--text);}
.field:focus{outline:2px solid var(--gold);outline-offset:-1px;}
textarea.field{resize:vertical;}
.checkline{font-size:12.5px;color:var(--text-muted);display:flex;gap:8px;align-items:flex-start;margin-top:4px;}
.checkline input{margin-top:2px;}
.form-error{background:#fbeceb;border:1px solid #e3b8b1;color:var(--rose-text);padding:12px 14px;font-size:13.5px;margin-bottom:14px;}
.honeypot{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}

/* ---------- Cart / checkout page ---------- */
.cart-page-row{display:flex;gap:16px;border-bottom:1px solid var(--border-soft);padding-bottom:16px;align-items:center;}
.cart-page-row img{width:70px;height:88px;object-fit:cover;flex-shrink:0;}
.cart-page-name{font-weight:700;font-size:15px;}
.cart-page-price{font-size:13px;color:var(--text-muted);}
.cart-page-total{width:80px;text-align:right;font-weight:700;font-size:14px;}
.cart-summary-total{display:flex;justify-content:flex-end;font-size:18px;font-weight:700;margin-bottom:8px;}
.cart-summary-note{font-size:12.5px;color:var(--text-muted);text-align:right;margin-bottom:30px;}
.cart-empty-block{text-align:center;padding:40px 0;color:var(--text-muted);}

/* ---------- Legal ---------- */
.legal{max-width:820px;margin:0 auto;padding:48px 40px 80px;font-size:14.5px;line-height:1.75;color:#4a3d34;}
.legal h1{font-family:var(--font-serif);font-size:34px;font-weight:600;margin-bottom:24px;color:#332822;}

/* ---------- Footer ---------- */
.site-footer{background:var(--blush);border-top:1px solid var(--border);padding:52px 40px 28px;margin-top:20px;}
.footer-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:36px;margin-bottom:36px;}
.footer-brand{font-family:var(--font-serif);font-style:italic;font-size:24px;font-weight:700;margin-bottom:10px;}
.footer-desc{font-size:13px;color:var(--text-muted);line-height:1.6;}
.social-row{display:flex;gap:10px;margin-top:16px;}
.social-circle{width:32px;height:32px;border-radius:50%;border:1px solid #c9a48f;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--rose-text);}
.footer-col-title{font-weight:700;font-size:13px;margin-bottom:12px;}
.footer-links{display:flex;flex-direction:column;gap:8px;font-size:13px;}
.footer-bottom{max-width:var(--maxw);margin:0 auto;border-top:1px solid var(--border);padding-top:18px;font-size:11.5px;color:var(--text-muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;}

/* ---------- Cookie banner ---------- */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;background:var(--brand);color:#f5ece6;padding:18px 32px;display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;z-index:1000;}
.cookie-banner a{color:#e7c088;}
.cookie-text{font-size:13px;max-width:640px;line-height:1.5;}
.cookie-actions{display:flex;gap:10px;flex-shrink:0;}
.btn-cookie-reject{cursor:pointer;border:1px solid #b8a89c;background:transparent;color:#f5ece6;padding:9px 18px;font-size:13px;font-weight:700;}
.btn-cookie-accept{cursor:pointer;background:var(--gold);color:var(--gold-text);padding:9px 18px;font-size:13px;font-weight:700;border:none;}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .tiles{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .grid-looks{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .about-hero{flex-direction:column;}
  .about-photo{width:100%;}
}
@media (max-width:680px){
  .site-header{padding:14px 20px;}
  .nav-toggle{display:inline-block;}
  .main-nav{display:none;width:100%;flex-direction:column;gap:2px;order:3;padding-top:10px;}
  .main-nav.open{display:flex;}
  .main-nav a{padding:10px 4px;border-bottom:1px solid var(--border-soft);width:100%;}
  .section,.section-tight{padding-left:20px;padding-right:20px;}
  .grid-4,.grid-3,.grid-2,.tiles,.values-grid,.team-grid,.grid-looks{grid-template-columns:1fr;}
  .hero{height:460px;}
  .hero-title{font-size:34px;}
  .hero-box{padding:24px 20px;}
  .footer-grid{grid-template-columns:1fr;padding:0 20px;}
  .footer-bottom{padding:0 20px 0;flex-direction:column;}
  .cart-page-row{flex-wrap:wrap;}
  .tip-item{flex-direction:column;}
  .tip-item img{width:100%;height:160px;}
}
