/* Krojačnica Ideal — glavni stylesheet */

:root{
  --bg: oklch(0.98 0.008 70);
  --surface: oklch(0.99 0.005 70);
  --border: oklch(0.88 0.01 60);
  --text: oklch(0.24 0.02 40);
  --text-muted: oklch(0.48 0.02 40);
  --tint: oklch(0.95 0.012 65);
  --accent: oklch(0.56 0.13 35);
  --accent-dark: oklch(0.42 0.12 35);
  --dark: oklch(0.24 0.02 40);
  --dark-2: oklch(0.3 0.02 40);
  --dark-3: oklch(0.32 0.02 40);
  --dark-border: oklch(0.35 0.02 40);
  --on-dark: oklch(0.99 0.005 70);
  --on-dark-muted: oklch(0.8 0.01 60);
  --on-dark-muted-2: oklch(0.85 0.01 60);
  --on-dark-muted-3: oklch(0.65 0.02 40);
  --on-dark-muted-4: oklch(0.6 0.02 40);
  --gold: oklch(0.7 0.1 35);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

a{ color: inherit; }

img{ max-width: 100%; display: block; }

h1,h2,h3{ font-family: Georgia, "Times New Roman", serif; }

.container{ max-width: 1320px; margin: 0 auto; padding-left: 5vw; padding-right: 5vw; }
.container-narrow{ max-width: 900px; margin: 0 auto; padding-left: 5vw; padding-right: 5vw; }
.container-legal{ max-width: 760px; margin: 0 auto; padding: 70px 5vw 90px; }

/* Header */
.site-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 5vw; background: var(--surface);
  border-bottom:1px solid var(--border);
  position: sticky; top:0; z-index:50;
  flex-wrap: wrap; gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color: var(--text); }
.brand-mark{
  width:46px; height:46px; border-radius:50%; background: var(--accent); color: var(--on-dark);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',Georgia,serif; font-size:19px; font-weight:600; flex-shrink:0;
}
.brand-text{ line-height:1.15; }
.brand-title{ font-family:'Cormorant Garamond',Georgia,serif; font-size:21px; font-weight:600; }
.brand-sub{ font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--text-muted); }

.main-nav{ display:flex; gap:26px; flex-wrap:wrap; font-size:15px; }
.main-nav a{ text-decoration:none; }
.main-nav a:hover, .main-nav a.active{ color: var(--accent); }
.main-nav a.active{ font-weight:600; }

.btn{
  text-decoration:none; display:inline-block; border:none; cursor:pointer;
  font-family:inherit; font-weight:600; font-size:14px; border-radius:30px;
  padding:11px 22px; background: var(--accent); color: var(--on-dark);
}
.btn:hover{ background: var(--accent-dark); }
.btn-lg{ padding:15px 30px; font-size:15px; border-radius:30px; }
.btn-outline{ background:none; border:1.5px solid var(--text); color: var(--text); }
.btn-outline:hover{ background:none; }
.btn-light{ background: var(--on-dark); color: var(--accent); font-weight:700; }
.btn-light:hover{ background: var(--on-dark); opacity:.92; }
.cart-pill{
  position:relative; background: var(--dark); color: var(--on-dark);
  padding:11px 20px; border-radius:30px; font-size:14px; font-weight:600; white-space:nowrap;
}

