/* Pametna Organizacija — glavna stilska datoteka */

:root{
  --bg:#FAF7F2;
  --dark:#26292C;
  --dark2:#32363A;
  --dark3:#3B3F43;
  --dark4:#454A4F;
  --gold:#C29A6B;
  --brown:#8A6A3C;
  --border:#E3DCD1;
  --tan:#F1EADD;
  --tan2:#E8DCC8;
  --muted:#5A6066;
  --muted2:#4B5157;
  --muted3:#8A8073;
  --muted4:#9A958C;
  --cream:#F5F1EA;
  --footer-text:#C9C4BA;
  --white:#fff;
  --font-serif:Georgia,'Times New Roman',serif;
  --font-sans:'Segoe UI',-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--dark);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--brown);text-decoration:none;border-bottom:1px solid rgba(138,106,60,.35)}
a:hover{color:var(--dark);border-bottom-color:var(--dark)}
h1,h2,h3{font-family:var(--font-serif);font-weight:400;margin:0}
button{font-family:inherit;cursor:pointer}
input,select,textarea{font-family:inherit;font-size:15px}
input[type=range]{accent-color:var(--gold)}
ul{margin:0}
.container{max-width:1200px;margin:0 auto;padding:0 32px}

/* ---------- Promo bar ---------- */
.promo-bar{
  background:var(--dark);color:var(--cream);font-size:13px;letter-spacing:.02em;
  padding:9px 24px;display:flex;justify-content:center;gap:28px;flex-wrap:wrap;text-align:center;
}
.promo-bar .accent{color:var(--gold)}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:40;background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1200px;margin:0 auto;padding:14px 32px;display:flex;align-items:center;gap:28px;
}
.logo{display:flex;align-items:center;gap:12px;background:none;border:none;padding:0;cursor:pointer;text-align:left}
.logo-mark{width:34px;height:34px;border-radius:9px;background:var(--gold);display:block;position:relative;flex:none}
.logo-mark span{position:absolute;left:7px;right:7px;height:2px;background:#fff;display:block}
.logo-mark span:nth-child(1){top:10px}
.logo-mark span:nth-child(2){top:17px;opacity:.65}
.logo-mark span:nth-child(3){top:24px;opacity:.4;right:14px}
.logo-text{display:flex;flex-direction:column;line-height:1.15}
.logo-name{font-weight:700;font-size:16px;letter-spacing:-.01em;color:var(--dark)}
.logo-domain{font-size:11px;color:var(--muted3);letter-spacing:.09em;text-transform:uppercase}
.nav{display:flex;gap:22px;flex-wrap:wrap;margin-left:auto;align-items:center;font-size:14.5px;font-weight:500}
.nav-link{background:none;border:none;padding:4px 0;cursor:pointer;color:var(--dark);font-size:14.5px;font-weight:500;font-family:inherit;border-bottom:none}
.nav-link:hover{color:var(--brown)}
.nav-link.is-active{color:var(--brown);border-bottom:2px solid var(--gold)}
.cart-btn{
  display:flex;align-items:center;gap:9px;background:var(--dark);color:#fff;border:none;
  border-radius:999px;padding:10px 18px;cursor:pointer;font-size:14px;font-weight:600;border-bottom:none;
}
.cart-count{
  background:var(--gold);border-radius:999px;min-width:22px;height:22px;display:inline-flex;
  align-items:center;justify-content:center;font-size:12px;color:var(--dark);
}
/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;
  padding:16px 30px;font-size:15.5px;font-weight:600;cursor:pointer;border:none;text-align:center;border-bottom:none;
}
.btn:hover{border-bottom:none}
.btn-dark{background:var(--dark);color:#fff}
.btn-dark:hover{background:#1a1c1e;color:#fff}
.btn-outline{background:none;color:var(--dark);border:1px solid var(--dark)}
.btn-outline:hover{background:var(--dark);color:#fff}
.btn-gold{background:var(--gold);color:var(--dark);font-weight:700}
.btn-gold:hover{background:#b08a58}
.btn-outline-light{background:none;border:1px solid #6A6F74;color:var(--cream)}
.btn-outline-light:hover{border-color:var(--gold);color:var(--gold)}
.btn-sm{padding:10px 18px;font-size:14px}
.btn-block{width:100%}

/* ---------- Sections / hero ---------- */
.section{padding:60px 32px}
.hero{padding:76px 32px 40px;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.eyebrow{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--brown);font-weight:600;margin-bottom:20px}
.hero h1{font-size:60px;line-height:1.05;letter-spacing:-.02em;margin:0 0 22px;color:var(--dark)}
.hero p.lead{font-size:18.5px;color:var(--muted2);max-width:520px;margin:0 0 30px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px}
.hero-stats{display:flex;gap:34px;flex-wrap:wrap;font-size:13.5px;color:var(--muted)}
.hero-stats strong{display:block;font-size:22px;font-weight:700;color:var(--dark)}
.hero-photos{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:170px 170px;gap:14px}
.hero-photos .ph-wide{grid-column:1/-1}
.ph{border:1px solid var(--border);border-radius:14px;overflow:hidden;background:var(--tan);position:relative}
.ph img{width:100%;height:100%;object-fit:cover}

/* ---------- Organizer wizard (dark section) ---------- */
.wizard-section{background:var(--dark);color:var(--cream);margin-top:36px}
.wizard-head{display:flex;justify-content:space-between;align-items:flex-end;gap:32px;flex-wrap:wrap;margin-bottom:36px}
.wizard-head h2{font-size:40px;line-height:1.08;margin:0 0 12px;color:#fff}
.wizard-head p{margin:0;max-width:600px;color:#C9C4BA;font-size:17px}
.wizard-progress{display:flex;gap:10px;align-items:center;font-size:13px;color:var(--muted4)}
.wizard-bar{width:130px;height:6px;background:var(--dark3);border-radius:999px;overflow:hidden;display:block}
.wizard-bar-fill{height:6px;background:var(--gold);display:block}
.wizard-box{background:var(--dark2);border:1px solid var(--dark4);border-radius:18px;padding:32px}
.wizard-box h3{font-size:20px;margin:0 0 6px;color:#fff}
.wizard-box>div>p{margin:0 0 24px;color:#A9A49B;font-size:14.5px}
.room-pick-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.room-pick{
  background:var(--dark);border:1px solid #4B5054;border-radius:14px;padding:20px 16px;cursor:pointer;
  color:var(--cream);text-align:left;display:flex;flex-direction:column;gap:10px;
}
.room-pick:hover{border-color:var(--gold)}
.room-pick .thumb{height:52px;border-radius:9px;overflow:hidden;background:var(--dark3)}
.room-pick .thumb img{width:100%;height:100%;object-fit:cover;opacity:.85}
.room-pick strong{font-weight:600;font-size:15px}
.room-pick span.hint{font-size:12.5px;color:var(--muted4);line-height:1.4}
.wizard-dims{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.dim-field{display:flex;flex-direction:column;gap:10px}
.dim-field .row{display:flex;justify-content:space-between;font-size:14px}
.dim-field strong{color:var(--gold)}
.wizard-actions{display:flex;gap:12px;margin-top:30px}
.cat-pills{display:flex;flex-wrap:wrap;gap:10px}
.cat-pill{
  border-radius:999px;padding:11px 20px;cursor:pointer;font-size:14.5px;font-weight:600;
  border:1px solid #565B60;background:transparent;color:var(--cream);
}
.cat-pill.is-on{border-color:var(--gold);background:var(--gold);color:var(--dark)}
.wizard-result-head{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;align-items:flex-start;margin-bottom:26px}
.wizard-result-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:26px}
.zones-box{background:var(--dark);border:1px solid var(--dark4);border-radius:14px;padding:22px}
.box-label{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:16px}
.zone-row{display:flex;gap:14px;align-items:flex-start;padding-bottom:12px;margin-bottom:12px;border-bottom:1px solid var(--dark3)}
.zone-row:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.zone-swatch{min-width:56px;height:38px;border-radius:7px;background:var(--dark4);display:block}
.zone-row strong{font-size:14.5px}
.zone-row .note{font-size:13px;color:#A9A49B;line-height:1.45}
.wizard-metrics{margin-top:18px;display:grid;grid-template-columns:1fr 1fr;gap:12px;font-size:13px;color:#A9A49B}
.wizard-metrics strong{color:var(--cream)}
.reco-list{display:flex;flex-direction:column;gap:12px}
.reco-item{background:var(--dark);border:1px solid var(--dark4);border-radius:12px;padding:14px;display:flex;gap:14px;align-items:center}
.reco-item .thumb{width:62px;height:62px;border-radius:8px;overflow:hidden;background:var(--dark3);flex:none}
.reco-item .thumb img{width:100%;height:100%;object-fit:cover}
.reco-item .info{display:flex;flex-direction:column;gap:3px;flex:1}
.reco-item strong{font-size:14.5px}
.reco-item .size{font-size:12.5px;color:var(--muted4)}
.reco-item .price{font-size:14px;color:var(--gold);font-weight:700}

/* ---------- Generic grids/cards ---------- */
.grid{display:grid;gap:18px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-5{grid-template-columns:repeat(5,1fr)}

.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:26px;gap:24px;flex-wrap:wrap}
.section-head h2{font-size:40px}

.room-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:0;overflow:hidden;cursor:pointer;text-align:left;display:flex;flex-direction:column;text-decoration:none}
.room-card:hover{border-color:var(--gold)}
.room-card .thumb{height:130px;background:var(--tan);overflow:hidden}
.room-card .thumb img{width:100%;height:100%;object-fit:cover}
.room-card .body{padding:16px;display:flex;flex-direction:column;gap:6px}
.room-card strong{font-size:16px;color:var(--dark)}
.room-card .hint{font-size:13px;color:var(--muted);line-height:1.45}
.room-card .cta{font-size:12.5px;color:var(--brown);font-weight:600;margin-top:4px}

.room-card-wide{background:#fff;border:1px solid var(--border);border-radius:16px;padding:0;overflow:hidden;cursor:pointer;text-align:left;display:grid;grid-template-columns:180px 1fr;text-decoration:none}
.room-card-wide:hover{border-color:var(--gold)}
.room-card-wide .thumb{background:var(--tan);min-height:170px;overflow:hidden}
.room-card-wide .thumb img{width:100%;height:100%;object-fit:cover}
.room-card-wide .body{padding:22px;display:flex;flex-direction:column;gap:8px}
.room-card-wide strong{font-size:20px;font-family:var(--font-serif);font-weight:400;color:var(--dark)}
.room-card-wide .hint{font-size:14.5px;color:var(--muted);line-height:1.5}
.room-card-wide .cta{font-size:13px;color:var(--brown);font-weight:600;margin-top:auto}

.product-card{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column}
.product-card .thumb-link{border:none;padding:0;background:none;cursor:pointer;display:block;text-decoration:none}
.product-card .thumb{height:180px;background:var(--tan);overflow:hidden}
.product-card .thumb img{width:100%;height:100%;object-fit:cover}
.product-card .body{padding:16px;display:flex;flex-direction:column;gap:7px;flex:1}
.product-card .cat{font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted3)}
.product-card strong.name{font-size:15.5px;line-height:1.3;color:var(--dark)}
.product-card .size{font-size:13px;color:var(--muted)}
.product-card .row{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:12px}
.product-card .price{font-size:17px;color:var(--dark)}

.article-card{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;text-decoration:none;cursor:pointer}
.article-card:hover{border-color:var(--gold)}
.article-card .thumb{height:150px;background:var(--tan);overflow:hidden}
.article-card .thumb img{width:100%;height:100%;object-fit:cover}
.article-card .body{padding:18px;display:flex;flex-direction:column;gap:8px}
.article-card .tag{font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted3)}
.article-card strong{font-size:17px;line-height:1.28;color:var(--dark)}
.article-card .excerpt{font-size:14px;color:var(--muted);line-height:1.5}

/* ---------- How-it-works ---------- */
.steps-section{background:var(--tan);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.steps-grid{padding:74px 32px;display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.steps-grid .num{font-family:var(--font-serif);font-size:34px;color:var(--gold)}
.steps-grid h3{margin:8px 0 8px;font-size:19px;color:var(--dark)}
.steps-grid p{margin:0;color:var(--muted);font-size:15px}

.value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.value-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:24px}
.value-card h3{margin:0 0 8px;font-size:17px;color:var(--dark)}
.value-card p{margin:0;color:var(--muted);font-size:14.5px}

.testimonial-section{background:#fff;border-top:1px solid var(--border)}
.testimonial-grid{padding:70px 32px;display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.testimonial{border-left:1px solid var(--tan2);padding-left:22px}
.testimonial p{margin:0 0 14px;font-size:16.5px;font-style:italic;font-family:var(--font-serif);line-height:1.45;color:var(--dark)}
.testimonial span{font-size:13px;color:var(--muted3)}

/* ---------- Newsletter ---------- */
.newsletter-section{background:var(--tan);border-top:1px solid var(--border)}
.newsletter-inner{max-width:1200px;margin:0 auto;padding:52px 32px;display:flex;gap:32px;align-items:center;flex-wrap:wrap}
.newsletter-inner h3{font-size:24px;margin:0 0 8px;color:var(--dark)}
.newsletter-inner p{margin:0;color:var(--muted);font-size:15px}
.newsletter-form{display:flex;gap:10px;flex-wrap:wrap}
.newsletter-form input{padding:14px 16px;border:1px solid #D8CBB4;border-radius:999px;background:#fff;min-width:250px}

/* ---------- Footer ---------- */
.site-footer{background:var(--dark);color:var(--footer-text);font-size:14.5px}
.footer-grid{max-width:1200px;margin:0 auto;padding:60px 32px 28px;display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:32px}
.footer-title{font-weight:700;color:var(--cream);font-size:16px;margin-bottom:10px}
.footer-col{display:flex;flex-direction:column;gap:9px}
.footer-col-title{color:var(--cream);font-weight:600;margin-bottom:4px}
.footer-col a{background:none;border:none;padding:0;text-align:left;color:var(--footer-text);cursor:pointer;font-size:14.5px;text-decoration:none;border-bottom:none}
.footer-col a:hover{color:var(--gold)}
.footer-about p{margin:0 0 14px;line-height:1.6}
.footer-address{font-size:13.5px;line-height:1.8}
.footer-bottom{border-top:1px solid var(--dark3)}
.footer-bottom-inner{max-width:1200px;margin:0 auto;padding:20px 32px;display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;font-size:13px;color:var(--muted4)}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed;left:20px;right:20px;bottom:20px;z-index:60;background:#fff;border:1px solid var(--border);
  border-radius:16px;box-shadow:0 18px 44px rgba(38,41,44,.16);padding:22px 24px;display:flex;gap:22px;
  align-items:center;flex-wrap:wrap;max-width:1100px;margin:0 auto;
}
.cookie-banner[hidden]{display:none}
.cookie-banner strong{display:block;margin-bottom:6px;font-size:16px;color:var(--dark)}
.cookie-banner .text{font-size:14px;color:var(--muted);flex:1;min-width:280px}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap}
.cookie-link{background:none;border:none;color:var(--brown);font-weight:600;cursor:pointer;padding:12px 10px;font-size:14px}

/* ---------- Forms ---------- */
.form-box{background:#fff;border:1px solid var(--border);border-radius:14px;padding:24px;display:flex;flex-direction:column;gap:12px}
.form-input,.form-select,.form-textarea{
  padding:13px 14px;border:1px solid var(--border);border-radius:10px;background:var(--bg);width:100%;color:var(--dark);
}
.form-textarea{resize:vertical}
.checkbox-row{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--muted)}
.checkbox-row input{margin-top:3px}
.field-note{font-size:12px;color:var(--muted3);margin-top:2px}

/* ---------- Page shells ---------- */
.page{max-width:1200px;margin:0 auto;padding:56px 32px 80px}
.page-narrow{max-width:1000px;margin:0 auto;padding:56px 32px 80px}
.page-article{max-width:760px;margin:0 auto;padding:44px 32px 80px}
.page-legal{max-width:820px;margin:0 auto;padding:56px 32px 80px}
.back-link{background:none;border:none;padding:0;cursor:pointer;color:var(--brown);font-weight:600;font-size:14px;margin-bottom:22px;display:inline-block;text-decoration:none;border-bottom:none}
.back-link:hover{color:var(--dark)}
.page h1{font-size:48px;margin:0 0 12px;color:var(--dark)}
.page-lead{margin:0 0 28px;color:var(--muted);max-width:640px}

/* Product detail */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:44px}
.gallery-main{height:360px;background:var(--tan);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.gallery-thumbs .ph-thumb{height:96px;border-radius:10px;overflow:hidden;background:var(--tan);border:1px solid var(--border)}
.gallery-thumbs .ph-thumb img{width:100%;height:100%;object-fit:cover}
.pd-cat{font-size:11.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted3);margin-bottom:12px}
.pd-title{font-size:40px;line-height:1.08;margin:0 0 14px}
.pd-price{font-size:26px;font-weight:700;margin-bottom:6px}
.pd-sub{font-size:13px;color:var(--muted);margin-bottom:22px}
.pd-desc{margin:0 0 22px;color:var(--muted2);font-size:16px}
.spec-box{background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px;margin-bottom:22px}
.spec-label{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted3);margin-bottom:12px;font-weight:600}
.spec-row{display:flex;justify-content:space-between;gap:16px;border-bottom:1px dashed var(--tan2);padding-bottom:8px;font-size:14.5px}
.spec-row:last-child{border-bottom:none;padding-bottom:0}
.spec-row span{color:var(--muted)}
.pd-actions{margin-bottom:24px;display:flex;gap:12px;flex-wrap:wrap}
.pd-fine{font-size:13.5px;color:var(--muted);line-height:1.7}

/* Prostor page */
.prostor-hero-photo{height:280px;background:var(--tan);border:1px solid var(--border);border-radius:16px;margin-bottom:36px;overflow:hidden}
.prostor-hero-photo img{width:100%;height:100%;object-fit:cover}
.prostor-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:40px}
.prostor-step{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--border);border-radius:12px;padding:16px;margin-bottom:14px}
.prostor-step .n{min-width:30px;height:30px;border-radius:8px;background:var(--tan);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;flex:none}
.prostor-step .t{font-size:15px;color:var(--muted2);line-height:1.55}
.mistakes-list{margin:0;padding-left:20px;color:var(--muted2);font-size:15.5px;line-height:1.75}
.measures-box{background:var(--tan);border:1px solid var(--border);border-radius:14px;padding:20px;margin-bottom:20px}
.measures-box .label{font-size:12px;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--brown);margin-bottom:12px}
.measure-row{display:flex;justify-content:space-between;gap:12px;border-bottom:1px dashed #D8CBB4;padding-bottom:8px;font-size:14px;margin-bottom:9px}
.measure-row:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}

/* Article page */
.article-meta{font-size:11.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted3);margin-bottom:14px}
.article-hero{height:300px;background:var(--tan);border:1px solid var(--border);border-radius:14px;margin-bottom:32px;overflow:hidden}
.article-hero img{width:100%;height:100%;object-fit:cover}
.article-body{display:flex;flex-direction:column;gap:20px;font-size:17px;color:#33383C;line-height:1.72}
.article-cta{margin-top:40px;background:var(--tan);border:1px solid var(--border);border-radius:14px;padding:26px;display:flex;gap:20px;align-items:center;flex-wrap:wrap}
.article-cta strong{display:block;font-size:18px;margin-bottom:6px}
.article-cta span{font-size:14.5px;color:var(--muted)}
.article-cta .flex1{flex:1;min-width:240px}

/* Cart page */
.cart-item{background:#fff;border:1px solid var(--border);border-radius:14px;padding:16px;display:flex;gap:16px;align-items:center;margin-bottom:12px}
.cart-item .thumb{width:78px;height:78px;border-radius:10px;overflow:hidden;background:var(--tan);flex:none}
.cart-item .thumb img{width:100%;height:100%;object-fit:cover}
.cart-item .info{display:flex;flex-direction:column;gap:4px;flex:1}
.cart-item .info .size{font-size:13px;color:var(--muted)}
.cart-item .info .unit{font-size:13px;color:var(--muted3)}
.qty-btn{width:32px;height:32px;border-radius:8px;border:1px solid var(--border);background:var(--bg);cursor:pointer;font-size:16px}
.cart-qty{display:flex;align-items:center;gap:8px}
.cart-line{min-width:82px;text-align:right;font-size:16px}
.remove-btn{background:none;border:none;cursor:pointer;color:var(--muted3);font-size:13px;border-bottom:none}
.cart-layout{display:grid;grid-template-columns:1.4fr .9fr;gap:34px;align-items:start}
.summary-box{background:#fff;border:1px solid var(--border);border-radius:14px;padding:22px}
.summary-row{display:flex;justify-content:space-between;font-size:15px;margin-bottom:10px}
.summary-total{border-top:1px solid var(--border);padding-top:12px;font-size:18px}
.summary-hint{font-size:12.5px;color:var(--muted3);margin-top:10px}
.summary-divider{border-top:1px solid var(--border);margin:20px 0 18px}
.empty-box,.success-box{background:#fff;border:1px solid var(--border);border-radius:16px;padding:44px;text-align:center}
.empty-box h1,.success-box h1{margin:0 0 12px}
.empty-box p,.success-box p{color:var(--muted);margin:0 0 8px}

/* FAQ page */
.faq-item{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-bottom:10px}
.faq-q{width:100%;text-align:left;background:none;border:none;padding:18px 20px;cursor:pointer;font-weight:600;font-size:16px;display:flex;justify-content:space-between;gap:16px;color:var(--dark)}
.faq-sign{color:var(--gold)}
.faq-a{padding:0 20px 20px;color:var(--muted2);font-size:15.5px;line-height:1.65;display:none}
.faq-item.is-open .faq-a{display:block}

/* Legal page */
.legal-updated{font-size:13px;color:var(--muted3);margin-bottom:30px}
.legal-section{display:flex;flex-direction:column;gap:26px}
.legal-section h2{font-size:21px;margin:0 0 10px;color:var(--dark);font-family:var(--font-sans);font-weight:700}
.legal-section p{color:var(--muted2);font-size:16px;line-height:1.7;margin:0}
.legal-block{margin-bottom:26px}

/* About page */
.about-photo{height:260px;background:var(--tan);border:1px solid var(--border);border-radius:16px;margin-bottom:34px;overflow:hidden}
.about-photo img{width:100%;height:100%;object-fit:cover}
.merchant-box{background:#fff;border:1px solid var(--border);border-radius:14px;padding:24px}
.merchant-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;font-size:14.5px;color:var(--muted2)}

/* Contact page */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:34px}
.contact-info-box{background:var(--tan);border:1px solid var(--border);border-radius:14px;padding:24px;margin-bottom:18px}
.contact-info-box h3{margin:0 0 14px;font-size:18px;color:var(--dark);font-family:var(--font-sans);font-weight:700}
.contact-info-box div{display:flex;flex-direction:column;gap:9px;font-size:15px;color:#33383C}
.contact-photo{height:220px;background:var(--tan);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.contact-photo img{width:100%;height:100%;object-fit:cover}

/* Shop page filters */
.shop-filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:26px}
.filter-pill{border-radius:999px;padding:10px 18px;cursor:pointer;font-size:14px;font-weight:600;border:1px solid var(--border);background:#fff;color:var(--dark)}
.filter-pill.is-active{border-color:var(--dark);background:var(--dark);color:#fff}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .hero{grid-template-columns:1fr;padding:48px 24px 32px}
  .hero h1{font-size:44px}
  .grid-4,.grid-5,.value-grid{grid-template-columns:repeat(2,1fr)}
  .grid-3,.steps-grid,.testimonial-grid{grid-template-columns:1fr}
  .room-pick-grid{grid-template-columns:repeat(2,1fr)}
  .wizard-dims{grid-template-columns:1fr}
  .wizard-result-grid,.product-detail,.prostor-grid,.contact-grid,.cart-layout,.grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .room-card-wide{grid-template-columns:1fr}
  .nav{gap:14px}
}
@media (max-width:640px){
  .container,.page,.page-narrow,.page-article,.page-legal{padding-left:20px;padding-right:20px}
  .header-inner{padding:14px 20px;flex-wrap:wrap}
  .nav{width:100%;justify-content:flex-start;order:3;gap:12px 18px}
  .hero h1{font-size:34px}
  .grid-4,.grid-5,.value-grid,.grid-3{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;padding:44px 20px 24px}
  .cookie-banner{left:10px;right:10px;bottom:10px;padding:18px}
}
