@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --white:#ffffff; --off:#f9f8f6; --light:#f2f1ef;
  --border:#e8e8e8; --text:#1a1a1a; --muted:#6b6b6b; --faint:#aaaaaa;
  --font:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--text);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
input,button,select,textarea{font-family:var(--font)}

/* ══ NAV (mobile-first) ════════════════════════════ */
.nav{
  position:sticky;top:0;z-index:200;
  background:var(--white);border-bottom:1px solid var(--border);
  height:56px;padding:0 16px;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{font-size:18px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--text)}
.nav-right{display:flex;align-items:center;gap:8px}
.nav-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:var(--muted);cursor:pointer;position:relative;transition:color .2s}
.nav-icon:hover{color:var(--text)}
.cart-badge{
  position:absolute;top:6px;right:6px;
  background:var(--text);color:var(--white);
  border-radius:50%;width:15px;height:15px;
  font-size:9px;font-weight:700;display:flex;align-items:center;justify-content:center;
}
/* Hamburger */
.nav-toggle{
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  gap:5px;width:40px;height:40px;cursor:pointer;background:none;border:none;padding:0;
}
.nav-toggle span{display:block;width:22px;height:1.5px;background:var(--text);transition:all .3s;transform-origin:center}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px)}
.nav-toggle.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px)}
/* Overlay */
.nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:199;backdrop-filter:blur(2px)}
.nav-overlay.open{display:block}
/* Drawer */
.nav-drawer{
  position:fixed;top:56px;right:0;bottom:0;width:min(300px,85vw);
  background:var(--white);z-index:200;
  padding:8px 0 32px;
  transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);
  border-left:1px solid var(--border);overflow-y:auto;display:flex;flex-direction:column;
}
.nav-drawer.open{transform:translateX(0)}
.nav-menu{list-style:none;display:flex;flex-direction:column;flex:1}
.nav-menu a{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 24px;font-size:15px;font-weight:400;color:var(--text);
  border-bottom:1px solid var(--border);transition:background .15s;
}
.nav-menu a:hover,.nav-menu a.active{background:var(--off);color:var(--muted)}
.nav-menu a::after{content:'›';color:var(--faint);font-size:18px}
.nav-drawer-footer{padding:24px 24px 0;border-top:1px solid var(--border);margin-top:auto;padding-top:20px}
.nav-drawer-footer a{display:block;font-size:13px;color:var(--muted);padding:6px 0}
/* Desktop nav */
@media(min-width:1024px){
  .nav{height:64px;padding:0 60px;gap:0}
  .nav-logo{font-size:20px}
  .nav-toggle,.nav-overlay{display:none!important}
  .nav-drawer{
    position:static;width:auto;background:none;padding:0;
    transform:none;border:none;overflow:visible;
    flex:1;flex-direction:row;align-items:center;justify-content:center;
    top:auto;right:auto;bottom:auto;
  }
  .nav-drawer-footer{display:none}
  .nav-menu{flex-direction:row;gap:28px}
  .nav-menu a{
    border:none;padding:0;font-size:13px;background:none;
    color:var(--muted);display:inline;
  }
  .nav-menu a::after{display:none}
  .nav-menu a:hover,.nav-menu a.active{background:none;color:var(--text)}
  .nav-right{gap:4px}
}

