/* ============================================================
   ROGATE ACCIDENT REPAIR CENTRE – GLOBAL STYLESHEET
   ============================================================ */

/* ── Custom properties ──────────────────────────────────────── */
:root {
  --red:          #CC1414;
  --red-hover:    #a81010;
  --red-light:    rgba(204,20,20,.10);
  --black:        #0a0a0a;
  --dark:         #141414;
  --dark-card:    #1e1e1e;
  --mid:          #2d2d2d;
  --border:       #3a3a3a;
  --light:        #f5f5f5;
  --lighter:      #fafafa;
  --white:        #ffffff;
  --text:         #111111;
  --text-sec:     #555555;
  --text-muted:   #888888;
  --text-light:   #cccccc;
  --shadow-s:     0 2px 8px  rgba(0,0,0,.08);
  --shadow-m:     0 4px 20px rgba(0,0,0,.12);
  --shadow-l:     0 8px 40px rgba(0,0,0,.18);
  --r-s:          4px;
  --r-m:          8px;
  --r-l:          12px;
  --ease:         .25s ease;
  --font:         -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --max:          1200px;
  --nav:          72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit}

/* ── Typography ─────────────────────────────────────────────── */
h1{font-size:clamp(2rem,5vw,3.25rem);font-weight:800;line-height:1.1;letter-spacing:-.02em}
h2{font-size:clamp(1.5rem,3.5vw,2.25rem);font-weight:700;line-height:1.2;letter-spacing:-.015em}
h3{font-size:clamp(1.1rem,2vw,1.35rem);font-weight:700;line-height:1.3}
h4{font-size:1rem;font-weight:600}
p{line-height:1.7}

