/* =====================================================
   Water-Bugs Swimming Aid — Stylesheet
   Dark theme, cyan accent — matches Figma design
   ===================================================== */

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

:root{
  --bg:#0A0C10;
  --bg-alt:#111318;
  --card:rgba(255,255,255,0.03);
  --border:rgba(255,255,255,0.08);
  --border-soft:rgba(170,220,220,0.10);
  --text:#ffffff;
  --text-muted:#9aa0aa;
  --text-dim:#6b7280;
  --accent:#00BEFB;
  --accent-2:#2591EC;
  --accent-3:#AADCDC;
  --amber:#f59e0b;
  --red:#dc2626;
  --radius:1rem;
  --radius-lg:1.25rem;
  --maxw:1280px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
ul{list-style:none;margin:0;padding:0;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 1rem;}

/* ---------- Typography ---------- */
h1,h2,h3,h4{margin:0;font-weight:600;color:var(--text);}
.h1{font-size:clamp(2.4rem,6vw,4.4rem);line-height:1.1;font-weight:700;}
.h2{font-size:clamp(1.9rem,4vw,2.9rem);line-height:1.15;font-weight:700;}
.h3{font-size:1.5rem;font-weight:600;}
.text-muted{color:var(--text-muted);}
.text-dim{color:var(--text-dim);}
.gradient-text{
  background:linear-gradient(90deg,var(--accent-3),var(--accent-2),var(--accent));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  display:block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  padding:1rem 2rem;border-radius:1rem;font-weight:600;font-size:1rem;
  border:none;transition:opacity .2s,transform .2s;text-align:center;
}
.btn:hover{opacity:.9;}
.btn-primary{background:linear-gradient(90deg,var(--accent-2),var(--accent));color:#fff;}
.btn-white{background:#fff;color:#000;}
.btn-white:hover{background:#f0f0f0;}
.btn-outline{background:transparent;border:1px solid var(--border);color:var(--text);}
.btn-block{width:100%;}
.btn-sm{padding:.65rem 1.2rem;font-size:.9rem;border-radius:.8rem;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  border-bottom:1px solid rgba(170,220,220,.2);
  overflow:hidden;
}
.site-header .bg-photo{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
  filter:blur(14px);transform:scale(1.1);
}
.site-header .bg-overlay{position:absolute;inset:0;background:rgba(0,0,0,.78);z-index:0;}
.header-inner{position:relative;z-index:1;max-width:var(--maxw);margin:0 auto;padding:.8rem 1rem;}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;}
.logo-link{display:flex;align-items:center;gap:1rem;background:none;border:none;padding:0;}
.logo-link img{width:52px;height:52px;object-fit:contain;}
.logo-text h1{font-size:1.15rem;color:#fff;margin:0;}
.logo-text p{font-size:.72rem;color:var(--accent-3);margin:0;}
.desktop-nav{display:none;gap:2rem;align-items:center;}
.desktop-nav a{color:#fff;font-size:.95rem;transition:color .2s;background:none;border:none;padding:0;}
.desktop-nav a:hover,.desktop-nav a.active{color:var(--accent);}
.header-actions{display:flex;align-items:center;gap:.7rem;}
.shop-now-btn{display:none;align-items:center;gap:.4rem;background:linear-gradient(90deg,var(--accent-2),var(--accent));
  color:#fff;font-size:.9rem;font-weight:600;padding:.55rem 1.2rem;border-radius:.8rem;border:none;}
.icon-btn{position:relative;background:none;border:none;padding:.5rem;border-radius:.6rem;color:var(--accent-3);}
.icon-btn:hover{background:rgba(0,190,251,.15);}
.icon-btn svg{width:24px;height:24px;}
.cart-badge{position:absolute;top:-2px;right:-2px;background:var(--accent-2);color:#fff;font-size:.65rem;
  border-radius:999px;width:18px;height:18px;display:flex;align-items:center;justify-content:center;}
.menu-toggle{display:flex;background:none;border:none;padding:.5rem;color:#fff;}
.mobile-nav{display:none;flex-direction:column;gap:.9rem;padding:1rem 0;border-top:1px solid rgba(170,220,220,.2);margin-top:.8rem;}
.mobile-nav.open{display:flex;}
.mobile-nav a{color:#fff;background:none;border:none;text-align:left;padding:0;font-size:1rem;}
.mobile-nav a.active{color:var(--accent);}

@media(min-width:640px){
  .logo-text{display:block;}
  .shop-now-btn{display:inline-flex;}
}
@media(min-width:768px){
  .desktop-nav{display:flex;}
  .menu-toggle{display:none;}
}
.logo-text{display:none;}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:80vh;display:flex;align-items:center;overflow:hidden;background:var(--bg);}
.hero-bg{position:absolute;inset:0;}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.45;}
.hero-bg .overlay{position:absolute;inset:0;
  background:linear-gradient(to left,var(--bg) 0%,rgba(10,12,16,.65) 55%,rgba(10,12,16,.2) 100%);}
.hero-inner{position:relative;z-index:1;max-width:var(--maxw);margin:0 auto;padding:5rem 1rem;width:100%;}
.hero-content{max-width:620px;}
.badge{display:inline-block;background:var(--accent);color:#000;font-size:.85rem;font-weight:600;
  padding:.5rem 1.2rem;border-radius:999px;margin-bottom:1.4rem;}
.hero h1{margin-bottom:1.4rem;}
.hero-sub{font-size:1.3rem;color:#d1d5db;margin-bottom:2.2rem;line-height:1.5;}
.hero-actions{display:flex;flex-direction:column;gap:1rem;}
@media(min-width:640px){.hero-actions{flex-direction:row;}}

/* ---------- Sections generic ---------- */
section{padding:4.5rem 0;}
.section-tight{padding:3rem 0;}
.section-header{text-align:center;max-width:640px;margin:0 auto 3.5rem;}
.section-header p{color:var(--text-muted);font-size:1.05rem;margin-top:.8rem;}
.bg-fade-1{background:linear-gradient(to bottom,var(--bg),rgba(17,19,25,.5));}
.bg-fade-2{background:linear-gradient(to bottom,rgba(17,19,25,.5),var(--bg));}
.bg-fade-3{background:linear-gradient(to bottom,var(--bg),rgba(17,19,25,.4));}

/* ---------- Trust badges ---------- */
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem;}
@media(min-width:768px){.trust-grid{grid-template-columns:repeat(4,1fr);}}
.trust-card{text-align:center;padding:1.5rem;background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:.9rem;border:1px solid var(--border-soft);}
.trust-card svg{width:36px;height:36px;color:var(--accent);margin:0 auto .7rem;}
.trust-card h3{font-size:1rem;margin-bottom:.2rem;}
.trust-card p{color:var(--text-muted);font-size:.85rem;margin:0;}

/* ---------- Promo banner ---------- */
.promo-banner{border-radius:1.2rem;overflow:hidden;border:1px solid rgba(37,145,236,.2);}

/* ---------- Product cards ---------- */
.products-grid{display:grid;gap:2rem;max-width:900px;margin:0 auto;}
@media(min-width:768px){.products-grid{grid-template-columns:repeat(2,1fr);}}
.product-card{background:linear-gradient(135deg,#111,#000);border-radius:1.2rem;overflow:hidden;
  border:1px solid var(--border-soft);transition:border-color .2s;}
.product-card:hover{border-color:rgba(0,190,251,.5);}
.product-img{aspect-ratio:1/1;background:linear-gradient(135deg,rgba(170,220,220,.1),rgba(37,145,236,.1));
  overflow:hidden;position:relative;}
.product-img img{width:100%;height:100%;object-fit:cover;}
.age-badge{position:absolute;top:.8rem;right:.8rem;background:var(--accent);color:#000;
  font-size:.75rem;padding:.25rem .8rem;border-radius:999px;}
.product-body{padding:1.3rem;}
.product-title-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:.8rem;gap:.5rem;}
.product-title-row h3{font-size:1.1rem;}
.product-price{color:var(--accent);font-size:1.3rem;font-weight:700;white-space:nowrap;}
.product-desc{color:var(--text-muted);font-size:.9rem;margin-bottom:1rem;}
.product-features{margin-bottom:1.2rem;}
.product-features li{display:flex;gap:.5rem;align-items:flex-start;font-size:.8rem;color:var(--accent-3);margin-bottom:.4rem;}
.product-features svg{width:14px;height:14px;flex-shrink:0;margin-top:.15rem;color:var(--accent);}
.coming-soon-card{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;
  border-radius:1.2rem;border:1px dashed rgba(37,145,236,.4);
  background:linear-gradient(135deg,rgba(37,145,236,.05),rgba(0,190,251,.05));
  padding:2.5rem;text-align:center;min-height:340px;}
.coming-soon-icon{width:64px;height:64px;border-radius:999px;background:linear-gradient(135deg,rgba(37,145,236,.2),rgba(0,190,251,.2));
  border:1px solid rgba(0,190,251,.3);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:1.5rem;}
.view-all-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--accent);font-size:.9rem;background:none;border:none;}
.view-all-link:hover{color:var(--accent-3);}
.text-center{text-align:center;}
.mt-10{margin-top:2.5rem;}

/* ---------- Feature cards ---------- */
.features-grid{display:grid;gap:1.2rem;margin-bottom:2rem;}
@media(min-width:640px){.features-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.features-grid{grid-template-columns:repeat(3,1fr);}}
.feature-card{background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:1.2rem;border:1px solid var(--border-soft);padding:1.7rem;transition:border-color .2s;}
.feature-card:hover{border-color:rgba(0,190,251,.3);}
.feature-card .emoji{font-size:1.8rem;display:block;margin-bottom:1rem;}
.feature-card h3{font-size:1.1rem;margin-bottom:.4rem;}
.feature-card p{color:var(--text-muted);font-size:.9rem;margin:0;line-height:1.6;}

.notice-grid{display:grid;gap:1.2rem;}
@media(min-width:768px){.notice-grid{grid-template-columns:1fr 1fr;}}
.notice-card{display:flex;align-items:center;gap:1.2rem;border-radius:1.2rem;padding:1.4rem;}
.notice-card.cert{background:linear-gradient(90deg,rgba(37,145,236,.1),var(--bg));border:1px solid rgba(37,145,236,.2);}
.notice-card.warn{background:rgba(245,158,11,.05);border:1px solid rgba(245,158,11,.2);align-items:flex-start;}
.notice-icon{width:56px;height:56px;border-radius:.9rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.notice-icon.cert{background:rgba(37,145,236,.2);}
.notice-icon.warn{background:rgba(245,158,11,.1);font-size:1.4rem;}
.notice-icon svg{width:28px;height:28px;color:var(--accent-2);}
.eyebrow{color:var(--accent-2);font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.2rem;}
.eyebrow.warn{color:var(--amber);}

/* ---------- Gallery ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;}
@media(min-width:768px){.gallery-grid{grid-template-columns:repeat(4,1fr);}}
.gallery-full-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;}
@media(min-width:768px){.gallery-full-grid{grid-template-columns:repeat(3,1fr);}}
@media(min-width:1024px){.gallery-full-grid{grid-template-columns:repeat(4,1fr);}}
.gallery-item{position:relative;aspect-ratio:1/1;overflow:hidden;border-radius:.9rem;
  border:1px solid var(--border-soft);background:#111;}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block; transition:transform .5s;}
.gallery-item:hover img{transform:scale(1.05);}
.gallery-item.logo-hide img{transform:scale(1.32) translate(-13%,13%);}
.gallery-item.logo-hide:hover img{transform:scale(1.4) translate(-13%,13%);}

/* ---------- Videos ---------- */
.pill-red{display:inline-flex;align-items:center;gap:.5rem;background:rgba(220,38,38,.15);
  border:1px solid rgba(220,38,38,.25);color:#f87171;font-size:.75rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.06em;padding:.5rem 1rem;border-radius:999px;margin-bottom:1.2rem;}
.pill-red svg{width:16px;height:16px;}
.videos-grid{display:grid;gap:1.2rem;margin-bottom:2.5rem;}
@media(min-width:768px){.videos-grid{grid-template-columns:repeat(3,1fr);}}
.video-card{position:relative;aspect-ratio:16/9;border-radius:1.2rem;overflow:hidden;border:1px solid var(--border);
  transition:border-color .3s,transform .3s;display:block;}
.video-card:hover{border-color:rgba(239,68,68,.4);transform:translateY(-4px);}
.video-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.video-card:hover img{transform:scale(1.05);}
.video-overlay{position:absolute;inset:0;background:rgba(0,0,0,.4);}
.play-btn{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;}
.play-circle{width:64px;height:64px;border-radius:999px;background:#dc2626;display:flex;align-items:center;
  justify-content:center;box-shadow:0 10px 25px rgba(153,27,27,.5);}
.play-circle svg{width:28px;height:28px;fill:#fff;margin-left:3px;}
.video-label{position:absolute;bottom:0;left:0;right:0;padding:1rem;
  background:linear-gradient(to top,rgba(0,0,0,.8),transparent);}
.video-label p{margin:0;color:#fff;font-size:.9rem;font-weight:500;}
.video-label span{color:#9ca3af;font-size:.75rem;}
.btn-red{display:inline-flex;align-items:center;gap:.7rem;background:#dc2626;color:#fff;padding:1rem 2rem;
  border-radius:.9rem;font-weight:600;font-size:1.05rem;box-shadow:0 10px 25px rgba(153,27,27,.3);}
.btn-red:hover{background:#b91c1c;}

/* ---------- Why cards ---------- */
.why-grid{display:grid;gap:2rem;margin-bottom:3rem;}
@media(min-width:768px){.why-grid{grid-template-columns:repeat(3,1fr);}}
.why-card{background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:1.2rem;border:1px solid var(--border-soft);padding:2rem;}
.why-icon{width:56px;height:56px;border-radius:.9rem;background:linear-gradient(135deg,var(--accent-2),var(--accent));
  display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;}
.why-icon svg{width:30px;height:30px;color:#fff;}
.why-card h3{font-size:1.4rem;margin-bottom:1rem;}
.why-card ul li{display:flex;align-items:flex-start;gap:.5rem;color:#d1d5db;margin-bottom:.7rem;font-size:.95rem;}
.why-card ul svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;margin-top:.15rem;}

/* ---------- Testimonials ---------- */
.testimonials-grid{display:grid;gap:1.4rem;}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.testimonials-grid{grid-template-columns:repeat(3,1fr);}}
.testimonial-card{background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:1.2rem;border:1px solid var(--border-soft);padding:1.7rem;display:flex;flex-direction:column;}
.stars{display:flex;gap:.15rem;margin-bottom:.7rem;}
.stars svg{width:15px;height:15px;fill:var(--accent);color:var(--accent);}
.testimonial-card p.comment{color:#d1d5db;font-style:italic;flex:1;margin-bottom:1.2rem;line-height:1.6;font-size:.92rem;}
.testimonial-card .name{color:var(--accent-3);font-weight:500;margin:0;}
.testimonial-card .meta{color:var(--text-dim);font-size:.75rem;margin:.15rem 0 0;}

/* ---------- Takealot ---------- */
.takealot-box{border-radius:1.2rem;border:1px solid rgba(0,100,210,.3);
  background:linear-gradient(90deg,rgba(0,100,210,.1),var(--bg));overflow:hidden;}
.takealot-inner{display:flex;flex-direction:column;align-items:center;gap:2rem;padding:2rem;text-align:center;}
@media(min-width:768px){.takealot-inner{flex-direction:row;text-align:left;padding:3rem;}}
.takealot-icon{flex-shrink:0;width:80px;height:80px;border-radius:1.2rem;background:#0064D2;
  display:flex;align-items:center;justify-content:center;box-shadow:0 10px 25px rgba(0,100,210,.2);}
.takealot-icon svg{width:40px;height:40px;color:#fff;}
.takealot-inner .flex-1{flex:1;}
.btn-takealot{flex-shrink:0;display:inline-flex;align-items:center;gap:.7rem;background:#0064D2;color:#fff;
  padding:1rem 2rem;border-radius:.9rem;font-weight:600;font-size:1.05rem;}
.btn-takealot:hover{background:#0055B3;}

/* ---------- Social platform grid ---------- */
.social-grid{display:grid;gap:1.5rem;}
@media(min-width:640px){.social-grid{grid-template-columns:repeat(3,1fr);}}
.social-card{display:flex;flex-direction:column;align-items:center;gap:1.2rem;padding:2rem;border-radius:1.2rem;
  transition:transform .3s;text-align:center;}
.social-card:hover{transform:translateY(-4px);}
.social-icon{width:64px;height:64px;border-radius:1.1rem;display:flex;align-items:center;justify-content:center;}
.social-icon svg{width:32px;height:32px;}
.social-card .name{color:#fff;font-weight:600;font-size:1.1rem;margin:0;}
.social-card .handle{color:#6b7280;font-size:.85rem;margin:.15rem 0 0;}
.follow-pill{font-size:.75rem;padding:.4rem 1.1rem;border-radius:999px;font-weight:500;margin-top:.3rem;}

/* Social bar (footer strip) */
.social-bar{padding:2.5rem 0;background:var(--bg);border-top:1px solid rgba(255,255,255,.05);}
.social-bar p{text-align:center;color:#6b7280;font-size:.9rem;margin-bottom:1.2rem;}
.social-bar-links{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.7rem;}
.social-bar-links a{display:flex;align-items:center;gap:.6rem;padding:.6rem 1.2rem;border-radius:.8rem;
  transition:transform .2s;font-size:.85rem;font-weight:500;}
.social-bar-links a:hover{transform:translateY(-2px) scale(1.03);}
.social-bar-links svg{width:16px;height:16px;}

/* ---------- CTA split ---------- */
.cta-split{overflow:hidden;}
.cta-grid{display:grid;}
@media(min-width:768px){.cta-grid{grid-template-columns:1fr 1fr;}}
.cta-left{background:linear-gradient(135deg,var(--accent-2),var(--accent));padding:3rem 2rem;
  display:flex;align-items:center;}
@media(min-width:768px){.cta-left{padding:4rem;}}
.cta-left h2{color:#fff;margin-bottom:1.2rem;}
.cta-left p{color:rgba(255,255,255,.9);font-size:1.2rem;margin-bottom:1.8rem;line-height:1.6;}
.cta-checks{display:flex;gap:1.5rem;margin-top:1.8rem;color:rgba(255,255,255,.85);font-size:.9rem;flex-wrap:wrap;}
.cta-checks span{display:flex;align-items:center;gap:.4rem;}
.cta-checks svg{width:18px;height:18px;}
.cta-right{position:relative;min-height:280px;}
.cta-right img{width:100%;height:100%;object-fit:cover;object-position:top;min-height:280px;}

/* ---------- Page header (inner pages) ---------- */
.page-header{background:linear-gradient(to bottom,rgba(17,24,39,.4),var(--bg));padding:3.2rem 0;
  border-bottom:1px solid rgba(255,255,255,.05);}
.back-link{display:inline-flex;align-items:center;gap:.5rem;color:#6b7280;font-size:.9rem;margin-bottom:1.8rem;
  background:none;border:none;}
.back-link:hover{color:var(--accent);}
.back-link svg{width:16px;height:16px;transform:rotate(180deg);}
.page-header h1{font-size:clamp(2rem,5vw,3rem);margin-bottom:.8rem;}
.page-header .sub{color:var(--text-muted);font-size:1.1rem;max-width:640px;margin:0;}

/* ---------- Generic content cards (shipping/returns/etc) ---------- */
.stack{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:1.2rem;}
.info-card{background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);padding:1.7rem;}
.info-card.split{display:flex;align-items:flex-start;gap:1rem;}
.info-card.split .icon{font-size:1.7rem;flex-shrink:0;}
.info-card h3{font-size:1.25rem;margin-bottom:.5rem;}
.info-card p{color:var(--text-muted);line-height:1.6;margin:0;}
.info-card.highlight{background:linear-gradient(90deg,rgba(37,145,236,.1),var(--bg));border:1px solid rgba(37,145,236,.2);}
.info-card.takealot-mini{background:linear-gradient(90deg,rgba(0,100,210,.1),var(--bg));border:1px solid rgba(0,100,210,.3);}
.legal-block h3{font-size:1.25rem;margin-bottom:.7rem;}
.legal-block p{color:var(--text-muted);line-height:1.7;margin:0;}
.legal-stack{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:2rem;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;gap:3rem;max-width:1050px;margin:0 auto;}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr;}}
.contact-item{display:flex;align-items:flex-start;gap:1rem;padding:1.2rem;background:rgba(17,24,39,.6);
  border-radius:.9rem;border:1px solid rgba(255,255,255,.05);margin-bottom:1rem;}
.contact-item .icon-wrap{width:40px;height:40px;border-radius:.6rem;background:rgba(37,145,236,.15);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-item .icon-wrap svg{width:20px;height:20px;color:var(--accent-2);}
.contact-item .label{color:#6b7280;font-size:.72rem;text-transform:uppercase;letter-spacing:.05em;margin:0 0 .1rem;}
.contact-item .value{color:#fff;margin:0;}
.contact-item .value:hover{color:var(--accent);}
.form-box{background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);padding:2rem;}
.form-group{margin-bottom:1rem;}
.form-group label{display:block;color:#9ca3af;font-size:.9rem;margin-bottom:.4rem;}
.form-group input,.form-group textarea,.form-group select{
  width:100%;background:rgba(31,41,55,.6);border:1px solid rgba(255,255,255,.1);border-radius:.8rem;
  padding:.8rem 1rem;color:#fff;font-size:1rem;font-family:inherit;}
.form-group input::placeholder,.form-group textarea::placeholder{color:#4b5563;}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline:none;border-color:rgba(37,145,236,.6);}
.form-group textarea{resize:vertical;}
.social-icons-row{display:flex;gap:.7rem;margin-top:.8rem;}
.social-icons-row a{width:40px;height:40px;border-radius:.8rem;display:flex;align-items:center;justify-content:center;
  transition:transform .2s;}
.social-icons-row a:hover{transform:scale(1.1);}
.social-icons-row svg{width:18px;height:18px;}

/* ---------- FAQ accordion ---------- */
.faq-stack{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.7rem;}
.faq-item{background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);overflow:hidden;}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.3rem 1.5rem;
  text-align:left;background:none;border:none;color:#fff;font-weight:500;font-size:1rem;}
.faq-q:hover{background:rgba(255,255,255,.02);}
.faq-q svg{width:20px;height:20px;flex-shrink:0;color:#6b7280;transition:transform .2s;}
.faq-item.open .faq-q svg{color:var(--accent);transform:rotate(180deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.faq-item.open .faq-a{max-height:300px;}
.faq-a-inner{padding:0 1.5rem 1.3rem;border-top:1px solid rgba(255,255,255,.05);padding-top:1rem;}
.faq-a-inner p{color:var(--text-muted);line-height:1.6;margin:0;}

/* ---------- About page ---------- */
.about-hero{display:grid;gap:2.5rem;align-items:center;margin-bottom:2.5rem;}
@media(min-width:768px){.about-hero{grid-template-columns:1fr 1fr;}}
.about-hero p{color:var(--text-muted);line-height:1.7;margin-bottom:1rem;}
.about-hero .photo{border-radius:1.2rem;overflow:hidden;border:1px solid rgba(170,220,220,.1);}
.about-hero .photo img{width:100%;height:320px;object-fit:cover;}
.stats-grid{display:grid;gap:1.2rem;margin-bottom:2.5rem;}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(3,1fr);}}
.stat-card{text-align:center;background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);padding:2rem;}
.stat-card .stat{font-size:2.2rem;color:var(--accent);margin:0 0 .2rem;}
.stat-card .label{color:#fff;font-weight:500;margin:0;}
.stat-card .sub{color:#6b7280;font-size:.85rem;margin:.15rem 0 0;}
.mission-box{background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:1.2rem;border:1px solid rgba(170,220,220,.1);padding:2.2rem;}
.mission-box p{color:var(--text-muted);font-size:1.15rem;font-style:italic;line-height:1.7;margin:1rem 0 0;}

/* ---------- Confidence box (why-us page) ---------- */
.confidence-box{text-align:center;background:linear-gradient(135deg,rgba(31,41,55,.6),rgba(17,24,39,.6));
  border-radius:1.2rem;padding:2.8rem 1.5rem;border:1px solid rgba(170,220,220,.1);}
.confidence-box p.lead{color:var(--text-muted);max-width:600px;margin:1rem auto 2rem;}
.tag-row{display:flex;flex-wrap:wrap;justify-content:center;gap:1.4rem;color:#d1d5db;font-size:.9rem;}
.tag-row span{display:flex;align-items:center;gap:.4rem;}
.tag-row svg{width:16px;height:16px;color:var(--accent);}

/* ---------- Product / gallery page top notice ---------- */
.rounded-photo{border-radius:1.2rem;overflow:hidden;border:1px solid rgba(170,220,220,.1);margin-bottom:1.2rem;}

/* ---------- Checkout ---------- */
.checkout-grid{display:grid;gap:2rem;align-items:start;max-width:1050px;margin:0 auto;}
@media(min-width:1024px){.checkout-grid{grid-template-columns:2fr 1fr;}}
.checkout-section{background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);padding:1.8rem;margin-bottom:1.5rem;}
.checkout-section h2{font-size:1.25rem;margin-bottom:1.5rem;display:flex;align-items:center;gap:.6rem;}
.step-num{width:28px;height:28px;border-radius:999px;background:var(--accent-2);color:#fff;font-size:.75rem;
  font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.option-grid{display:grid;gap:1rem;margin-bottom:1.2rem;}
@media(min-width:480px){.option-grid{grid-template-columns:1fr 1fr;}}
.option-card{border-radius:.9rem;border:1px solid rgba(255,255,255,.1);padding:1.2rem;text-align:left;
  background:none;color:inherit;transition:all .2s;}
.option-card:hover{border-color:rgba(255,255,255,.2);}
.option-card.selected{border-color:var(--accent-2);background:rgba(37,145,236,.1);}
.option-card .emoji{font-size:1.4rem;display:block;margin-bottom:.5rem;}
.option-card .opt-label{font-weight:600;color:#d1d5db;margin:0 0 .15rem;}
.option-card.selected .opt-label{color:#fff;}
.option-card .opt-desc{color:#6b7280;font-size:.85rem;margin:0;}
.order-summary{background:rgba(17,24,39,.6);border-radius:1.2rem;border:1px solid rgba(255,255,255,.05);padding:1.8rem;}
.order-summary h2{font-size:1.1rem;margin-bottom:1.2rem;}
.summary-item{display:flex;align-items:center;gap:.8rem;margin-bottom:1rem;}
.summary-item img{width:56px;height:56px;border-radius:.6rem;object-fit:cover;flex-shrink:0;}
.summary-item .info{flex:1;min-width:0;}
.summary-item .info p{margin:0;color:#fff;font-size:.9rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.summary-item .info span{color:#6b7280;font-size:.75rem;}
.summary-item .price{color:var(--accent);font-size:.9rem;flex-shrink:0;}
.summary-line{display:flex;justify-content:space-between;font-size:.9rem;color:#9ca3af;padding:.4rem 0;}
.summary-total{display:flex;justify-content:space-between;font-weight:600;font-size:1.05rem;color:#fff;
  border-top:1px solid rgba(255,255,255,.05);padding-top:.8rem;margin-top:.4rem;}
.summary-total .price{color:var(--accent);}
.summary-divider{border-top:1px solid rgba(255,255,255,.05);padding-top:1rem;margin-top:.5rem;}
.empty-cart-msg{text-align:center;padding:4rem 1rem;color:var(--text-muted);}

/* ---------- Cart drawer ---------- */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:90;opacity:0;pointer-events:none;transition:opacity .25s;}
.cart-overlay.open{opacity:1;pointer-events:auto;}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:100%;max-width:420px;background:#0d0f14;z-index:100;
  border-left:1px solid rgba(255,255,255,.08);transform:translateX(100%);transition:transform .3s;
  display:flex;flex-direction:column;}
.cart-drawer.open{transform:translateX(0);}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.3rem 1.5rem;border-bottom:1px solid rgba(255,255,255,.06);}
.cart-header h2{font-size:1.15rem;}
.cart-close{background:none;border:none;color:#9ca3af;padding:.4rem;}
.cart-close svg{width:22px;height:22px;}
.cart-body{flex:1;overflow-y:auto;padding:1.2rem 1.5rem;}
.cart-line{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.05);}
.cart-line img{width:64px;height:64px;border-radius:.7rem;object-fit:cover;flex-shrink:0;}
.cart-line .info{flex:1;min-width:0;}
.cart-line .info p{margin:0 0 .2rem;color:#fff;font-size:.92rem;}
.cart-line .qty-row{display:flex;align-items:center;gap:.6rem;margin-top:.5rem;}
.qty-btn{width:26px;height:26px;border-radius:.5rem;border:1px solid rgba(255,255,255,.15);background:none;
  color:#fff;display:flex;align-items:center;justify-content:center;font-size:1rem;}
.cart-line .price{color:var(--accent);font-size:.9rem;white-space:nowrap;}
.cart-remove{background:none;border:none;color:#6b7280;font-size:.75rem;margin-top:.5rem;text-decoration:underline;}
.cart-footer{padding:1.3rem 1.5rem;border-top:1px solid rgba(255,255,255,.06);}
.cart-empty{text-align:center;color:#6b7280;padding:3rem 1rem;}

/* ---------- Footer ---------- */
.site-footer{background:var(--bg);color:#9ca3af;padding:3rem 0 1.5rem;border-top:1px solid rgba(170,220,220,.1);}
.footer-grid{display:grid;gap:2.2rem;margin-bottom:2rem;}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr);}}
.footer-col .logo-link{margin-bottom:.7rem;}
.footer-col h3{font-size:1rem;color:#fff;margin:.3rem 0 0;}
.footer-col p{font-size:.9rem;margin:0;}
.footer-col h4{color:#fff;margin-bottom:1rem;font-size:.95rem;}
.footer-col ul li{margin-bottom:.6rem;}
.footer-col ul a{font-size:.9rem;color:#9ca3af;background:none;border:none;padding:0;}
.footer-col ul a:hover{color:var(--accent);}
.footer-bottom{border-top:1px solid rgba(170,220,220,.1);padding-top:1.8rem;
  display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:1rem;font-size:.85rem;}
@media(min-width:640px){.footer-bottom{flex-direction:row;}}
.footer-bottom a.site-url{color:var(--accent);}
.footer-bottom a.site-url:hover{color:var(--accent-3);}

/* ---------- Order success ---------- */
.success-wrap{min-height:70vh;display:flex;align-items:center;justify-content:center;padding:5rem 1rem;}
.success-inner{max-width:480px;width:100%;text-align:center;}
.success-icon{width:80px;height:80px;border-radius:999px;background:linear-gradient(135deg,var(--accent-2),var(--accent));
  display:flex;align-items:center;justify-content:center;margin:0 auto 2rem;box-shadow:0 10px 25px rgba(37,145,236,.3);}
.success-icon svg{width:40px;height:40px;color:#fff;}
.order-num{color:var(--accent);font-family:monospace;font-size:1.1rem;margin-bottom:2rem;}

/* ---------- Utility ---------- */
.mb-0{margin-bottom:0;}
.hidden{display:none !important;}
.badge-inline{display:inline-flex;align-items:center;gap:.5rem;color:#d1d5db;font-size:.9rem;}