/* ══ HERO ══════════════════════════════════════════ */
.hero{
  background:linear-gradient(135deg,#f0ede8 0%,#e8e4de 50%,#ddd9d2 100%);
  display:flex;flex-direction:column;overflow:hidden;
}
.hero-visual{
  height:55vw;min-height:200px;max-height:340px;
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#e0d8cc 0%,#d0c8ba 40%,#c8bfb0 100%);
}
.curtain-scene{position:absolute;inset:0;display:flex;align-items:stretch}
.c-panel{flex:1;display:flex;flex-direction:column;align-items:center}
.c-hook{width:7px;height:7px;border-radius:50%;background:#b0a090;flex-shrink:0;z-index:2;box-shadow:0 1px 3px rgba(0,0,0,.25)}
.c-fabric{width:100%;flex:1;border-radius:0 0 8px 8px;position:relative;overflow:hidden}
.c-fabric::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.07) 0%,transparent 30%,transparent 70%,rgba(0,0,0,.07) 100%)}
.room-floor{position:absolute;bottom:0;left:0;right:0;height:30px;background:linear-gradient(180deg,#c8b89a 0%,#b8a88a 100%)}
.hero-content{padding:28px 20px 40px;order:1}
.hero-tag{font-size:10px;font-weight:500;letter-spacing:3px;color:var(--muted);text-transform:uppercase;margin-bottom:12px}
.hero-title{font-size:32px;font-weight:300;line-height:1.15;letter-spacing:-1px;margin-bottom:14px}
.hero-title strong{font-weight:600}
.hero-sub{font-size:13px;color:var(--muted);margin-bottom:24px;line-height:1.75}
.hero-btns{display:flex;flex-direction:column;gap:10px}
@media(min-width:600px){
  .hero-btns{flex-direction:row}
  .hero-title{font-size:38px}
}
@media(min-width:1024px){
  .hero{flex-direction:row;min-height:88vh}
  .hero-visual{height:auto;max-height:none;flex:1;order:1}
  .room-floor{height:120px}
  .c-hook{width:10px;height:10px}
  .hero-content{padding:80px 60px 80px 100px;flex:1;order:0}
  .hero-tag{font-size:11px;margin-bottom:20px}
  .hero-title{font-size:56px;letter-spacing:-1.5px;margin-bottom:22px}
  .hero-sub{font-size:15px;margin-bottom:40px;max-width:380px}
}

/* ══ BUTTONS ═══════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 22px;font-size:13px;font-weight:500;letter-spacing:.3px;
  cursor:pointer;transition:all .2s;border:none;border-radius:3px;
}
.btn-dark{background:var(--text);color:var(--white)}
.btn-dark:hover{background:#333}
.btn-outline{background:transparent;color:var(--text);border:1px solid rgba(0,0,0,.2)}
.btn-outline:hover{background:rgba(0,0,0,.04)}
.btn-full{width:100%}

/* ══ TRUST BAR ══════════════════════════════════════ */
.trust-bar{
  background:var(--text);color:var(--white);
  padding:10px 16px;display:flex;flex-wrap:wrap;justify-content:center;gap:8px 20px;
}
.trust-item{display:flex;align-items:center;gap:6px;font-size:11px}
@media(min-width:768px){.trust-bar{padding:14px 40px;gap:40px}.trust-item{font-size:12px}}
@media(min-width:1024px){.trust-bar{padding:16px 60px;gap:60px}.trust-item{font-size:13px}}

/* ══ SECTIONS ═══════════════════════════════════════ */
.section{padding:44px 20px}
.section-off{background:var(--off)}
.section-dark{background:var(--text);color:white}
.section-header{margin-bottom:28px}
.section-tag{font-size:10px;font-weight:500;letter-spacing:3px;color:var(--muted);text-transform:uppercase;margin-bottom:8px}
.section-dark .section-tag{color:rgba(255,255,255,.5)}
.section-title{font-size:22px;font-weight:300;letter-spacing:-.5px}
.section-dark .section-title{color:white}
.section-header-row{display:flex;justify-content:space-between;align-items:flex-end;gap:12px}
.see-all{font-size:12px;color:var(--muted);border-bottom:1px solid var(--border);padding-bottom:1px;white-space:nowrap;flex-shrink:0}
.see-all:hover{color:var(--text);border-color:var(--text)}
@media(min-width:768px){.section{padding:60px 40px}.section-title{font-size:26px}}
@media(min-width:1024px){.section{padding:80px 100px}.section-title{font-size:30px}.section-header{margin-bottom:48px}}

/* ══ CATEGORIES ═════════════════════════════════════ */
.cat-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(min-width:768px){.cat-grid{gap:14px}}
@media(min-width:1024px){.cat-grid{grid-template-columns:repeat(4,1fr);gap:16px}}
.cat-card{border-radius:8px;overflow:hidden;cursor:pointer;transition:transform .3s;background:var(--light);display:block}
.cat-card:hover{transform:translateY(-3px)}
.cat-visual{height:38vw;max-height:180px;position:relative;overflow:hidden}
@media(min-width:768px){.cat-visual{height:200px;max-height:none}}
.cat-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.3) 0%,transparent 55%)}
.cat-label{position:absolute;bottom:10px;left:12px;right:12px;color:white}
.cat-label-title{font-size:13px;font-weight:500}
.cat-label-sub{font-size:10px;color:rgba(255,255,255,.7);margin-top:2px}
.cat-info{padding:10px 12px;display:flex;justify-content:space-between;align-items:center}
.cat-name{font-size:12px;font-weight:500}
.cat-count{font-size:10px;color:var(--muted)}