/* ── Layout utilities ───────────────────────────────────────── */
.container{width:100%;max-width:var(--max);margin-inline:auto;padding-inline:20px}
.section{padding-block:80px}
.section--dark{background:var(--dark);color:var(--white)}
.section--grey{background:var(--light)}
.section-header{text-align:center;margin-bottom:56px}
.section-header .eyebrow{display:inline-block;font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:12px}
.section-header h2{margin-bottom:16px}
.section-header p{color:var(--text-sec);max-width:560px;margin-inline:auto;font-size:1.05rem}
.section--dark .section-header p{color:var(--text-light)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.flex{display:flex;align-items:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.text-center{text-align:center}
.mt-8{margin-top:8px}
.mt-16{margin-top:16px}
.mt-24{margin-top:24px}

/* ── Buttons ────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 28px;border-radius:var(--r-s);font-size:.9rem;font-weight:700;letter-spacing:.02em;transition:var(--ease);white-space:nowrap;border:2px solid transparent}
.btn-primary{background:var(--red);color:var(--white);border-color:var(--red)}
.btn-primary:hover{background:var(--red-hover);border-color:var(--red-hover);transform:translateY(-1px);box-shadow:0 4px 16px rgba(204,20,20,.35)}
.btn-outline{background:transparent;color:var(--white);border-color:var(--white)}
.btn-outline:hover{background:var(--white);color:var(--black);transform:translateY(-1px)}
.btn-outline-red{background:transparent;color:var(--red);border-color:var(--red)}
.btn-outline-red:hover{background:var(--red);color:var(--white)}
.btn-dark{background:var(--black);color:var(--white);border-color:var(--black)}
.btn-dark:hover{background:var(--mid);border-color:var(--mid)}
.btn-sm{padding:9px 18px;font-size:.8rem}
.btn-lg{padding:16px 36px;font-size:1rem}
.btn-full{width:100%;justify-content:center}
.btn:disabled{opacity:.5;cursor:not-allowed;transform:none!important;box-shadow:none!important}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav{position:sticky;top:0;z-index:1000;background:var(--black);height:var(--nav);border-bottom:1px solid var(--mid)}
.nav-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:24px}
.nav-logo{display:flex;flex-direction:column;line-height:1}
.nav-logo .brand{font-size:1rem;font-weight:800;letter-spacing:.04em;color:var(--white);text-transform:uppercase}
.nav-logo .brand span{color:var(--red)}
.nav-logo .tagline{font-size:.6rem;letter-spacing:.08em;color:var(--text-muted);text-transform:uppercase;margin-top:2px}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{padding:8px 14px;border-radius:var(--r-s);font-size:.85rem;font-weight:600;color:var(--text-light);transition:var(--ease);letter-spacing:.02em}
.nav-links a:hover,.nav-links a.active{color:var(--white);background:var(--mid)}
.nav-actions{display:flex;align-items:center;gap:12px}
.cart-btn{position:relative;background:var(--mid);border:1px solid var(--border);color:var(--white);width:42px;height:42px;border-radius:var(--r-s);display:flex;align-items:center;justify-content:center;transition:var(--ease)}
.cart-btn:hover{background:var(--red);border-color:var(--red)}
.cart-btn svg{width:18px;height:18px}
.cart-count{position:absolute;top:-6px;right:-6px;background:var(--red);color:var(--white);font-size:.65rem;font-weight:800;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(0);transition:var(--ease)}
.cart-count.visible{opacity:1;transform:scale(1)}
.nav-hamburger{display:none;flex-direction:column;gap:5px;width:36px;height:36px;align-items:center;justify-content:center;border-radius:var(--r-s);background:var(--mid);border:1px solid var(--border)}
.nav-hamburger span{display:block;width:18px;height:2px;background:var(--white);border-radius:2px;transition:var(--ease)}
.nav-mobile{display:none;position:fixed;inset:var(--nav) 0 0;background:var(--black);z-index:999;overflow-y:auto;flex-direction:column;padding:24px 20px;gap:4px;border-top:1px solid var(--mid)}
.nav-mobile.open{display:flex}
.nav-mobile a{padding:14px 16px;border-radius:var(--r-s);font-size:1rem;font-weight:600;color:var(--text-light);border-bottom:1px solid var(--mid);transition:var(--ease)}
.nav-mobile a:hover{color:var(--white);background:var(--mid)}

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1100;opacity:0;pointer-events:none;transition:opacity var(--ease)}
.cart-overlay.open{opacity:1;pointer-events:all}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:min(420px,100vw);background:var(--white);z-index:1101;transform:translateX(100%);transition:transform .3s ease;display:flex;flex-direction:column;box-shadow:var(--shadow-l)}
.cart-drawer.open{transform:none}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid #eee}
.cart-header h3{font-size:1rem;font-weight:700}
.cart-close{width:36px;height:36px;border-radius:50%;background:var(--light);display:flex;align-items:center;justify-content:center;transition:var(--ease)}
.cart-close:hover{background:#e0e0e0}
.cart-close svg{width:16px;height:16px}
.cart-items{flex:1;overflow-y:auto;padding:16px 24px;display:flex;flex-direction:column;gap:16px}
.cart-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:var(--text-muted)}
.cart-empty svg{width:56px;height:56px;opacity:.3}
.cart-empty p{font-size:.95rem}
.cart-item{display:flex;gap:14px;padding-bottom:16px;border-bottom:1px solid #eee}
.cart-item:last-child{border-bottom:none}
.cart-item-img{width:72px;height:72px;border-radius:var(--r-s);overflow:hidden;background:var(--light);flex-shrink:0}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:.9rem;font-weight:600;margin-bottom:4px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.cart-item-price{font-size:.9rem;color:var(--red);font-weight:700}
.cart-item-controls{display:flex;align-items:center;gap:10px;margin-top:8px}
.qty-btn{width:28px;height:28px;border-radius:4px;background:var(--light);border:1px solid #ddd;display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;transition:var(--ease)}
.qty-btn:hover{background:var(--red);color:var(--white);border-color:var(--red)}
.qty-display{font-size:.85rem;font-weight:700;min-width:24px;text-align:center}
.remove-item{margin-left:auto;color:var(--text-muted);font-size:.75rem;text-decoration:underline;cursor:pointer;transition:var(--ease)}
.remove-item:hover{color:var(--red)}
.cart-footer{padding:20px 24px;border-top:1px solid #eee}
.cart-totals{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.cart-totals span{font-size:.9rem;color:var(--text-sec)}
.cart-totals strong{font-size:1.15rem;font-weight:800}

/* ── Hero ────────────────────────────────────────────────────── */
.hero{background:linear-gradient(135deg,var(--black) 0%,#1a0000 50%,var(--dark) 100%);color:var(--white);min-height:calc(100vh - var(--nav));display:flex;align-items:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero::after{content:'';position:absolute;right:-100px;top:-100px;width:600px;height:600px;background:radial-gradient(circle,rgba(204,20,20,.18) 0%,transparent 70%)}
.hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr;max-width:800px}
.hero .eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:20px}
.hero .eyebrow::before{content:'';width:32px;height:2px;background:var(--red)}
.hero h1{margin-bottom:20px}
.hero h1 em{color:var(--red);font-style:normal}
.hero p{font-size:1.1rem;color:var(--text-light);max-width:540px;margin-bottom:36px;line-height:1.8}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-stats{display:flex;gap:40px;margin-top:56px;padding-top:40px;border-top:1px solid var(--border)}
.hero-stat .num{font-size:1.75rem;font-weight:800;color:var(--red)}
.hero-stat .lbl{font-size:.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;margin-top:2px}

/* ── Features (index) ────────────────────────────────────────── */
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.feature-card{background:var(--white);border:1px solid #e8e8e8;border-radius:var(--r-l);padding:32px 24px;transition:var(--ease)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-m);border-color:#ddd}
.feature-icon{width:52px;height:52px;background:var(--red-light);border-radius:var(--r-m);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.feature-icon svg{width:24px;height:24px;color:var(--red)}
.feature-card h3{font-size:1rem;margin-bottom:8px}
.feature-card p{font-size:.88rem;color:var(--text-sec);line-height:1.6}

/* ── Product Cards ───────────────────────────────────────────── */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.product-card{background:var(--white);border:1px solid #e8e8e8;border-radius:var(--r-l);overflow:hidden;transition:var(--ease);display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-m)}
.product-card-img{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--light)}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-badge{position:absolute;top:12px;left:12px;background:var(--red);color:var(--white);font-size:.7rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:4px 10px;border-radius:var(--r-s)}
.product-card-body{padding:20px;flex:1;display:flex;flex-direction:column}
.product-category{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--red);margin-bottom:6px}
.product-name{font-size:.95rem;font-weight:700;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.4}
.product-desc{font-size:.82rem;color:var(--text-sec);margin-bottom:16px;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.5}
.product-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:auto}
.product-price{font-size:1.15rem;font-weight:800;color:var(--text)}
.product-price small{font-size:.7rem;font-weight:400;color:var(--text-muted)}
.add-to-cart{background:var(--red);color:var(--white);border:none;border-radius:var(--r-s);padding:10px 16px;font-size:.8rem;font-weight:700;cursor:pointer;transition:var(--ease);white-space:nowrap;display:flex;align-items:center;gap:6px}
.add-to-cart:hover{background:var(--red-hover);transform:translateY(-1px)}
.view-btn{display:inline-block;font-size:.8rem;font-weight:600;color:var(--text-sec);text-decoration:underline;margin-top:10px;transition:var(--ease)}
.view-btn:hover{color:var(--red)}

/* ── Products Page ───────────────────────────────────────────── */
.page-hero{background:var(--dark);color:var(--white);padding:56px 0;border-bottom:1px solid var(--mid)}
.page-hero h1{font-size:clamp(1.6rem,4vw,2.5rem);margin-bottom:12px}
.page-hero p{color:var(--text-light);font-size:1rem}
.filter-bar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:32px;padding:20px 0;border-bottom:1px solid #eee}
.filter-bar span{font-size:.8rem;font-weight:700;color:var(--text-sec);text-transform:uppercase;letter-spacing:.06em}
.filter-pill{padding:7px 16px;border-radius:40px;border:1.5px solid #ddd;background:var(--white);font-size:.82rem;font-weight:600;cursor:pointer;transition:var(--ease);color:var(--text-sec)}
.filter-pill:hover{border-color:var(--red);color:var(--red)}
.filter-pill.active{background:var(--red);border-color:var(--red);color:var(--white)}

/* ── Skeleton Loader ─────────────────────────────────────────── */
.skeleton{background:linear-gradient(90deg,#efefef 25%,#e0e0e0 50%,#efefef 75%);background-size:200%;animation:shimmer 1.4s infinite}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.skeleton-card{background:var(--white);border:1px solid #e8e8e8;border-radius:var(--r-l);overflow:hidden}
.skeleton-img{aspect-ratio:4/3;background:linear-gradient(90deg,#efefef 25%,#e0e0e0 50%,#efefef 75%);background-size:200%;animation:shimmer 1.4s infinite}
.skeleton-body{padding:20px}
.skeleton-line{height:14px;border-radius:4px;margin-bottom:10px;background:linear-gradient(90deg,#efefef 25%,#e0e0e0 50%,#efefef 75%);background-size:200%;animation:shimmer 1.4s infinite}
.skeleton-line.short{width:60%}
.skeleton-line.price{width:40%;height:18px;margin-top:16px}

/* ── How It Works ────────────────────────────────────────────── */
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative}
.steps-grid::before{content:'';position:absolute;top:36px;left:calc(12.5% + 36px);right:calc(12.5% + 36px);height:1px;background:repeating-linear-gradient(90deg,var(--border) 0,var(--border) 8px,transparent 8px,transparent 16px)}
.step-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:24px 16px}
.step-num{width:72px;height:72px;border-radius:50%;background:var(--mid);border:2px solid var(--border);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.35rem;font-weight:800;margin-bottom:20px;position:relative;z-index:1;flex-shrink:0}
.step-num.active{background:var(--red);border-color:var(--red)}
.step-card h3{color:var(--white);margin-bottom:8px;font-size:1rem}
.step-card p{color:var(--text-light);font-size:.85rem;line-height:1.6}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--dark-card);border:1px solid var(--border);border-radius:var(--r-l);padding:32px;transition:var(--ease)}
.testimonial-card:hover{border-color:var(--red);transform:translateY(-4px)}
.stars{display:flex;gap:3px;margin-bottom:16px}
.stars svg{width:16px;height:16px;fill:var(--red);color:var(--red)}
.testimonial-text{font-size:.9rem;color:var(--text-light);line-height:1.75;margin-bottom:20px;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:12px}
.author-avatar{width:40px;height:40px;border-radius:50%;background:var(--red);display:flex;align-items:center;justify-content:center;font-size:.9rem;font-weight:800;color:var(--white);flex-shrink:0}
.author-name{font-size:.9rem;font-weight:700;color:var(--white)}
.author-role{font-size:.75rem;color:var(--text-muted)}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section{background:var(--red);color:var(--white);padding:72px 0;text-align:center}
.cta-section h2{color:var(--white);margin-bottom:16px}
.cta-section p{color:rgba(255,255,255,.85);font-size:1.05rem;max-width:520px;margin-inline:auto;margin-bottom:32px}
.cta-section .btn-outline{border-color:var(--white);color:var(--white)}
.cta-section .btn-outline:hover{background:var(--white);color:var(--red)}

/* ── Product Detail Page ─────────────────────────────────────── */
.product-detail{padding-block:60px}
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.product-gallery{border-radius:var(--r-l);overflow:hidden;background:var(--light);aspect-ratio:1;display:flex;align-items:center;justify-content:center}
.product-gallery img{width:100%;height:100%;object-fit:cover}
.product-gallery-placeholder{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:400px}
.product-gallery-placeholder svg{width:80px;height:80px;color:#ccc}
.product-detail-info{display:flex;flex-direction:column;gap:20px}
.product-detail-category{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--red)}
.product-detail-name{font-size:clamp(1.4rem,3vw,2rem);font-weight:800;line-height:1.2;color:var(--text)}
.product-detail-price{font-size:2rem;font-weight:800;color:var(--text)}
.product-detail-price small{font-size:1rem;font-weight:400;color:var(--text-muted)}
.product-detail-desc{font-size:.95rem;color:var(--text-sec);line-height:1.8}
.quantity-picker{display:flex;align-items:center;gap:0}
.qty-input-btn{width:44px;height:44px;background:var(--light);border:1.5px solid #ddd;display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:700;cursor:pointer;transition:var(--ease)}
.qty-input-btn:first-child{border-radius:var(--r-s) 0 0 var(--r-s)}
.qty-input-btn:last-child{border-radius:0 var(--r-s) var(--r-s) 0}
.qty-input-btn:hover{background:var(--red);color:var(--white);border-color:var(--red)}
.qty-input{width:60px;height:44px;border:1.5px solid #ddd;border-left:none;border-right:none;text-align:center;font-size:1rem;font-weight:700;-moz-appearance:textfield}
.qty-input::-webkit-outer-spin-button,.qty-input::-webkit-inner-spin-button{-webkit-appearance:none}
.product-actions{display:flex;gap:12px;flex-wrap:wrap}
.product-meta{background:var(--light);border-radius:var(--r-m);padding:20px}
.product-meta-item{display:flex;align-items:center;gap:10px;padding:8px 0;border-bottom:1px solid #e0e0e0;font-size:.85rem}
.product-meta-item:last-child{border-bottom:none}
.product-meta-item svg{width:16px;height:16px;color:var(--red);flex-shrink:0}
.product-meta-item span{color:var(--text-sec)}
.product-meta-item strong{color:var(--text)}

/* ── About Page ──────────────────────────────────────────────── */
.about-hero{background:var(--dark);color:var(--white);padding:80px 0}
.about-content{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;padding-block:80px}
.about-content .label{font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:12px}
.about-content h2{margin-bottom:20px}
.about-content p{color:var(--text-sec);margin-bottom:16px;line-height:1.8}
.about-visual{background:linear-gradient(135deg,var(--dark) 0%,var(--mid) 100%);border-radius:var(--r-l);min-height:400px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.about-visual::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cc1414' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")}
.about-visual-inner{position:relative;z-index:1;text-align:center;padding:40px}
.about-visual-inner .big-num{font-size:5rem;font-weight:900;color:var(--red);line-height:1}
.about-visual-inner p{color:var(--text-light);font-size:.9rem;margin-top:8px;letter-spacing:.06em;text-transform:uppercase}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.value-item{background:var(--light);border-radius:var(--r-m);padding:20px;border-left:3px solid var(--red)}
.value-item h4{margin-bottom:6px;font-size:.9rem}
.value-item p{font-size:.82rem;color:var(--text-sec);line-height:1.5}

/* ── Contact Page ────────────────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;padding-block:72px}
.contact-info h2{margin-bottom:20px}
.contact-info p{color:var(--text-sec);margin-bottom:32px;line-height:1.8}
.contact-item{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px}
.contact-icon{width:44px;height:44px;background:var(--red-light);border-radius:var(--r-m);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:20px;height:20px;color:var(--red)}
.contact-item-text .label{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:2px}
.contact-item-text p{font-size:.9rem;color:var(--text);line-height:1.5}
.contact-form{background:var(--lighter);border:1px solid #e8e8e8;border-radius:var(--r-l);padding:36px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:.82rem;font-weight:700;color:var(--text);margin-bottom:6px;letter-spacing:.02em}
.form-control{width:100%;padding:12px 16px;border:1.5px solid #ddd;border-radius:var(--r-s);font-size:.9rem;background:var(--white);color:var(--text);transition:var(--ease)}
.form-control:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 3px var(--red-light)}
textarea.form-control{resize:vertical;min-height:120px}
.form-success{display:none;background:#f0fff4;border:1.5px solid #86efac;border-radius:var(--r-m);padding:16px;color:#15803d;font-size:.9rem;margin-top:12px}

/* ── FAQ Page ────────────────────────────────────────────────── */
.faq-list{max-width:760px;margin-inline:auto;display:flex;flex-direction:column;gap:8px}
.faq-item{background:var(--white);border:1.5px solid #e8e8e8;border-radius:var(--r-m);overflow:hidden;transition:var(--ease)}
.faq-item.open{border-color:var(--red)}
.faq-question{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;cursor:pointer;font-weight:700;font-size:.95rem;transition:var(--ease)}
.faq-question:hover{color:var(--red)}
.faq-item.open .faq-question{color:var(--red)}
.faq-icon{width:24px;height:24px;border-radius:50%;background:var(--light);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--ease)}
.faq-item.open .faq-icon{background:var(--red);color:var(--white);transform:rotate(45deg)}
.faq-icon svg{width:12px;height:12px}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer-inner{padding:0 24px 20px;font-size:.9rem;color:var(--text-sec);line-height:1.8}

/* ── Success / Cancel ────────────────────────────────────────── */
.result-page{min-height:calc(100vh - var(--nav));display:flex;align-items:center;justify-content:center;padding:60px 20px}
.result-box{text-align:center;max-width:540px}
.result-icon{width:80px;height:80px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 28px}
.result-icon.success{background:#dcfce7}
.result-icon.cancel{background:#fee2e2}
.result-icon svg{width:40px;height:40px}
.result-icon.success svg{color:#16a34a}
.result-icon.cancel svg{color:var(--red)}
.result-box h1{font-size:1.75rem;margin-bottom:12px}
.result-box p{color:var(--text-sec);margin-bottom:28px;line-height:1.7}

/* ── Legal Pages ─────────────────────────────────────────────── */
.legal-page{padding-block:72px}
.legal-content{max-width:760px;margin-inline:auto}
.legal-content h1{font-size:2rem;margin-bottom:8px}
.legal-content .updated{font-size:.82rem;color:var(--text-muted);margin-bottom:40px}
.legal-content h2{font-size:1.2rem;margin-top:36px;margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid #eee}
.legal-content h3{font-size:1rem;margin-top:20px;margin-bottom:8px}
.legal-content p,.legal-content li{font-size:.9rem;color:var(--text-sec);line-height:1.8;margin-bottom:12px}
.legal-content ul,.legal-content ol{padding-left:20px;margin-bottom:16px}
.legal-content li{list-style:disc}
.legal-content a{color:var(--red);text-decoration:underline}

/* ── Toast ───────────────────────────────────────────────────── */
.toast-container{position:fixed;bottom:24px;right:24px;z-index:9999;display:flex;flex-direction:column;gap:10px}
.toast{display:flex;align-items:center;gap:12px;background:var(--black);color:var(--white);padding:14px 20px;border-radius:var(--r-m);box-shadow:var(--shadow-l);font-size:.88rem;font-weight:600;min-width:280px;animation:slideIn .3s ease;border-left:3px solid var(--red)}
.toast.success{border-color:#16a34a}
.toast.error{border-color:var(--red)}
@keyframes slideIn{from{transform:translateX(100%);opacity:0}to{transform:none;opacity:1}}
@keyframes slideOut{to{transform:translateX(calc(100% + 24px));opacity:0}}
.toast.hiding{animation:slideOut .3s ease forwards}
.toast-icon{width:18px;height:18px;flex-shrink:0}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer{background:var(--black);color:var(--text-light);padding-top:60px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;border-bottom:1px solid var(--border)}
.footer-brand .logo{font-size:1rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--white);margin-bottom:12px}
.footer-brand .logo span{color:var(--red)}
.footer-brand p{font-size:.85rem;color:var(--text-muted);line-height:1.7;max-width:280px;margin-bottom:20px}
.footer-contact-item{display:flex;align-items:flex-start;gap:8px;font-size:.82rem;margin-bottom:8px;color:var(--text-muted)}
.footer-contact-item svg{width:14px;height:14px;color:var(--red);flex-shrink:0;margin-top:2px}
.footer-col h4{font-size:.82rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--white);margin-bottom:16px}
.footer-col ul{display:flex;flex-direction:column;gap:8px}
.footer-col ul a{font-size:.85rem;color:var(--text-muted);transition:var(--ease)}
.footer-col ul a:hover{color:var(--white)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-block:20px;gap:16px;flex-wrap:wrap}
.footer-bottom p{font-size:.78rem;color:var(--text-muted)}
.footer-bottom .trust{display:flex;align-items:center;gap:6px;font-size:.75rem;color:var(--text-muted)}
.footer-bottom .trust svg{width:14px;height:14px;color:var(--red)}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:.82rem;color:var(--text-muted);margin-bottom:32px}
.breadcrumb a:hover{color:var(--red)}
.breadcrumb span.sep{color:var(--border)}

/* ── Related Products ────────────────────────────────────────── */
.related-section{padding-block:60px;background:var(--light)}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1024px){
  .features-grid,.products-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  :root{--nav:64px}
  .section{padding-block:56px}
  .nav-links,.nav-actions .btn{display:none}
  .nav-hamburger{display:flex}
  .hero{min-height:auto;padding:72px 0}
  .hero-stats{display:none}
  .features-grid,.products-grid,.testimonials-grid{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid::before{display:none}
  .product-detail-grid,.about-content,.contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .form-row{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .filter-bar{gap:8px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
}
@media(max-width:480px){
  .steps-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .products-grid{grid-template-columns:repeat(2,1fr)}
}