/* Hero */
.hero{
  display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:center;
  padding:80px 5vw; max-width:1320px; margin:0 auto;
}
.eyebrow{
  display:inline-block; background: var(--tint); color: var(--accent-dark);
  padding:7px 16px; border-radius:20px; font-size:13px; font-weight:600; letter-spacing:.03em; margin-bottom:22px;
}
.eyebrow-plain{
  font-size:13px; letter-spacing:.14em; text-transform:uppercase; color: var(--accent); font-weight:600; margin-bottom:12px;
}
h1{ font-size:56px; line-height:1.08; font-weight:600; margin:0 0 22px; }
.hero p{ font-size:18px; line-height:1.7; color: var(--text-muted); max-width:520px; margin:0 0 32px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-media, .photo-box{
  aspect-ratio:4/5; border-radius:20px; overflow:hidden; background: var(--tint);
}
.hero-media img, .photo-box img{ width:100%; height:100%; object-fit:cover; }

/* Stats strip */
.stats{ background: var(--dark); padding:34px 5vw; }
.stats-grid{
  max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;
}
.stat-num{ font-family:'Cormorant Garamond',Georgia,serif; font-size:34px; font-weight:600; color: var(--on-dark); }
.stat-label{ font-size:13px; color: var(--on-dark-muted); margin-top:4px; }

/* Section headers */
.section{ padding:88px 5vw; max-width:1320px; margin:0 auto; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-head h2{ font-size:38px; font-weight:600; margin:0; }
.section-head-row{
  display:flex; justify-content:space-between; align-items:baseline; margin-bottom:40px; flex-wrap:wrap; gap:12px;
}

/* Services grid */
.grid-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.card{
  text-decoration:none; color:inherit; background: var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:32px; display:block;
}
.card:hover{ box-shadow:0 8px 30px oklch(0 0 0 / 0.08); }
.card-icon{ width:48px; height:48px; border-radius:50%; background: var(--tint); margin-bottom:18px; }
.card h3{ font-size:21px; font-weight:600; margin:0 0 10px; }
.card p{ font-size:14.5px; color: var(--text-muted); line-height:1.6; margin:0 0 14px; }
.card-link{ font-size:14px; font-weight:600; color: var(--accent); }
.card-accent{ background: var(--accent); color: var(--on-dark); }
.card-accent .card-icon{ background: oklch(0.99 0.005 70 / 0.2); }
.card-accent p{ color: oklch(0.99 0.005 70 / 0.85); }
.card-accent .card-link{ color: var(--on-dark); }

/* How it works */
.section-tint{ background: var(--tint); padding:88px 5vw; }
.steps{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:28px; }
.step{ text-align:center; }
.step-num{
  width:56px; height:56px; border-radius:50%; background: var(--surface); border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',Georgia,serif;
  font-size:22px; font-weight:600; color: var(--accent); margin:0 auto 18px;
}
.step h3{ font-size:17px; font-weight:600; margin:0 0 8px; font-family:'Work Sans',sans-serif; }
.step p{ font-size:14px; color: var(--text-muted); line-height:1.6; margin:0; }

/* Why us */
.split{ padding:88px 5vw; max-width:1320px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.split-media{ aspect-ratio:1/1; border-radius:20px; overflow:hidden; background: var(--tint); }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.why-list{ display:flex; flex-direction:column; gap:20px; }
.why-item{ display:flex; gap:16px; }
.why-dot{ width:8px; height:8px; border-radius:50%; background: var(--accent); margin-top:8px; flex-shrink:0; }
.why-item div div{ font-size:14.5px; color: var(--text-muted); margin-top:4px; }

/* Testimonials */
.section-dark{ padding:88px 5vw; background: var(--dark); }
.section-dark .section-head h2{ color: var(--on-dark); }
.section-dark .eyebrow-plain{ color: var(--gold); }
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; max-width:1320px; margin:0 auto; }
.testi-card{ background: var(--dark-2); border-radius:16px; padding:28px; }
.testi-stars{ color: var(--gold); margin-bottom:12px; font-size:15px; }
.testi-card p{ color: oklch(0.9 0.01 60); font-size:15px; line-height:1.7; margin:0 0 16px; }
.testi-author{ font-size:13.5px; color: var(--on-dark-muted-3); font-weight:600; }

/* Blog cards */
.blog-card{ text-decoration:none; color:inherit; border:1px solid var(--border); border-radius:16px; overflow:hidden; display:block; }
.blog-thumb{ height:160px; background: var(--tint); overflow:hidden; }
.blog-thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card-body{ padding:22px; }
.blog-meta{ font-size:12.5px; color: var(--text-muted); margin-bottom:8px; }
.blog-card h3{ font-size:17px; font-weight:600; margin:0; font-family:'Work Sans',sans-serif; }

/* CTA band */
.cta-band{ padding:70px 5vw; background: var(--accent); text-align:center; }
.cta-band h2{ font-size:32px; font-weight:600; margin:0 0 14px; color: var(--on-dark); }
.cta-band p{ color: oklch(0.99 0.005 70 / 0.9); font-size:16px; margin:0 0 26px; }
.cta-band-sm h2{ font-size:30px; }
.cta-band-sm p{ font-size:15.5px; }

/* Footer */
.site-footer{ background: var(--dark); color: var(--on-dark); padding:64px 5vw 32px; }
.footer-grid{
  display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:40px; max-width:1280px; margin:0 auto;
  padding-bottom:40px; border-bottom:1px solid var(--dark-border);
}
.footer-brand{ font-family:'Cormorant Garamond',Georgia,serif; font-size:22px; font-weight:600; margin-bottom:12px; }
.footer-desc{ font-size:14px; line-height:1.7; color: var(--on-dark-muted); max-width:320px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; background: var(--dark-3);
  display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:13px;
}
.footer-col-title{ font-size:13px; text-transform:uppercase; letter-spacing:.1em; color: var(--on-dark-muted-3); margin-bottom:14px; }
.footer-links{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.footer-links a{ color: var(--on-dark-muted-2); text-decoration:none; }
.footer-contact{ font-size:14px; color: var(--on-dark-muted-2); line-height:1.8; }
.footer-bottom{
  max-width:1280px; margin:0 auto; padding-top:24px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:12.5px; color: var(--on-dark-muted-4);
}

/* Simple legal footer (used on legal pages) */
.footer-simple{ background: var(--dark); color: var(--on-dark); padding:40px 5vw; }
.footer-simple-inner{ max-width:1280px; margin:0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; font-size:13px; }
.footer-simple-inner .footer-links{ flex-direction:row; gap:20px; flex-wrap:wrap; }
.footer-simple .copy{ color: var(--on-dark-muted-3); }

/* Legal pages */
.legal-header-nav{ display:flex; gap:26px; flex-wrap:wrap; font-size:15px; }
.legal-header-nav a{ text-decoration:none; color: var(--text); }
.legal-body{ display:flex; flex-direction:column; gap:28px; font-size:15px; line-height:1.75; color: oklch(0.3 0.02 40); }
.legal-body h2{ font-size:19px; font-weight:600; color: var(--text); margin:0 0 10px; font-family:'Work Sans',sans-serif; }
.legal-body p{ margin:0; }
.legal-updated{ font-size:13.5px; color: var(--text-muted); margin:0 0 40px; }

/* Cookie banner */
.cookie-banner{
  position:fixed; bottom:0; left:0; right:0; background: var(--dark); color: var(--on-dark);
  padding:18px 5vw; display:flex; gap:20px; align-items:center; justify-content:space-between;
  flex-wrap:wrap; z-index:100; box-shadow:0 -4px 20px oklch(0 0 0 / 0.15);
}
.cookie-banner p{ font-size:13.5px; line-height:1.6; max-width:760px; color: var(--on-dark-muted-2); margin:0; }
.cookie-banner a{ color: var(--on-dark); text-decoration:underline; }
.cookie-accept{
  background: var(--accent); color: var(--on-dark); border:none; padding:10px 22px; border-radius:24px;
  font-size:14px; font-weight:600; cursor:pointer; flex-shrink:0;
}
.cookie-accept:hover{ background: var(--accent-dark); }
.cookie-banner[hidden]{ display:none; }

/* Usluge page rows */
.service-rows{ max-width:1180px; margin:0 auto; padding:20px 5vw 40px; display:flex; flex-direction:column; gap:6px; }
.service-row{
  display:grid; grid-template-columns:1fr 1.1fr; gap:48px; align-items:center; padding:50px 0; border-bottom:1px solid var(--border);
}
.service-row.reverse{ grid-template-columns:1.1fr 1fr; }
.service-row:last-child{ border-bottom:none; }
.service-media{ aspect-ratio:5/4; border-radius:18px; overflow:hidden; background: var(--tint); }
.service-media img{ width:100%; height:100%; object-fit:cover; }
.service-row h2{ font-size:28px; font-weight:600; margin:0 0 14px; }
.service-row p{ font-size:15px; color: var(--text-muted); line-height:1.7; margin:0 0 18px; }
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; }
.tag{ background: var(--tint); padding:7px 14px; border-radius:20px; font-size:13px; }
.page-intro{ padding:70px 5vw 40px; max-width:900px; margin:0 auto; text-align:center; }
.page-intro h1{ font-size:44px; margin:0 0 18px; }
.page-intro p{ font-size:16.5px; color: var(--text-muted); line-height:1.7; }
.page-intro a{ color: var(--accent); font-weight:600; text-decoration:none; }
.page-intro-sm{ padding:70px 5vw 20px; max-width:860px; }
.page-intro-sm h1{ font-size:42px; }
.page-intro-sm p{ font-size:16px; }

/* Pricing */
.price-groups{ max-width:900px; margin:0 auto; padding:30px 5vw 60px; display:flex; flex-direction:column; gap:36px; }
.price-group h2{ font-size:24px; font-weight:600; margin:0 0 4px; color: var(--accent); }
.price-table{ background: var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; margin-top:14px; }
.price-row{ display:flex; justify-content:space-between; padding:16px 22px; border-bottom:1px solid oklch(0.92 0.01 60); }
.price-row:last-child{ border-bottom:none; }
.price-note{ background: var(--tint); border-radius:14px; padding:22px 26px; font-size:14.5px; color: var(--text-muted); line-height:1.7; }
.price-note a{ color: var(--accent); font-weight:600; text-decoration:none; }

/* Shop */
.shop-layout{ max-width:1280px; margin:0 auto; padding:40px 5vw 90px; display:grid; grid-template-columns:2.2fr 1fr; gap:40px; align-items:start; }
.product-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; }
.product-card{ background: var(--surface); border:1px solid var(--border); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; }
.product-thumb{ height:150px; background: var(--tint); overflow:hidden; }
.product-thumb img{ width:100%; height:100%; object-fit:cover; }
.product-body{ padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-tag{ align-self:flex-start; background: var(--tint); color: var(--accent-dark); font-size:11.5px; font-weight:600; padding:4px 10px; border-radius:12px; }
.product-body h3{ font-size:16px; font-weight:600; margin:0; line-height:1.3; font-family:'Work Sans',sans-serif; }
.product-body p{ font-size:13.5px; color: var(--text-muted); line-height:1.55; margin:0; flex:1; }
.product-footer{ display:flex; justify-content:space-between; align-items:center; margin-top:6px; }
.product-price{ font-family:'Cormorant Garamond',Georgia,serif; font-size:22px; font-weight:600; }
.btn-add{ background: var(--accent); color: var(--on-dark); border:none; padding:10px 18px; border-radius:22px; font-size:13.5px; font-weight:600; cursor:pointer; }
.btn-add:hover{ background: var(--accent-dark); }

.cart-box{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:26px; position:sticky; top:100px; }
.cart-box h2{ font-size:22px; font-weight:600; margin:0 0 18px; }
.cart-item{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; padding-bottom:12px; margin-bottom:12px; border-bottom:1px solid oklch(0.92 0.01 60); font-size:13.5px; }
.cart-item:last-child{ border-bottom:none; margin-bottom:0; padding-bottom:0; }
.qty-controls{ display:flex; align-items:center; gap:8px; margin-top:6px; }
.qty-btn{ width:22px; height:22px; border:1px solid var(--border); background: var(--surface); border-radius:50%; cursor:pointer; font-size:13px; line-height:1; }
.remove-link{ margin-left:6px; border:none; background:none; color: var(--text-muted); font-size:12px; cursor:pointer; text-decoration:underline; padding:0; }
.cart-total{ display:flex; justify-content:space-between; font-size:16px; font-weight:600; margin-bottom:18px; }
.cart-empty{ font-size:13.5px; color: var(--text-muted); line-height:1.6; text-align:center; padding:18px 0; }
.cart-success{ text-align:center; padding:24px 0; }
.cart-success .check{ font-size:32px; margin-bottom:10px; }
.cart-success h3{ font-size:16px; font-weight:600; margin:0 0 8px; font-family:'Work Sans',sans-serif; }
.cart-success p{ font-size:13.5px; color: var(--text-muted); line-height:1.6; margin:0; }
.shop-legal{ padding:20px 5vw 80px; max-width:900px; margin:0 auto; text-align:center; color: var(--text-muted); font-size:13.5px; line-height:1.7; }
.shop-legal a{ color: var(--accent); text-decoration:none; font-weight:600; }

/* Forms */
.form-field{ padding:13px 16px; border:1px solid var(--border); border-radius:10px; font-size:14px; font-family:inherit; width:100%; }
.form-field-sm{ padding:11px 14px; font-size:13.5px; border-radius:10px; }
textarea.form-field{ resize:vertical; }
.form-stack{ display:flex; flex-direction:column; gap:14px; }
.form-stack-sm{ gap:10px; }
.btn-submit{ background: var(--accent); color: var(--on-dark); border:none; padding:15px; border-radius:26px; font-size:15px; font-weight:600; cursor:pointer; }
.btn-submit:hover{ background: var(--accent-dark); }
.btn-submit-sm{ padding:13px; font-size:14px; border-radius:24px; }
.btn-cancel{ background:none; border:none; color: var(--text-muted); font-size:13px; cursor:pointer; text-decoration:underline; }
.form-hint{ font-size:12px; color: var(--text-muted); line-height:1.5; margin:4px 0 0; }
.form-hint a{ color: var(--accent); text-decoration:none; font-weight:600; }
.form-success{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:40px; text-align:center; }
.form-success .check{ font-size:34px; margin-bottom:12px; }
.form-success h3{ font-size:19px; font-weight:600; margin:0 0 10px; font-family:'Work Sans',sans-serif; }
.form-success p{ font-size:14.5px; color: var(--text-muted); line-height:1.6; margin:0; }
.form-error{ background: oklch(0.95 0.03 30); border:1px solid oklch(0.75 0.12 30); color: oklch(0.35 0.1 30); border-radius:10px; padding:12px 16px; font-size:13.5px; }

/* Contact page */
.contact-layout{ max-width:1180px; margin:0 auto; padding:30px 5vw 90px; display:grid; grid-template-columns:1fr 1.1fr; gap:48px; align-items:start; }
.contact-cards{ display:flex; flex-direction:column; gap:26px; }
.contact-card{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:26px; }
.contact-card h3{ font-size:13px; letter-spacing:.1em; text-transform:uppercase; color: var(--text-muted); margin:0 0 14px; font-family:'Work Sans',sans-serif; }
.contact-card p{ font-size:16px; line-height:1.6; margin:0; }
.contact-card-row{ display:flex; justify-content:space-between; font-size:15px; padding:6px 0; }
.contact-card a{ color: var(--accent); text-decoration:none; font-weight:600; }
.contact-form-box{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:30px; }
.contact-form-box h3{ font-family:'Cormorant Garamond',Georgia,serif; font-size:22px; font-weight:600; margin:0 0 18px; }
.map-box{ aspect-ratio:16/9; border-radius:16px; overflow:hidden; background: var(--tint); margin-bottom:28px; position:relative; }
.map-box img{ width:100%; height:100%; object-fit:cover; }
.map-box .map-pin{ position:absolute; left:50%; top:50%; transform:translate(-50%,-100%); text-align:center; }
.map-box .map-pin .pin-dot{ width:16px; height:16px; border-radius:50% 50% 50% 0; background:var(--accent); transform:rotate(-45deg); margin:0 auto; box-shadow:0 2px 8px oklch(0 0 0/.4); }
.map-box .map-label{ position:absolute; bottom:12px; left:12px; background: oklch(0.24 0.02 40 / 0.75); color:var(--on-dark); padding:6px 12px; border-radius:8px; font-size:12.5px; }

/* Team */
.team-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:28px; }
.team-member{ text-align:center; }
.team-photo{ aspect-ratio:1/1; border-radius:50%; overflow:hidden; background: var(--tint); margin:0 auto 18px; max-width:200px; }
.team-photo img{ width:100%; height:100%; object-fit:cover; }
.team-member h3{ font-size:18px; font-weight:600; margin:0 0 4px; font-family:'Work Sans',sans-serif; }
.team-role{ font-size:13.5px; color: var(--accent); font-weight:600; margin-bottom:10px; }
.team-member p{ font-size:14px; color: var(--text-muted); line-height:1.6; margin:0; }

/* Timeline */
.timeline{ display:flex; flex-direction:column; gap:0; }
.timeline-row{ display:grid; grid-template-columns:100px 1fr; gap:24px; padding:20px 0; border-bottom:1px solid var(--border); }
.timeline-row:last-child{ border-bottom:none; }
.timeline-year{ font-family:'Cormorant Garamond',Georgia,serif; font-size:22px; font-weight:600; color: var(--accent); }

/* Values (dark) */
.values-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; }
.value-card{ background: var(--dark-2); border-radius:14px; padding:26px; }
.value-card h3{ color: var(--on-dark); font-size:16.5px; font-weight:600; margin:0 0 10px; font-family:'Work Sans',sans-serif; }
.value-card p{ color: var(--on-dark-muted); font-size:14px; line-height:1.6; margin:0; }

