:root{
  --bg:#070b0d;
  --panel:#0d1418;
  --panel2:#0a1013;
  --text:#e9f0f2;
  --muted:#a9b6bd;
  --gold:#d7b56d;
  --line:rgba(255,255,255,.10);
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius: 16px;
  --side-pad: 24px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:transparent;
}
body{ position:relative; }
a{ color:inherit; text-decoration:none; }

/* ======================================
   Global full-width container
   ====================================== */
.wrap{
  width:100%;
  max-width:none;
  margin:0;
  padding-left:var(--side-pad);
  padding-right:var(--side-pad);
}

/* Make section content readable over background media */
.hero,
.section,
.section-alt,
.footer{
  background:rgba(0,0,0,.14);
}

/* ======================================
   Header
   ====================================== */
.topbar{
  position:sticky;
  top:0;
  z-index:2000;
  width:100%;
  background:rgba(7,11,13,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  width:100%;
  max-width:none;
  margin:0;
  padding:12px var(--side-pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ width:36px; height:36px; object-fit:cover; border-radius:10px; }
.brand-name{ font-weight:800; letter-spacing:.3px; }
.brand-tagline{ color:var(--muted); font-size:12px; margin-top:2px; }

.nav{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.nav a{ color:var(--muted); font-weight:600; }
.nav a:hover{ color:var(--text); }

/* ======================================
   Buttons
   ====================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform:translateY(-1px); }

.btn-primary{
  background:linear-gradient(180deg, rgba(215,181,109,1), rgba(170,128,55,1));
  color:#0b0e10;
  border:0;
}
.btn-outline{ background:rgba(255,255,255,.04); }

/* ======================================
   HERO (base)
   ====================================== */
.hero{
  position:relative;
  width:100%;
  overflow:hidden;
  padding:0; /* slider handles height */
  border-bottom:1px solid var(--line);
}

.hero-fade{
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:80px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.25));
  pointer-events:none;
}

/* ======================================
   HERO SLIDER (single source of truth)
   - No overlay (per your request)
   - Slides animate "in from left"
   ====================================== */
.hero.hero-slider{
  min-height:74vh;
}

.hero-slides{
  position:relative;
  width:100%;
  min-height:74vh;
  overflow:hidden;
}

/* Slide-in animation system:
   - default = offscreen left
   - active = onscreen
   - leaving = offscreen right
*/
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;

  /* image pop */
  filter: brightness(1.08) contrast(1.02) saturate(1.06);

  transform: translateX(-100%);
  transition: transform .65s ease;
  will-change: transform;
}

.hero-slide.is-active{
  transform: translateX(0);
}

.hero-slide.is-leaving{
  transform: translateX(100%);
}

/* Overlay removed */
.hero-overlay{ display:none !important; }

.hero-inner{
  position:relative;
  z-index:2;
  padding-top: 56px; /* keep content away from sticky header */
  min-height:74vh;
  display:flex;
  align-items:center;
}

.hero-copy{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(8px);
  max-width: 640px;
}

.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:800;
  letter-spacing:.5px;
  font-size:12px;
}

.hero h1{
  font-size:46px;
  line-height:1.05;
  margin:14px 0 12px;
  text-shadow:0 8px 30px rgba(0,0,0,.55);
}
.lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
  max-width:560px;
  text-shadow:0 8px 30px rgba(0,0,0,.55);
}
.hero-actions{ display:flex; gap:12px; margin-top:16px; flex-wrap:wrap; }
.hero-notes{
  display:flex;
  gap:14px;
  margin-top:16px;
  color:var(--muted);
  flex-wrap:wrap;
  font-weight:600;
  font-size:13px;
  text-shadow:0 8px 30px rgba(0,0,0,.55);
}

/* Slider nav buttons */
.hero-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:3;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  line-height:40px;
  cursor:pointer;
}
.hero-prev{ left:16px; }
.hero-next{ right:16px; }

.hero-dots{
  position:absolute;
  left:0; right:0;
  bottom:16px;
  z-index:3;
  display:flex;
  gap:8px;
  justify-content:center;
}
.hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  cursor:pointer;
}
.hero-dot.is-active{ background:rgba(255,255,255,.75); }

/* ======================================
   Sections
   ====================================== */
.section{ padding:52px 0; }

.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head h2{ margin:0 0 6px; font-size:28px; }
.section-head p{ margin:0; color:var(--muted); max-width:750px; }

/* ======================================
   Featured
   ====================================== */
