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

:root{
  --ink:#1E2225;
  --ink-soft:#2B3034;
  --paper:#F2EEE4;
  --paper-dim:#E7E1D2;
  --brass:#C79A44;
  --brass-light:#E0BD72;
  --teal:#2C6B62;
  --rust:#9C4430;
  --line: rgba(242,238,228,0.14);
  --line-dark: rgba(30,34,37,0.12);
  --radius: 4px;
  --maxw: 1180px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  font-family:'Vazirmatn', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
button, input, textarea, select{
  font-family:'Vazirmatn', sans-serif;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
section{position:relative;}
::selection{ background:var(--brass); color:var(--ink); }
:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; }
[id]{ scroll-margin-top:88px; }

/* ---------- BACKGROUND TEXTURE ---------- */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:1; opacity:0.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(242,238,228,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px; max-width:var(--maxw); margin:0 auto;
}
.brand{ display:flex; align-items:baseline; gap:8px; }
.brand .fa{ font-size:22px; font-weight:800; letter-spacing:-0.5px; }
.brand .en{ font-size:11px; letter-spacing:3px; color:var(--teal); font-weight:600; text-transform:uppercase; }
.nav-links{ display:flex; gap:32px; font-size:15px; font-weight:500; }
.nav-links a{ position:relative; padding:4px 0; transition:color .2s; }
.nav-links a:hover{ color:var(--teal); }
.nav-links a::after{
  content:''; position:absolute; right:0; bottom:-2px; width:0; height:2px;
  background:var(--brass); transition:width .25s;
}
.nav-links a:hover::after{ width:100%; }
.burger{ display:none; }

/* dropdown */
.has-dropdown{ position:relative; }
.has-dropdown > a{ display:flex; align-items:center; gap:5px; }
.has-dropdown .chev{ width:10px; height:10px; transition:transform .2s; }
.has-dropdown:hover .chev{ transform:rotate(180deg); }
.dropdown{
  position:absolute; top:calc(100% + 14px); right:-16px; min-width:210px;
  background:#fff; border:1px solid var(--line-dark); border-radius:var(--radius);
  box-shadow:0 16px 36px rgba(30,34,37,0.14); padding:8px;
  opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .2s, transform .2s, visibility .2s;
  z-index:60;
}
.has-dropdown:hover .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ display:block; padding:10px 14px; border-radius:3px; font-size:14px; font-weight:500; color:var(--ink); }
.dropdown a:hover{ background:var(--paper-dim); color:var(--teal); }
.dropdown .all{ border-top:1px solid var(--line-dark); margin-top:6px; padding-top:12px; font-weight:700; color:var(--rust); }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-size:14.5px; font-weight:700; color:var(--ink); white-space:nowrap; }
.nav-phone svg{ width:18px; height:18px; color:var(--teal); }
.nav-phone:hover{ color:var(--teal); }
.cart-btn{
  position:relative; width:40px; height:40px; border-radius:50%; background:var(--ink); color:var(--paper);
  display:flex; align-items:center; justify-content:center; border:none; cursor:pointer; transition:background .2s;
}
.cart-btn:hover{ background:var(--teal); }
.cart-btn svg{ width:19px; height:19px; }
.cart-count{
  position:absolute; top:-6px; left:-6px; background:var(--rust); color:#fff; font-size:11px; font-weight:700;
  width:19px; height:19px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.menu-toggle{
  display:none; width:40px; height:40px; border:none; background:none; cursor:pointer; flex-direction:column;
  align-items:center; justify-content:center; gap:5px;
}
.menu-toggle span{ width:22px; height:2px; background:var(--ink); display:block; transition:transform .25s, opacity .25s; }
.menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- BREADCRUMB / PAGE HEADER (inner pages) ---------- */
.page-header{ background:var(--ink); color:var(--paper); padding:56px 0 62px; }
.page-header .crumb{ font-size:13px; color:rgba(242,238,228,0.55); margin-bottom:14px; display:flex; gap:8px; align-items:center; }
.page-header .crumb a:hover{ color:var(--brass-light); }
.page-header h1{ font-size:clamp(28px,4vw,42px); font-weight:800; letter-spacing:-0.5px; }
.page-header p{ color:rgba(242,238,228,0.72); margin-top:12px; max-width:60ch; font-size:16px; }

/* ---------- HERO SLIDER (home) ---------- */
.hero{ background:var(--ink); color:var(--paper); overflow:hidden; }
.slider{ position:relative; width:100%; aspect-ratio:16/6.2; min-height:260px; max-height:480px; overflow:hidden; background:#0e1011; }
.slider-track{ position:absolute; inset:0; }
.slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease;
}
.slide.active{ opacity:1; }
.slide img{ width:100%; height:100%; object-fit:cover; filter:brightness(0.55) saturate(1.05); }
.slide::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(30,34,37,0.88) 0%, rgba(30,34,37,0.45) 45%, rgba(30,34,37,0.15) 100%);
}
.slider-caption{
  position:absolute; inset:0; z-index:5; display:flex; flex-direction:column; justify-content:center;
  max-width:var(--maxw); margin:0 auto; padding:0 28px;
}
.slider-caption .eyebrow{
  font-size:13px; letter-spacing:2px; color:var(--brass-light); font-weight:700;
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.slider-caption .eyebrow::before{ content:''; width:28px; height:2px; background:var(--brass-light); display:inline-block; }
.slider-caption h1{
  font-size:clamp(26px,4.6vw,48px); font-weight:800; line-height:1.32; letter-spacing:-1px; max-width:16ch;
  margin-bottom:16px;
}
.slider-caption h1 em{ font-style:normal; background:linear-gradient(90deg,var(--brass-light),var(--brass)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.slider-caption p{ font-size:16.5px; color:rgba(242,238,228,0.82); max-width:48ch; margin-bottom:26px; }
.slider-dots{ position:absolute; bottom:20px; left:50%; transform:translateX(-50%); z-index:6; display:flex; gap:8px; }
.slider-dots button{
  width:8px; height:8px; border-radius:50%; border:none; background:rgba(242,238,228,0.35); cursor:pointer; padding:0; transition:all .25s;
}
.slider-dots button.active{ width:22px; border-radius:5px; background:var(--brass-light); }

.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:var(--radius);
  font-weight:700; font-size:15px; transition:transform .18s, background .2s, box-shadow .2s;
  border:1px solid transparent; cursor:pointer;
}
.btn-primary{ background:var(--brass); color:var(--ink); box-shadow:0 10px 26px rgba(199,154,68,0.28); }
.btn-primary:hover{ background:var(--brass-light); transform:translateY(-2px); }
.btn-outline{ border-color:rgba(242,238,228,0.35); color:var(--paper); }
.btn-outline:hover{ border-color:var(--brass-light); color:var(--brass-light); transform:translateY(-2px); }
.btn-outline-dark{ border:1px solid var(--line-dark); color:var(--ink); }
.btn-outline-dark:hover{ border-color:var(--teal); color:var(--teal); }
.btn-whatsapp{ background:#25D366; color:#fff; }
.btn-whatsapp:hover{ background:#1ebc59; }
.btn-bale{ background:#2AABEE; color:#fff; }
.btn-bale:hover{ background:#1e93cf; }
.btn-cart{
  background:var(--ink); color:var(--paper); border:none; padding:9px 16px; border-radius:var(--radius);
  font-family:inherit; font-size:13px; font-weight:700; cursor:pointer; transition:background .2s;
}
.btn-cart:hover{ background:var(--teal); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- SECTION HEADS ---------- */
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head .tag{ font-size:13px; font-weight:700; letter-spacing:2px; color:var(--teal); margin-bottom:12px; display:block; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:800; letter-spacing:-0.5px; margin-bottom:14px; }
.section-head p{ color:#4b5157; font-size:16px; max-width:56ch; }
.contact .section-head .tag{ color:var(--brass-light); }
.contact .section-head p{ color:rgba(242,238,228,0.7); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- PRODUCTS GRID ---------- */
.products{ padding:88px 0 96px; }
.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.product-grid.compact{ grid-template-columns:repeat(4,1fr); }
.p-card{
  background:#fff; border:1px solid var(--line-dark); border-radius:8px; overflow:hidden;
  transition:transform .25s, box-shadow .25s, border-color .25s; display:flex; flex-direction:column;
}
.p-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(30,34,37,0.12); border-color:var(--brass); }
.p-photo{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--paper-dim); }
.p-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.p-card:hover .p-photo img{ transform:scale(1.06); }
.p-photo .badge{
  position:absolute; top:12px; right:12px; background:var(--ink); color:var(--paper); font-size:11.5px;
  font-weight:700; padding:5px 10px; border-radius:20px; letter-spacing:.3px;
}
.p-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.p-card h3{ font-size:19px; font-weight:700; }
.p-card p{ font-size:14.5px; color:#565c62; flex:1; }
.p-actions{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-top:4px; }
.p-link{ font-size:13.5px; font-weight:700; color:var(--rust); display:inline-flex; align-items:center; gap:6px; }
.p-link svg{ width:14px; height:14px; transition:transform .2s; }
.p-card:hover .p-link svg{ transform:translateX(-3px); }

.p-photo img.gallery-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2;
  opacity:0; transition:opacity 1s ease;
}
.p-photo img.gallery-img.active{ opacity:1; }

/* ---------- VIDEOS PAGE ---------- */
.videos-section{ padding:64px 0 96px; }
.videos-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.video-card h3{ font-size:16px; font-weight:700; margin-bottom:12px; }
.video-wrap{
  aspect-ratio:16/9; border-radius:10px; overflow:hidden;
  background:#12151a; box-shadow:0 16px 34px rgba(30,34,37,0.12); display:flex; align-items:center; justify-content:center;
}
.hint-empty{ color:#8a8f94; font-size:14px; grid-column:1/-1; text-align:center; padding:40px 0; }
@media (max-width: 800px){ .videos-grid{ grid-template-columns:1fr; } }

.video-preview{ padding:20px 0 88px; }
.video-preview .video-wrap{ max-width:900px; margin:0 auto; }

/* ---------- ABOUT ---------- */
.about{ padding:88px 0; }
.about-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:44px; align-items:center; }
.about p{ color:#4b5157; font-size:16px; max-width:60ch; margin-top:14px; }
.about-stats{ display:flex; flex-direction:column; gap:16px; }
.about-stats > div{ background:#fff; border:1px solid var(--line-dark); border-radius:var(--radius); padding:18px 22px; display:flex; justify-content:space-between; align-items:baseline; }
.about-stats strong{ font-size:22px; font-weight:800; color:var(--teal); }
.about-stats span{ font-size:13.5px; color:#565c62; }

/* ---------- BRAND-FREE PRODUCT VISUALS (gradient + icon, no external images) ---------- */
.bg-chasban{ background:linear-gradient(135deg,#C79A44,#8A6A2E); }
.bg-sarzip{ background:linear-gradient(135deg,#2C6B62,#173D37); }
.bg-plastic{ background:linear-gradient(135deg,#E0BD72,#B5822E); }
.bg-felezi{ background:linear-gradient(135deg,#4A5157,#1E2225); }
.bg-waterproof{ background:linear-gradient(135deg,#3A8478,#1F4B44); }
.bg-thread{ background:linear-gradient(135deg,#B25A3E,#7C3823); }
.bg-ostokhani{ background:linear-gradient(135deg,#7A7F84,#3A3F43); }

.p-photo{ position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.p-photo::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.5px);
  background-size:18px 18px; opacity:0.6;
}
.p-icon-big{
  position:relative; z-index:2; width:44%; height:44%; color:rgba(242,238,228,0.95);
  filter:drop-shadow(0 8px 16px rgba(0,0,0,0.25)); transition:transform .4s ease;
}
.p-card:hover .p-icon-big{ transform:scale(1.08) rotate(-2deg); }

.pd-photo{ position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pd-photo::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.14) 2px, transparent 2px);
  background-size:24px 24px; opacity:0.6;
}
.pd-photo .p-icon-big{ width:38%; height:38%; }

.slide{ display:flex; align-items:center; justify-content:flex-end; padding-left:8%; }
.slide::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.12) 2px, transparent 2px);
  background-size:26px 26px;
}
.slide .p-icon-big{ position:relative; z-index:1; width:34%; height:34%; max-width:220px; max-height:220px; opacity:0.5; }
.slide .slide-label{ display:none; }
.slide::after{ content:''; position:absolute; inset:0; background:rgba(15,17,18,0.38); z-index:1; }

.slide.slide-photo{ justify-content:flex-start; padding-left:0; }
.slide.slide-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.slide.slide-photo::before{ display:none; }

.pd-gallery{ position:relative; }
.pd-gallery-slide{ position:absolute; inset:0; opacity:0; transition:opacity .6s ease; }
.pd-gallery-slide.active{ opacity:1; position:relative; }
.pd-gallery-slide img{ width:100%; height:100%; object-fit:cover; }
.pd-gallery-dots{ position:absolute; bottom:14px; left:50%; transform:translateX(-50%); z-index:5; display:flex; gap:7px; }
.pd-gallery-dots button{ width:7px; height:7px; border-radius:50%; border:none; background:rgba(255,255,255,0.5); cursor:pointer; padding:0; }
.pd-gallery-dots button.active{ width:18px; border-radius:4px; background:#fff; }

/* ---------- CONTACT PAGE ---------- */
.contact-page-hero{ background:var(--ink); color:var(--paper); padding:80px 0 90px; text-align:center; }
.contact-page-hero .tag{ font-size:13px; font-weight:700; letter-spacing:2px; color:var(--brass-light); display:block; margin-bottom:18px; }
.big-phone{ font-size:clamp(36px,7vw,64px); font-weight:800; direction:ltr; letter-spacing:1px; color:#fff; display:block; margin-bottom:22px; }
.big-phone:hover{ color:var(--brass-light); }
.contact-page-hero p{ max-width:56ch; margin:0 auto 30px; color:rgba(242,238,228,0.78); font-size:16.5px; }
.contact-page-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- ABOUT PAGE ---------- */
.about-page{ padding:80px 0; }
.about-page .content{ max-width:760px; margin:0 auto; }
.about-page h1{ font-size:clamp(26px,3.6vw,38px); font-weight:800; margin-bottom:20px; }
.about-page p{ font-size:16.5px; color:#4b5157; }

/* ---------- WHY US ---------- */
.why{ background:var(--paper-dim); padding:88px 0 96px; }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card{ padding-top:20px; border-top:2px solid var(--ink); transition:border-color .2s; }
.why-card:hover{ border-color:var(--brass); }
.why-card .num{ font-size:12px; color:var(--rust); font-weight:700; letter-spacing:1px; margin-bottom:10px; display:block; }
.why-card h3{ font-size:18px; font-weight:700; margin-bottom:10px; }
.why-card p{ font-size:14.5px; color:#565c62; }

/* ---------- PROCESS ---------- */
.process{ padding:96px 0; }
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-grid::before{
  content:''; position:absolute; top:26px; right:12.5%; left:12.5%; height:1px;
  background:repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 18px);
}
.step{ padding:0 16px; text-align:center; position:relative; }
.step .n{
  width:52px; height:52px; border-radius:50%; background:var(--ink); color:var(--paper);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:17px;
  margin:0 auto 20px; position:relative; z-index:2;
}
.step h3{ font-size:16px; font-weight:700; margin-bottom:8px; }
.step p{ font-size:14px; color:#565c62; }

/* ---------- CONTACT ---------- */
.contact{ background:var(--ink); color:var(--paper); padding:96px 0; }
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:56px; }
.info-list{ display:flex; flex-direction:column; gap:22px; margin-top:8px; }
.info-item{ display:flex; align-items:flex-start; gap:14px; }
.info-item .ic{
  width:40px; height:40px; border-radius:50%; background:rgba(199,154,68,0.15); color:var(--brass-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-item .ic svg{ width:19px; height:19px; }
.info-item h4{ font-size:14px; color:rgba(242,238,228,0.55); margin-bottom:4px; font-weight:500; }
.info-item p{ font-size:16px; font-weight:600; }
form{ display:flex; flex-direction:column; gap:16px; }
.field label{ display:block; font-size:13.5px; margin-bottom:7px; color:rgba(242,238,228,0.7); }
.field input, .field textarea{
  width:100%; background:rgba(242,238,228,0.06); border:1px solid rgba(242,238,228,0.2);
  border-radius:var(--radius); padding:13px 14px; color:var(--paper); font-family:inherit; font-size:15px;
}
.field input::placeholder, .field textarea::placeholder{ color:rgba(242,238,228,0.35); }
.field input:focus, .field textarea:focus{ border-color:var(--brass); background:rgba(242,238,228,0.09); }
.field textarea{ resize:vertical; min-height:100px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note{ font-size:12.5px; color:rgba(242,238,228,0.45); }
.form-success{ display:none; background:rgba(44,107,98,0.18); border:1px solid var(--teal); border-radius:var(--radius); padding:16px; font-size:14.5px; }
.form-success.show{ display:block; }

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-detail{ padding:64px 0 96px; }
.pd-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:flex-start; }
.pd-photo{ border-radius:10px; overflow:hidden; aspect-ratio:4/3; background:var(--paper-dim); box-shadow:0 24px 50px rgba(30,34,37,0.14); }
.pd-photo img{ width:100%; height:100%; object-fit:cover; }
.pd-info .tag{ font-size:13px; font-weight:700; letter-spacing:2px; color:var(--teal); display:block; margin-bottom:14px; }
.pd-info h1{ font-size:clamp(26px,3.6vw,38px); font-weight:800; letter-spacing:-0.5px; margin-bottom:18px; }
.pd-info .desc{ font-size:16.5px; color:#4b5157; margin-bottom:26px; }
.pd-specs{ display:flex; flex-direction:column; gap:12px; margin-bottom:30px; }
.pd-specs .spec{ display:flex; gap:10px; align-items:flex-start; font-size:15px; }
.pd-specs .spec svg{ width:18px; height:18px; color:var(--teal); flex-shrink:0; margin-top:2px; }
.pd-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.pd-actions .qty-box{ display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--line-dark); border-radius:var(--radius); padding:6px 16px; }
.pd-actions .qty-box button{ background:none; border:none; font-size:20px; cursor:pointer; color:var(--ink); width:20px; }
.pd-related{ margin-top:80px; }
.pd-related h3{ font-size:22px; font-weight:800; margin-bottom:26px; }

/* ---------- CART DRAWER ---------- */
.cart-overlay{ position:fixed; inset:0; background:rgba(20,22,24,0.45); z-index:190; opacity:0; pointer-events:none; transition:opacity .25s; }
.cart-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100vh; width:400px; max-width:92vw;
  background:#fff; z-index:200; transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-14px 0 40px rgba(20,22,24,0.18); display:flex; flex-direction:column;
}
.cart-drawer.open{ transform:translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line-dark); }
.cart-head h3{ font-size:19px; font-weight:800; }
.cart-close{ background:none; border:none; font-size:26px; line-height:1; cursor:pointer; color:var(--ink); }
.cart-items{ flex:1; overflow-y:auto; padding:18px 24px; display:flex; flex-direction:column; gap:14px; }
.cart-empty{ color:#7c8288; font-size:14.5px; text-align:center; margin-top:30px; }
.cart-item{ display:flex; align-items:center; justify-content:space-between; gap:10px; border:1px solid var(--line-dark); border-radius:var(--radius); padding:12px 14px; }
.ci-name{ font-size:14.5px; font-weight:600; flex:1; }
.ci-qty{ display:flex; align-items:center; gap:10px; background:var(--paper-dim); border-radius:20px; padding:4px 10px; }
.ci-qty button{ background:none; border:none; font-size:16px; cursor:pointer; width:20px; color:var(--ink); }
.ci-remove{ background:none; border:none; font-size:18px; color:var(--rust); cursor:pointer; }
.cart-footer{ padding:20px 24px 26px; border-top:1px solid var(--line-dark); display:flex; flex-direction:column; gap:12px; }
.cart-total{ font-size:14.5px; font-weight:600; color:#4b5157; }
.bale-hint{
  font-size:12.5px; color:#4b5157; background:var(--paper-dim); border-radius:6px; padding:10px 12px;
  display:none; line-height:1.6;
}
.bale-hint.show{ display:block; }

/* ---------- FOOTER ---------- */
footer{ background:#181B1D; color:rgba(242,238,228,0.6); padding:48px 0 28px; position:relative; z-index:2; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px; margin-bottom:36px; }
.footer-links{ display:flex; gap:28px; font-size:14px; flex-wrap:wrap; }
.footer-links a:hover{ color:var(--brass-light); }
.footer-bottom{ border-top:1px solid rgba(242,238,228,0.1); padding-top:22px; display:flex; justify-content:space-between; font-size:13px; flex-wrap:wrap; gap:10px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn, .p-card, .reveal{ transition:none; }
}

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-phone span{ display:none; }
  .menu-toggle{ display:flex; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid.compact{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(2,1fr); gap:32px 0; }
  .process-grid::before{ display:none; }
  .contact-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .pd-grid{ grid-template-columns:1fr; gap:32px; }

  .mobile-menu{
    position:fixed; inset:0 0 0 auto; width:78vw; max-width:340px; background:#fff; z-index:210;
    transform:translateX(100%); transition:transform .3s ease; box-shadow:-14px 0 40px rgba(20,22,24,0.18);
    padding:24px; display:flex; flex-direction:column; gap:4px; overflow-y:auto;
  }
  .mobile-menu.open{ transform:translateX(0); }
  .mobile-menu a{ padding:14px 6px; font-size:16px; font-weight:600; border-bottom:1px solid var(--line-dark); }
  .mobile-menu .sub a{ padding:12px 6px 12px 20px; font-size:14.5px; font-weight:500; color:#565c62; border-bottom:none; }
  .mobile-overlay{ position:fixed; inset:0; background:rgba(20,22,24,0.45); z-index:205; opacity:0; pointer-events:none; transition:opacity .3s; }
  .mobile-overlay.open{ opacity:1; pointer-events:auto; }
}
@media (min-width:901px){ .mobile-menu, .mobile-overlay{ display:none; } }

@media (max-width: 560px){
  .product-grid{ grid-template-columns:1fr; }
  .product-grid.compact{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; }
  .cart-drawer{ width:100vw; }
  .slider{ aspect-ratio:4/5; min-height:380px; }
}
