/* Gentlejam — hlavný stylopis */
:root{
  --bg:#FBF4EC;
  --maroon:#8C1D3F;
  --maroon-hover:#C13564;
  --green:#223D2C;
  --gold:#C69A4E;
  --pink:#F3D9DE;
  --purple:#5B2A50;
  --text:#2B211F;
  --text-muted:#584B46;
  --text-muted2:#8C7B74;
  --border:#F0E4D8;
  --border2:#E4D5C8;
  --footer-text:#CBB9A8;
  --footer-border:#33513E;
  --font-serif: Georgia, 'Times New Roman', 'Cambria', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--bg);color:var(--text);font-family:var(--font-sans);}
a{color:var(--maroon);text-decoration:none;}
a:hover{color:var(--maroon-hover);}
img{max-width:100%;display:block;}
input,select,textarea,button{font-family:var(--font-sans);}
::placeholder{color:#9A8B85;}
h1,h2,h3{font-family:var(--font-serif);color:var(--text);margin:0;}
.page{min-height:100vh;display:flex;flex-direction:column;}
.wrap{max-width:1240px;margin:0 auto;padding:0 24px;}

/* Top bar */
.topbar{background:var(--green);color:var(--pink);font-size:13px;padding:6px 24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;}
.topbar .grp{display:flex;gap:18px;flex-wrap:wrap;}

/* Header */
header.site{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:40;}
.header-inner{max-width:1240px;margin:0 auto;padding:16px 24px;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.logo{cursor:pointer;display:flex;align-items:baseline;gap:6px;}
.logo .name{font-family:var(--font-serif);font-weight:700;font-size:30px;color:var(--maroon);letter-spacing:.5px;}
.logo .tag{font-size:11px;color:var(--gold);letter-spacing:2px;text-transform:uppercase;}
nav.desktop-nav{display:none;gap:16px;font-size:14px;font-weight:500;flex-wrap:wrap;}
nav.desktop-nav a{color:var(--text);cursor:pointer;}
nav.desktop-nav a.active{color:var(--maroon);}
.header-actions{display:flex;align-items:center;gap:16px;}
.acct-link{font-size:14px;font-weight:500;color:var(--text);white-space:nowrap;}
.cart-btn{cursor:pointer;position:relative;display:flex;align-items:center;gap:6px;background:var(--maroon);color:#fff;padding:9px 16px;border-radius:24px;font-size:14px;font-weight:600;border:none;}
.cart-btn .badge{background:var(--gold);color:var(--text);border-radius:12px;padding:1px 7px;font-size:12px;}
.mobile-toggle{cursor:pointer;font-size:22px;line-height:1;padding:4px;background:none;border:none;}
@media (min-width:1080px){
  nav.desktop-nav{display:flex !important;}
  .mobile-toggle{display:none !important;}
}
.mobile-menu{background:#fff;border-bottom:1px solid var(--border);padding:12px 24px;display:flex;flex-direction:column;gap:10px;font-size:15px;font-weight:500;}
.mobile-menu a{color:var(--text);}
.mobile-menu[hidden]{display:none;}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;border-radius:6px;font-size:15px;font-weight:600;cursor:pointer;padding:15px 28px;}
.btn-primary{background:var(--maroon);color:#fff;}
.btn-primary:hover{background:var(--maroon-hover);color:#fff;}
.btn-outline{background:transparent;color:var(--green);border:1.5px solid var(--green);}
.btn-dark{background:var(--green);color:#fff;border:none;border-radius:5px;font-weight:600;cursor:pointer;}
.btn-gold{background:var(--gold);color:var(--text);border:none;font-weight:700;cursor:pointer;border-radius:6px;}
.btn:disabled{opacity:.6;cursor:not-allowed;}

/* Hero */
.hero{display:grid;grid-template-columns:1fr;gap:0;min-height:420px;}
@media (min-width:860px){.hero{grid-template-columns:1.1fr 1fr;min-height:520px;}}
.hero-copy{padding:56px 24px;display:flex;flex-direction:column;justify-content:center;gap:22px;background:var(--bg);}
.hero-eyebrow{color:var(--gold);letter-spacing:3px;font-size:12.5px;font-weight:600;text-transform:uppercase;}
.hero-copy h1{font-size:40px;line-height:1.1;font-weight:700;}
@media (min-width:640px){.hero-copy h1{font-size:52px;}}
.hero-copy p{font-size:17px;line-height:1.6;color:var(--text-muted);max-width:480px;margin:0;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px;}
.hero-photo{min-height:260px;background-size:cover;background-position:center;}

/* Sections */
.section{max-width:1240px;margin:0 auto;padding:52px 24px;}
.section-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:24px;flex-wrap:wrap;gap:10px;}
.section-head h2{font-size:26px;}
@media (min-width:640px){.section-head h2{font-size:30px;}}
.see-all{font-weight:600;font-size:14px;cursor:pointer;}

/* Product grid & cards */
.grid-products{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:20px;}
.card-product{background:#fff;border-radius:10px;overflow:hidden;border:1px solid var(--border);display:flex;flex-direction:column;}
.card-product .thumb{aspect-ratio:1;background-size:cover;background-position:center;position:relative;display:block;}
.card-product .badge{position:absolute;top:10px;left:10px;background:var(--gold);color:var(--text);font-size:11px;font-weight:700;padding:3px 9px;border-radius:12px;}
.card-product .body{padding:14px;display:flex;flex-direction:column;gap:6px;flex:1;}
.card-product .pname{font-weight:600;font-size:14.5px;color:var(--text);}
.card-product .pweight{font-size:12.5px;color:var(--text-muted2);}
.card-product .prow{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:8px;}
.card-product .pprice{font-weight:700;color:var(--maroon);font-size:15px;}
.card-product .addbtn{padding:8px 12px;font-size:12.5px;}

/* Benefits (dark section) */
.section-dark{background:var(--green);padding:56px 24px;}
.section-dark h2{color:var(--pink);font-size:26px;margin:0 0 28px;text-align:center;}
.benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:28px;max-width:1240px;margin:0 auto;}
.benefit{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center;color:var(--pink);}
.benefit .dot{width:14px;height:14px;border-radius:50%;background:var(--gold);}
.benefit strong{font-size:15px;}
.benefit span.desc{font-size:13px;color:#CBB9A8;line-height:1.5;}

/* Usage chips */
.chip-row{display:flex;flex-wrap:wrap;gap:10px;}
.chip-static{background:var(--pink);color:var(--maroon);padding:9px 16px;border-radius:20px;font-size:13.5px;font-weight:500;}

/* Shipping band */
.section-pink-center{background:var(--pink);padding:48px 24px;}
.section-pink-center .inner{max-width:900px;margin:0 auto;text-align:center;}
.section-pink-center h2{color:var(--purple);font-size:26px;margin:0 0 10px;}
@media (min-width:640px){.section-pink-center h2{font-size:28px;}}
.section-pink-center p{color:#6B4A55;font-size:15px;line-height:1.6;margin:0 0 8px;}

/* Articles */
.grid-articles{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;}
.card-article{cursor:pointer;background:#fff;border:1px solid var(--border);border-radius:10px;overflow:hidden;}
.card-article .thumb{height:140px;background-size:cover;background-position:center;}
.card-article .body{padding:16px;}
.card-article h3{font-size:16px;margin:0 0 6px;}
.card-article p{font-size:13px;color:var(--text-muted2);margin:0;line-height:1.5;}

/* Newsletter */
.section-maroon{background:var(--maroon);padding:48px 24px;}
.section-maroon .inner{max-width:700px;margin:0 auto;text-align:center;}
.section-maroon h2{color:#fff;font-size:24px;margin:0 0 8px;}
@media (min-width:640px){.section-maroon h2{font-size:26px;}}
.section-maroon p{color:var(--pink);font-size:14px;margin:0 0 20px;}
.nl-form{display:flex;gap:10px;max-width:420px;margin:0 auto;flex-wrap:wrap;justify-content:center;}
.nl-form input{flex:1;min-width:200px;padding:12px 14px;border-radius:6px;border:none;font-size:14px;}
.nl-success{color:var(--gold);font-weight:600;}

/* Category header band */
.cat-hero{background:var(--pink);padding:36px 24px;}
.cat-hero-photo{height:180px;border-radius:10px;background-size:cover;background-position:center;margin-top:18px;max-width:1240px;margin-left:auto;margin-right:auto;}
.cat-hero .inner{max-width:1240px;margin:0 auto;}
.cat-hero h1{font-size:30px;color:var(--purple);margin:0 0 8px;}
@media (min-width:640px){.cat-hero h1{font-size:36px;}}
.cat-hero p{font-size:15px;color:#6B4A55;max-width:640px;margin:0;line-height:1.6;}

/* Tube benefits / feature cards */
.grid-features{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px;}
.feature-card{background:#fff;border:1px solid var(--border);border-radius:10px;padding:18px;}
.feature-card strong{font-size:14.5px;color:var(--maroon);}
.feature-card p{font-size:13px;color:var(--text-muted2);margin:6px 0 0;line-height:1.5;}

/* Sub tabs */
.subtabs{display:flex;gap:10px;flex-wrap:wrap;padding:0 24px;max-width:1240px;margin:0 auto;}
.subtab{cursor:pointer;padding:8px 15px;border-radius:18px;font-size:13px;font-weight:600;background:var(--pink);color:var(--maroon);border:none;}
.subtab.active{background:var(--maroon);color:#fff;}

/* Catalog layout */
.catalog-layout{max-width:1240px;margin:0 auto;padding:36px 24px 64px;display:grid;grid-template-columns:1fr;gap:32px;}
@media (min-width:900px){.catalog-layout{grid-template-columns:240px 1fr;}}
.filters aside{display:flex;flex-direction:column;gap:22px;}
.filter-group h3{font-size:14px;margin:0 0 10px;color:var(--text);}
.chip-filters{display:flex;flex-wrap:wrap;gap:6px;}
.chip{cursor:pointer;font-size:12px;padding:6px 11px;border-radius:14px;background:var(--pink);color:var(--maroon);border:none;}
.chip.active{background:var(--maroon);color:#fff;}
.range-row{display:flex;flex-direction:column;gap:8px;}
.check-row{display:flex;flex-direction:column;gap:8px;font-size:13px;}
.check-row label{display:flex;gap:8px;align-items:center;cursor:pointer;}
.reset-filters{cursor:pointer;font-size:12.5px;font-weight:600;color:var(--maroon);background:none;border:none;padding:0;text-align:left;}
.result-count{font-size:13px;color:var(--text-muted2);margin:0 0 16px;}
.empty-state{color:var(--text-muted2);padding:40px 0;text-align:center;}

/* Product detail */
.product-detail{max-width:1100px;margin:0 auto;padding:44px 24px 70px;display:grid;grid-template-columns:1fr;gap:40px;}
@media (min-width:800px){.product-detail{grid-template-columns:1fr 1fr;}}
.product-photo{aspect-ratio:1;border-radius:12px;background-size:cover;background-position:center;}
.product-info{display:flex;flex-direction:column;gap:14px;}
.product-info h1{font-size:28px;}
@media (min-width:640px){.product-info h1{font-size:32px;}}
.sku-line{font-size:13px;color:var(--text-muted2);}
.price-row{display:flex;align-items:baseline;gap:10px;}
.price-row .price{font-size:26px;font-weight:700;color:var(--maroon);}
.price-row .per100{font-size:13px;color:var(--text-muted2);}
.no-alcohol{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--green);}
.qty-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.qty-box{display:flex;align-items:center;border:1px solid var(--border2);border-radius:6px;}
.qty-box button{border:none;background:none;padding:10px 14px;cursor:pointer;font-size:16px;}
.qty-box span{padding:0 10px;font-weight:600;}
.detail-facts{border-top:1px solid var(--border);padding-top:16px;display:flex;flex-direction:column;gap:10px;font-size:13.5px;}
.nutrition-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px;background:var(--bg);border-radius:8px;padding:12px;}

/* Forms */
.form-grid{display:grid;grid-template-columns:1fr;gap:12px;}
@media (min-width:640px){.form-grid.two-col{grid-template-columns:1fr 1fr;}}
.field{padding:12px 14px;border:1px solid var(--border2);border-radius:6px;font-size:14px;background:#fff;color:var(--text);width:100%;}
textarea.field{min-height:90px;}
.form-grid .span2{grid-column:1/-1;}
.consent-row{display:flex;gap:8px;align-items:flex-start;font-size:12.5px;color:var(--text-muted);}
.form-success{background:var(--green);color:#fff;padding:20px;border-radius:10px;}
.form-error{background:#8C1D3F;color:#fff;padding:14px 16px;border-radius:8px;font-size:13.5px;}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:10px;}
.faq-item{border:1px solid var(--border);border-radius:8px;overflow:hidden;background:#fff;}
.faq-q{cursor:pointer;padding:16px 18px;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:14.5px;background:#fff;border:none;width:100%;text-align:left;}
.faq-a{padding:0 18px 16px;font-size:14px;color:var(--text-muted);line-height:1.6;margin:0;display:none;}
.faq-item.open .faq-a{display:block;}

/* Legal */
.legal-layout{max-width:1100px;margin:0 auto;padding:48px 24px 70px;display:grid;grid-template-columns:1fr;gap:36px;}
@media (min-width:760px){.legal-layout{grid-template-columns:270px 1fr;}}
.legal-nav{display:flex;flex-direction:column;gap:6px;position:sticky;top:90px;align-self:start;}
.legal-nav a{padding:9px 12px;border-radius:6px;font-size:13.5px;color:var(--text);}
.legal-nav a:hover,.legal-nav a.active{background:var(--pink);color:var(--maroon);font-weight:700;}
.legal-doc{margin-bottom:52px;}
.legal-doc h1{font-size:26px;margin:0 0 20px;}
@media (min-width:640px){.legal-doc h1{font-size:30px;}}
.legal-doc p{font-size:14.5px;line-height:1.7;color:#3A2F2C;margin:0 0 14px;}

/* Cart */
.cart-layout{display:grid;grid-template-columns:1fr;gap:32px;}
@media (min-width:800px){.cart-layout{grid-template-columns:1fr 320px;}}
.cart-item{display:flex;gap:14px;align-items:center;background:#fff;border:1px solid var(--border);border-radius:10px;padding:12px;}
.cart-item .thumb{width:64px;height:64px;flex-shrink:0;border-radius:6px;background-size:cover;background-position:center;}
.cart-item .info{flex:1;}
.cart-item .info .n{font-weight:600;font-size:14px;}
.cart-item .info .w{font-size:12px;color:var(--text-muted2);}
.cart-item .lt{font-weight:700;color:var(--maroon);width:70px;text-align:right;}
.cart-item .rm{cursor:pointer;color:var(--text-muted2);font-size:15px;background:none;border:none;}
.summary-box{background:#fff;border:1px solid var(--border);border-radius:10px;padding:20px;display:flex;flex-direction:column;gap:10px;align-self:start;}
.summary-row{display:flex;justify-content:space-between;font-size:13.5px;}
.summary-row.total{border-top:1px solid var(--border);margin-top:6px;padding-top:10px;font-weight:700;font-size:16px;color:var(--maroon);}

/* Checkout steps */
.checkout-steps{display:flex;gap:8px;margin-bottom:30px;flex-wrap:wrap;}
.step-pill{font-size:12.5px;font-weight:600;padding:6px 12px;border-radius:14px;background:var(--pink);color:var(--maroon);}
.step-pill.done{background:var(--maroon);color:#fff;}
.radio-option{display:flex;justify-content:space-between;align-items:center;border:1px solid var(--border2);border-radius:8px;padding:14px;cursor:pointer;background:#fff;gap:10px;}
.radio-option input{margin:0;}

/* Account */
.auth-tabs{display:flex;gap:20px;margin-bottom:22px;border-bottom:1px solid var(--border);}
.auth-tab{cursor:pointer;padding-bottom:10px;font-weight:700;border-bottom:2px solid transparent;color:var(--text);background:none;border-top:none;border-left:none;border-right:none;font-size:15px;}
.auth-tab.active{border-bottom-color:var(--maroon);color:var(--maroon);}

/* Toast */
.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);background:var(--green);color:#fff;padding:12px 22px;border-radius:24px;font-size:13.5px;font-weight:600;z-index:80;display:none;}
.toast.show{display:block;}

/* Cookie banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#2B211F;color:#F3E8DE;padding:18px 24px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;z-index:90;}
.cookie-banner[hidden]{display:none;}
.cookie-banner span{font-size:13px;max-width:560px;line-height:1.5;}
.cookie-banner .actions{display:flex;gap:10px;flex-wrap:wrap;}
.cookie-btn{background:none;border:1px solid #F3E8DE;color:#F3E8DE;padding:9px 16px;border-radius:6px;font-size:12.5px;cursor:pointer;}
.cookie-btn.primary{background:var(--gold);border:none;color:var(--text);font-weight:700;}
.cookie-panel{position:fixed;inset:0;background:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;z-index:95;padding:20px;}
.cookie-panel[hidden]{display:none;}
.cookie-panel-inner{background:#fff;border-radius:12px;padding:28px;max-width:420px;width:100%;}
.cookie-panel-inner h3{font-size:22px;margin:0 0 16px;}
.cookie-toggle-row{display:flex;justify-content:space-between;font-size:13.5px;margin-bottom:14px;}

/* Footer */
footer.site{background:var(--green);color:var(--footer-text);padding:52px 24px 20px;margin-top:auto;}
.footer-grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:32px;}
@media (min-width:760px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr;}}
.footer-col{display:flex;flex-direction:column;gap:9px;font-size:13.5px;}
.footer-col strong{color:#fff;margin-bottom:4px;}
.footer-col a{color:var(--footer-text);}
.footer-brand{font-family:var(--font-serif);font-weight:700;font-size:24px;color:#fff;}
.footer-desc{font-size:13px;line-height:1.6;margin:12px 0 0;max-width:280px;}
.footer-bottom{max-width:1240px;margin:32px auto 0;border-top:1px solid var(--footer-border);padding-top:18px;font-size:12px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;}

/* Misc pages */
.simple-page{max-width:800px;margin:0 auto;padding:52px 24px 70px;}
.simple-page h1{font-size:30px;margin:0 0 24px;}
@media (min-width:640px){.simple-page h1{font-size:36px;}}
.simple-page p{font-size:15.5px;line-height:1.75;color:#3A2F2C;margin:0 0 16px;}
.article-page{max-width:720px;margin:0 auto;padding:48px 24px 70px;}
.article-page h1{font-size:26px;margin:16px 0 20px;}
@media (min-width:640px){.article-page h1{font-size:32px;}}
.article-photo{height:220px;background-size:cover;background-position:center;border-radius:10px;margin-bottom:24px;}
.back-link{font-size:13px;font-weight:600;cursor:pointer;}
.contact-grid{max-width:1000px;margin:0 auto;padding:52px 24px 70px;display:grid;grid-template-columns:1fr;gap:40px;}
@media (min-width:800px){.contact-grid{grid-template-columns:1fr 1fr;}}
.contact-info{display:flex;flex-direction:column;gap:8px;font-size:14.5px;color:#3A2F2C;line-height:1.6;}
.contact-photo{margin-top:24px;height:180px;border-radius:10px;background-size:cover;background-position:center;}
.not-found{max-width:600px;margin:0 auto;padding:90px 24px;text-align:center;}
.not-found h1{font-size:64px;color:var(--maroon);margin-bottom:10px;}

.badge-inline{background:var(--gold);color:var(--text);font-size:11px;font-weight:700;padding:4px 10px;border-radius:12px;width:fit-content;}
.hidden{display:none !important;}