/* ══ FABRIC FILLS ════════════════════════════════════ */
.fabric-klasik{background:linear-gradient(160deg,#c8b89a 0%,#b0a080 50%,#a09070 100%)}
.fabric-tul{background:repeating-linear-gradient(0deg,rgba(220,220,220,.5) 0,rgba(220,220,220,.5) 1px,transparent 1px,transparent 4px),linear-gradient(180deg,#f8f8f6,#f0f0ee)}
.fabric-stor{background:linear-gradient(160deg,#8a8a8a 0%,#6a6a6a 50%,#505050 100%)}
.fabric-zebra{background:repeating-linear-gradient(180deg,#d8d8d8 0,#d8d8d8 16px,#f2f2f2 16px,#f2f2f2 32px)}
.pf-krem{background:linear-gradient(160deg,#e0cca8 0%,#c8a878 100%)}
.pf-beyaz{background:linear-gradient(160deg,#f5f3f0 0%,#e8e5e0 100%)}
.pf-gri{background:linear-gradient(160deg,#b8b8b8 0%,#8a8a8a 100%)}
.pf-antrasit{background:linear-gradient(160deg,#5a5a5a 0%,#333 100%)}
.pf-lacivert{background:linear-gradient(160deg,#2c4080 0%,#1a2858 100%)}
.pf-yesil{background:linear-gradient(160deg,#4a7a5a 0%,#306040 100%)}
.pf-terrakota{background:linear-gradient(160deg,#c86848 0%,#a04830 100%)}
.pf-bej{background:linear-gradient(160deg,#d8c8a8 0%,#c0a880 100%)}
.pf-tul-beyaz{background:repeating-linear-gradient(0deg,rgba(200,200,200,.35) 0,rgba(200,200,200,.35) 1px,transparent 1px,transparent 4px),linear-gradient(180deg,#fafaf8,#f2f2f0)}
.pf-tul-krem{background:repeating-linear-gradient(0deg,rgba(190,175,150,.35) 0,rgba(190,175,150,.35) 1px,transparent 1px,transparent 4px),linear-gradient(180deg,#f8f4ee,#f0ece4)}
.pf-zebra-gri{background:repeating-linear-gradient(180deg,#d0d0d0 0,#d0d0d0 16px,#f0f0f0 16px,#f0f0f0 32px)}
.pf-zebra-bej{background:repeating-linear-gradient(180deg,#c8b898 0,#c8b898 16px,#e8dcc8 16px,#e8dcc8 32px)}
.pf-stor-beyaz{background:linear-gradient(160deg,#f0f0ee 0%,#e0e0de 100%)}
.pf-stor-antrasit{background:linear-gradient(160deg,#4a4a4a 0%,#282828 100%)}

/* ══ PRODUCT CARDS ══════════════════════════════════ */
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.product-grid-4{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(min-width:768px){.product-grid{gap:20px}.product-grid-4{grid-template-columns:repeat(4,1fr);gap:18px}}
@media(min-width:1024px){.product-grid{grid-template-columns:repeat(3,1fr);gap:28px}.product-grid-4{gap:22px}}
.product-card{cursor:pointer;transition:transform .2s;display:block}
.product-card:hover{transform:translateY(-2px)}
.product-image{position:relative;height:44vw;max-height:220px;background:var(--light);border-radius:6px;overflow:hidden;margin-bottom:10px}
@media(min-width:768px){.product-image{height:260px;max-height:none}}
@media(min-width:1024px){.product-image{height:280px}}
.product-badge{position:absolute;top:8px;left:8px;font-size:9px;font-weight:600;letter-spacing:.3px;padding:3px 8px;border-radius:20px}
.badge-new{background:var(--text);color:var(--white)}
.badge-sale{background:#c0392b;color:white}
.badge-hot{background:#c87920;color:white}
.quick-add{position:absolute;bottom:8px;left:8px;right:8px;background:var(--white);border:1px solid var(--border);padding:9px;text-align:center;font-size:10px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;opacity:0;transition:opacity .2s;cursor:pointer;border-radius:3px}
.product-card:hover .quick-add{opacity:1}
.product-name{font-size:12px;font-weight:500;margin-bottom:2px;line-height:1.4}
@media(min-width:768px){.product-name{font-size:13px}}
.product-cat{font-size:10px;color:var(--muted);margin-bottom:5px}
.product-price{font-size:13px;font-weight:600}
@media(min-width:768px){.product-price{font-size:14px}}
.product-price-old{font-size:11px;color:var(--muted);text-decoration:line-through;margin-left:5px;font-weight:400}
.product-colors{display:flex;gap:4px;margin-top:7px}
.c-dot{width:12px;height:12px;border-radius:50%;border:1.5px solid var(--border);cursor:pointer}

/* ══ CTA BANNER ═════════════════════════════════════ */
.cta-banner{background:var(--off);padding:44px 20px;display:flex;flex-direction:column;gap:28px;border-top:1px solid var(--border)}
@media(min-width:768px){.cta-banner{padding:60px 40px}}
@media(min-width:1024px){.cta-banner{padding:80px 100px;flex-direction:row;align-items:center;justify-content:space-between}}
.cta-visual{width:100%;height:160px;border-radius:8px;overflow:hidden;position:relative;background:linear-gradient(135deg,#d0c8b8,#b8b0a0);display:flex;align-items:center;justify-content:center}
@media(min-width:600px){.cta-visual{height:200px}}
@media(min-width:1024px){.cta-visual{width:320px;height:220px;flex-shrink:0}}

/* ══ FOOTER ═════════════════════════════════════════ */
footer{background:var(--text);color:rgba(255,255,255,.65);padding:44px 20px 28px}
@media(min-width:1024px){footer{padding:64px 100px 36px}}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-bottom:36px}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:48px}}
.footer-brand{grid-column:1/-1}
@media(min-width:768px){.footer-brand{grid-column:auto}}
.footer-logo{color:white;font-size:16px;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin-bottom:12px}
.footer-desc{font-size:12px;line-height:1.75;max-width:240px;color:rgba(255,255,255,.5)}
.footer-col h4{color:white;font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:14px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-col li a{font-size:12px;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col li a:hover{color:white}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:20px;display:flex;flex-direction:column;gap:6px;font-size:11px;color:rgba(255,255,255,.3)}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between}}

/* ══ PAGE HEADER ════════════════════════════════════ */
.page-header{background:var(--off);padding:20px 20px;border-bottom:1px solid var(--border)}
@media(min-width:1024px){.page-header{padding:36px 100px}}
.breadcrumb{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--muted);margin-bottom:8px;flex-wrap:wrap}
.breadcrumb a:hover{color:var(--text)}
.breadcrumb-sep{color:var(--faint)}
.page-title{font-size:20px;font-weight:300;letter-spacing:-.5px}
@media(min-width:1024px){.page-title{font-size:26px}}

/* ══ LISTING LAYOUT ══════════════════════════════════ */
.listing-layout{padding:20px 20px 60px}
@media(min-width:1024px){.listing-layout{display:grid;grid-template-columns:220px 1fr;gap:48px;padding:48px 100px 80px}}
/* Mobile filter toggle */
.filter-toggle{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 14px;background:var(--white);border:1px solid var(--border);border-radius:6px;
  margin-bottom:14px;cursor:pointer;font-size:13px;font-weight:500;
}
.filter-toggle-icon{font-size:16px;transition:transform .3s}
.filter-toggle.open .filter-toggle-icon{transform:rotate(180deg)}
@media(min-width:1024px){.filter-toggle{display:none}}
.sidebar{display:none;margin-bottom:20px}
.sidebar.open{display:block}
@media(min-width:1024px){.sidebar{display:block!important;position:sticky;top:80px;height:fit-content}}
.sidebar-section{padding-bottom:18px;margin-bottom:18px;border-bottom:1px solid var(--border)}
.sidebar-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.sidebar-title{font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:12px;color:var(--text)}
.filter-option{display:flex;align-items:center;gap:9px;padding:4px 0;cursor:pointer;font-size:13px;color:var(--muted);transition:color .2s}
.filter-option:hover{color:var(--text)}
.filter-option input[type=checkbox]{width:13px;height:13px;accent-color:var(--text);cursor:pointer;flex-shrink:0}
.filter-count{margin-left:auto;font-size:11px;color:var(--faint)}
.color-filter{display:flex;flex-wrap:wrap;gap:8px}
.swatch{width:26px;height:26px;border-radius:50%;border:2.5px solid transparent;cursor:pointer;transition:all .15s}
.swatch:hover,.swatch.active{border-color:var(--text)}

/* ══ SORT BAR ════════════════════════════════════════ */
.sort-bar{display:flex;justify-content:space-between;align-items:center;padding-bottom:14px;border-bottom:1px solid var(--border);margin-bottom:18px}
.sort-count{font-size:12px;color:var(--muted)}
.sort-select{font-size:12px;border:1px solid var(--border);padding:7px 10px;color:var(--text);background:var(--white);cursor:pointer;outline:none;border-radius:3px}

/* ══ PAGINATION ══════════════════════════════════════ */
.pagination{display:flex;justify-content:center;gap:6px;margin-top:36px}
.page-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);font-size:13px;cursor:pointer;color:var(--muted);transition:all .2s;border-radius:3px}
.page-btn.active{background:var(--text);border-color:var(--text);color:var(--white)}
.page-btn:hover:not(.active){border-color:var(--text);color:var(--text)}

/* ══ PRODUCT DETAIL ══════════════════════════════════ */
.detail-layout{padding:20px 20px 0;display:flex;flex-direction:column;gap:28px}
@media(min-width:1024px){.detail-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;padding:60px 100px}}
.gallery-wrap{}
@media(min-width:1024px){.gallery-wrap{position:sticky;top:80px;height:fit-content}}
.gallery-main{width:100%;aspect-ratio:3/2;border-radius:8px;overflow:hidden;margin-bottom:8px}
@media(min-width:768px){.gallery-main{aspect-ratio:4/3}}
@media(min-width:1024px){.gallery-main{aspect-ratio:3/4}}
.gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.g-thumb{aspect-ratio:1;border-radius:4px;overflow:hidden;border:2px solid transparent;cursor:pointer;transition:border-color .2s}
.g-thumb.active{border-color:var(--text)}
.product-info h1{font-size:20px;font-weight:400;letter-spacing:-.5px;margin-bottom:6px}
@media(min-width:768px){.product-info h1{font-size:24px}}
@media(min-width:1024px){.product-info h1{font-size:26px}}
.p-category{font-size:12px;color:var(--muted);margin-bottom:16px}
.price-block{margin-bottom:20px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.price-main{font-size:24px;font-weight:600;margin-bottom:4px}
.price-note{font-size:11px;color:var(--muted)}
.opt-label{font-size:10px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:10px;display:block}
.color-options{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}
.color-opt{width:32px;height:32px;border-radius:50%;border:3px solid transparent;cursor:pointer;transition:all .15s}
.color-opt.active,.color-opt:hover{border-color:var(--text)}
.size-options{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.size-btn{padding:8px 14px;border:1px solid var(--border);font-size:12px;font-weight:500;cursor:pointer;background:var(--white);color:var(--muted);border-radius:3px;transition:all .15s}
.size-btn:hover,.size-btn.active{background:var(--text);color:var(--white);border-color:var(--text)}
.qty-row{display:flex;gap:10px;margin-bottom:14px}
.qty-control{display:flex;align-items:center;border:1px solid var(--border);border-radius:3px;overflow:hidden}
.qty-btn{width:40px;height:48px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:18px;color:var(--muted);background:var(--white);border:none;transition:color .2s}
.qty-btn:hover{color:var(--text)}
.qty-input{width:44px;height:48px;text-align:center;border:none;border-left:1px solid var(--border);border-right:1px solid var(--border);font-size:14px;font-weight:500;outline:none}
.btn-cart{flex:1;height:48px;background:var(--text);color:var(--white);border:none;font-size:13px;font-weight:500;letter-spacing:.5px;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .2s;border-radius:3px}
.btn-cart:hover{background:#333}
.feature-list{list-style:none;margin-top:14px;display:flex;flex-direction:column;gap:8px}
.feature-list li{font-size:13px;color:var(--muted);display:flex;align-items:flex-start;gap:8px;line-height:1.5}
.feature-list li::before{content:'✓';color:var(--text);font-weight:700;font-size:11px;flex-shrink:0;margin-top:2px}
.shipping-note{margin-top:14px;padding:12px 14px;background:var(--off);border-radius:4px;font-size:12px;color:var(--muted);line-height:1.75}

/* ══ TABS ════════════════════════════════════════════ */
.tabs-section{border-top:1px solid var(--border);padding:0 20px 44px}
@media(min-width:1024px){.tabs-section{padding:0 100px 60px}}
.tab-nav{display:flex;border-bottom:1px solid var(--border);margin-bottom:20px;overflow-x:auto;-webkit-overflow-scrolling:touch}
.tab-btn{flex-shrink:0;padding:14px 0;margin-right:24px;font-size:13px;font-weight:500;cursor:pointer;border:none;background:none;color:var(--muted);border-bottom:2px solid transparent;margin-bottom:-1px;transition:all .2s}
.tab-btn.active{color:var(--text);border-bottom-color:var(--text)}
.tab-panel{display:none;font-size:13px;color:var(--muted);line-height:1.85}
.tab-panel.active{display:block}
.tab-panel h4{font-size:13px;font-weight:600;color:var(--text);margin-bottom:8px;margin-top:20px}
.tab-panel h4:first-child{margin-top:0}
.tab-panel table{width:100%;border-collapse:collapse;font-size:12px;display:block;overflow-x:auto}
.tab-panel table td{padding:9px 12px;border-bottom:1px solid var(--border);white-space:nowrap}
.tab-panel table tr td:first-child{font-weight:500;color:var(--text);background:var(--off)}
.review-item{padding:16px 0;border-bottom:1px solid var(--border)}
.review-stars{color:#e8960a;font-size:13px;margin-bottom:4px}
.review-author{font-size:11px;color:var(--faint);margin-bottom:7px;display:flex;flex-wrap:wrap;align-items:center;gap:6px}
.review-text{font-size:13px;color:var(--muted);line-height:1.7}
.related-section{background:var(--off);padding:44px 20px}
@media(min-width:1024px){.related-section{padding:60px 100px}}

/* ══ NEW PAGES ═══════════════════════════════════════ */
/* Steps */
.steps{display:flex;flex-direction:column;gap:16px}
@media(min-width:768px){.steps{flex-direction:row;gap:20px}}
.step{flex:1;padding:24px 20px;background:var(--white);border-radius:8px;border-top:3px solid var(--text);box-shadow:0 1px 6px rgba(0,0,0,.06)}
.step-num{font-size:10px;font-weight:700;letter-spacing:2px;color:var(--muted);margin-bottom:10px}
.step-title{font-size:17px;font-weight:500;margin-bottom:8px}
.step-desc{font-size:13px;color:var(--muted);line-height:1.7}

/* Quote form */
.quote-box{background:var(--white);border:1px solid var(--border);border-radius:8px;padding:24px 20px}
@media(min-width:768px){.quote-box{padding:36px 40px}}
.form-group{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.form-label{font-size:12px;font-weight:500;color:var(--text)}
.form-input,.form-textarea,.form-select{
  width:100%;font-size:13px;padding:11px 13px;
  border:1px solid var(--border);background:var(--white);color:var(--text);
  outline:none;border-radius:3px;transition:border-color .2s;
}
.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--text)}
.form-textarea{min-height:100px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}

/* Info items */
.info-item{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid var(--border);align-items:flex-start}
.info-item:first-child{padding-top:0}
.info-icon{font-size:20px;flex-shrink:0;margin-top:2px}
.info-text h4{font-size:14px;font-weight:600;margin-bottom:3px}
.info-text p{font-size:13px;color:var(--muted);line-height:1.6}

/* Showroom gallery */
.gallery-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(min-width:768px){.gallery-grid{grid-template-columns:repeat(3,1fr);gap:14px}}
.gallery-item{border-radius:6px;overflow:hidden;aspect-ratio:4/3}
.map-placeholder{width:100%;height:200px;background:var(--light);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;border:1px solid var(--border);color:var(--muted)}
@media(min-width:768px){.map-placeholder{height:300px}}
.map-placeholder-icon{font-size:32px;opacity:.4}
.map-placeholder-text{font-size:13px}

/* Contact layout */
.contact-grid{display:flex;flex-direction:column;gap:40px}
@media(min-width:1024px){.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}}

/* Hours table */
.hours-table{width:100%;border-collapse:collapse;font-size:13px}
.hours-table td{padding:9px 0;border-bottom:1px solid var(--border)}
.hours-table td:last-child{text-align:right;color:var(--muted)}

/* Feature boxes */
.feature-boxes{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(min-width:768px){.feature-boxes{grid-template-columns:repeat(4,1fr)}}
.feature-box{padding:20px 16px;background:var(--white);border-radius:6px;border:1px solid var(--border);text-align:center}
.feature-box-icon{font-size:28px;margin-bottom:8px}
.feature-box-title{font-size:13px;font-weight:600;margin-bottom:4px}
.feature-box-desc{font-size:12px;color:var(--muted);line-height:1.5}

/* Divider */
.divider{border:none;border-top:1px solid var(--border);margin:32px 0}
@media(min-width:1024px){.divider{margin:48px 0}}