.featured{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow);
}
.card img{ width:100%; height:230px; object-fit:cover; }
.logo-card{ object-fit:contain; background:#0b0f12; padding:18px; }
.card-body{ padding:14px; }
.card-body h3{ margin:0 0 6px; }
.card-body p{ margin:0 0 12px; color:var(--muted); line-height:1.5; }

/* ======================================
   About
   ====================================== */
.about{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.bullets{ margin:14px 0 0; padding-left:18px; color:var(--muted); line-height:1.7; }
.about-img img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

/* ======================================
   Skeleton placeholders
   ====================================== */
.product-grid-skeleton{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:16px;
}
.skeleton{
  height:240px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
}
.skeleton:after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  height:100%;
  width:40%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer{ to{ left:120%; } }

/* ======================================
   Image Hover + Lightbox
   ====================================== */
.media-grid img,
.card img,
.about-img img{
  cursor:zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.media-grid img:hover,
.card img:hover,
.about-img img:hover{
  transform:scale(1.03);
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}

.img-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
}
.img-lightbox.active{ display:flex; }
.img-lightbox img{
  max-width:90vw;
  max-height:90vh;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.8);
}
.img-lightbox-close{
  position:absolute;
  top:20px;
  right:26px;
  font-size:42px;
  font-weight:bold;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

.sr-only{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ======================================
   Footer
   ====================================== */
.footer{
  width:100%;
  border-top:1px solid var(--line);
  padding:22px 0;
  background:rgba(7,11,13,.55);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-left{ display:flex; align-items:center; gap:10px; }
.footer-left img{
  width:38px; height:38px;
  border-radius:10px;
  border:1px solid var(--line);
  object-fit:cover;
}
.footer-title{ font-weight:900; }
.footer-sub{ color:var(--muted); font-size:12px; }
.footer-right{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.muted{ color:var(--muted); font-weight:700; font-size:12px; }

/* Footer Social icons */
.footer-social{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.footer-social .social-btn{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.footer-social .social-btn svg,
.footer-social .social-btn svg *{
  fill: currentColor !important;
  stroke: currentColor !important;
}
.footer-social .social-btn:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(215,181,109,.55);
  color: var(--gold);
}

/* ======================================
   Reviews Button + Drawer
   - Button is a right-edge TAB (always visible)
   ====================================== */
.reviews-fab{
  position: fixed;
  z-index: 999999;         /* above everything */
  top: 50%;
  right: 0;

  /* Rotate into a vertical tab that sits on the edge */
  transform: translate(35%, -50%) rotate(-90deg);
  transform-origin: right center;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .6px;

  background: linear-gradient(135deg, #ffd46b, #ff6bd6);
  color: #081013;

  border: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 16px 50px rgba(0,0,0,.55);
  cursor: pointer;

  /* makes it "pop" even on bright images */
  outline: 2px solid rgba(255,255,255,.20);
}

.reviews-fab:hover{
  filter: brightness(1.05);
  transform: translate(35%, -50%) rotate(-90deg) translateX(-2px);
  
}

@media (max-width: 700px){
  .reviews-fab{
    top:auto;
    bottom:18px;
    right:14px;
    transform:none;
    border-radius:999px;
    outline:none;
  }
}

.reviews-drawer{
  position:fixed;
  inset:0;
  z-index: 999998;
  pointer-events:none;
  opacity:0;
  transition: opacity .25s ease;
}
.reviews-drawer.is-open{
  pointer-events:auto;
  opacity:1;
}
.reviews-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.reviews-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 92vw);
  background: rgba(10,16,19,.96);
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 60px rgba(0,0,0,.60);
  transform: translateX(16px);
  transition: transform .25s ease;
  padding: 18px 18px 22px;
  overflow:auto;
}
.reviews-drawer.is-open .reviews-panel{ transform: translateX(0); }

.reviews-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.reviews-title{ font-size:20px; font-weight:800; }
.reviews-sub{ color: rgba(233,240,242,.70); font-size:13px; margin-top:2px; }
.reviews-close{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}
.reviews-body{ padding-top:14px; display:grid; gap:14px; }
.reviews-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:14px;
}
.reviews-stars{ letter-spacing:2px; font-weight:800; }
.reviews-text{ margin-top:8px; line-height:1.35; color: rgba(233,240,242,.92); }
.reviews-meta{ margin-top:10px; color: rgba(233,240,242,.60); font-size:13px; }
.reviews-navrow{ display:flex; gap:10px; margin-top:12px; }

.reviews-form{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
}
.reviews-form-title{ font-weight:800; margin-bottom:10px; }
.form-status{ margin-top:10px; font-size:13px; }
.reviews-note{ margin-top:8px; font-size:12px; color: rgba(233,240,242,.60); }

.form-control{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:#e9f0f2;
  padding:10px 12px;
  outline:none;
}
.form-label{ display:block; font-size:13px; color: rgba(233,240,242,.75); margin-top:6px; }

/* ======================================
   Responsive
   ====================================== */
@media (max-width: 980px){
  :root{ --side-pad: 16px; }
  .featured{ grid-template-columns:1fr; }
  .product-grid-skeleton{ grid-template-columns:repeat(2,1fr); }
  .hero h1{ font-size:38px; }
}

/* ===== Reviews button (NO rotation) ===== */
.reviews-fab{
  position: fixed !important;
  z-index: 999999 !important;

  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 14px 18px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: .4px !important;

  background: linear-gradient(135deg, #ffd46b, #ff6bd6) !important;
  color: #081013 !important;

  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 50px rgba(0,0,0,.55) !important;

  cursor: pointer !important;
}

.reviews-fab:hover{
  filter: brightness(1.05);
  transform: translateY(-50%) translateX(-2px) !important;
}

@keyframes softPulse {
  0%, 90%, 100% { box-shadow: 0 16px 50px rgba(0,0,0,.55); }
  95% { box-shadow: 0 0 0 10px rgba(255,212,107,.18); }
}

.reviews-fab{
  animation: softPulse 6s infinite;
}

/* ============================
   Hero Category Strip
   ============================ */

.hero-category-strip{
  width:100%;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    rgba(7,11,13,.65);
}

.hero-category-inner{
  padding:18px 0;
  text-align:center;
}

.hero-category-title{
  font-weight:900;
  letter-spacing:1px;
  font-size:15px;
  margin-bottom:8px;
  color:var(--text);
}

.hero-category-list{
  font-weight:700;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.6px;
  line-height:1.6;
}

.hero-category-list span{
  margin:0 6px;
  color:rgba(255,255,255,.35);
}

/* Mobile tweaks */
@media (max-width:700px){
  .hero-category-title{
    font-size:14px;
  }
  .hero-category-list{
    font-size:12px;
    line-height:1.8;
  }
}

/* ============================
   Featured Products - Vertical Strip
   ============================ */

.featured-strip{
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7,11,13,.35);
}

.featured-strip-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.featured-strip-head h2{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
}

.featured-strip-head p{
  margin:0;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}

/* Vertical list container */
.featured-strip-list{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Make it a “strip” with internal scroll if you want */
.featured-strip-list{
  max-height: 520px;
  overflow-y: auto;
}

/* Each item row */
.fp-row{
  display:flex;
  gap:14px;
  align-items:center;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.fp-row:last-child{ border-bottom:0; }

.fp-img{
  width: 92px;
  height: 92px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  object-fit: cover;
  flex: 0 0 auto;
}

.fp-main{
  min-width: 0;
  flex: 1 1 auto;
}

.fp-title{
  font-weight: 900;
  margin: 0 0 4px;
  line-height: 1.2;
}

.fp-sub{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}

.fp-price{
  margin-top: 8px;
  font-weight: 900;
  color: var(--gold);
}

.fp-actions{
  flex: 0 0 auto;
  display:flex;
  gap:10px;
}

/* Tiny skeleton */
.featured-strip-skel{ padding: 14px; }
.skel-line{
  height: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
  position: relative;
  overflow:hidden;
}
.skel-line:after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  height:100%;
  width:40%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  animation: shimmer 1.2s infinite;
}

/* ============================
   About section – YouTube video background
   ============================ */

.about-video-section{
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

/* Background video container */
.about-video-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* YouTube Shorts are vertical (9:16) — force cover */
.about-video-bg iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.35);
  width: 100vw;
  height: 177.78vw;       /* 16/9 math reversed for vertical video */

  min-width: 56.25vh;     /* keep cover */
  min-height: 100vh;

  border: 0;
}

/* Content layer */
.about-video-content{
  position: relative;
  z-index: 2;
}

/* Readability glass panel */
.about-video-content > div{
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px;
  max-width: 720px;
}

/* Optional subtle vignette (not dark) */
.about-video-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.10), rgba(0,0,0,.45));
  z-index:1;
  pointer-events:none;
}

/* Mobile tuning */
@media (max-width: 800px){
  .about-video-section{
    min-height: auto;
    padding: 48px 0;
  }

  .about-video-bg iframe{
    transform: translate(-50%, -50%) scale(1.6);
  }

  .about-video-content > div{
    padding: 18px;
  }
}

/* About video: center horizontally, bias to TOP */
.about-video-bg iframe{
  position:absolute;
  left:50%;
  top:10%;                         /* anchor to the top */
  transform: translateX(-50%) scale(1.35);  /* no vertical translate */

  width: 100vw;
  height: 177.78vw;              /* keeps Shorts aspect behavior */

  min-width: 56.25vh;
  min-height: 100%;              /* fill the section height */

  border:0;
}