/* Blog article */
.article-list{ max-width:800px; margin:0 auto; padding:30px 5vw 70px; display:flex; flex-direction:column; gap:70px; }
.article-thumb{ height:220px; border-radius:16px; overflow:hidden; background: var(--tint); margin-bottom:24px; }
.article-thumb img{ width:100%; height:100%; object-fit:cover; }
article h2{ font-size:30px; font-weight:600; margin:0 0 18px; }
article p{ font-size:15.5px; line-height:1.8; color: oklch(0.3 0.02 40); margin:0 0 16px; }
article p:last-child{ margin-bottom:0; }

/* FAQ */
.faq-list{ max-width:760px; margin:0 auto; padding:30px 5vw 90px; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background: var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.faq-question{
  width:100%; text-align:left; background:none; border:none; padding:20px 24px; font-size:15.5px; font-weight:600;
  cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:inherit; color: var(--text);
}
.faq-icon{ font-size:20px; color: var(--accent); flex-shrink:0; }
.faq-answer{ padding:0 24px 20px; font-size:14.5px; color: var(--text-muted); line-height:1.7; display:none; }
.faq-item.open .faq-answer{ display:block; }

@media (max-width: 860px){
  .hero, .split, .service-row, .service-row.reverse, .contact-layout, .shop-layout{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  h1{ font-size:38px; }
  .section, .split{ padding:56px 5vw; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
}
