/* =========================
   styles.css (CLEAN + SINGLE SOURCE OF TRUTH)
   ========================= */
:root{
  --white:#ffffff;
  --black:#0f172a;
  --gray:#64748b;
  --border:#e5e7eb;
  --soft:#f8fafc;
  --accent:#2563eb;
}

/* Reset */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--soft);
  color: var(--black);
}

/* Header */
.header-wrapper{
  position:sticky;
  top:0;
  z-index:50;
  background: var(--white);
  border-bottom:1px solid var(--border);
}
.header{
  max-width:1200px;
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--black);
}
.logo{
  width:34px;
  height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.brand-name{
  font-size:18px;
  font-weight:800;
  letter-spacing:.3px;
}
.nav-links{
  display:flex;
  gap:20px;
}
.nav-links a{
  text-decoration:none;
  color:var(--gray);
  font-weight:600;
  font-size:14px;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition: width .2s ease;
}
.nav-links a:hover{ color:var(--black); }
.nav-links a:hover::after{ width:100%; }

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.search-box input{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--soft);
  outline:none;
  font-size:14px;
  min-width:220px;
}
.search-box input:focus{
  border-color: var(--accent);
  background: var(--white);
}

.icon-btn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--white);
  cursor:pointer;
  font-size:16px;
  display:grid;
  place-items:center;
  transition: background .15s ease, box-shadow .15s ease;
}
.icon-btn:hover{
  background: var(--soft);
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

.bag{ position:relative; }
.bag::after{
  content: attr(data-count);
  position:absolute;
  top:-6px;
  right:-6px;
  width:18px;
  height:18px;
  border-radius:999px;
  background: var(--accent);
  color:var(--white);
  font-size:11px;
  font-weight:700;
  display:grid;
  place-items:center;
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .search-box{ display:none; }
}

/* =========================
   HERO VIDEO
========================= */
.video-hero{ width:100%; background:#fff; }
.video-wrapper{
  position:relative;
  width:100%;
  height:520px;
  overflow:hidden;
  isolation:isolate;
}
.video-wrapper video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.video-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(rgba(15,23,42,.45), rgba(15,23,42,.25));
}
.video-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}
.video-overlay h1{
  margin:0;
  font-size:42px;
  font-weight:900;
  color:#ececec;
  letter-spacing:.4px;
  max-width:760px;
  line-height:1.12;
  text-shadow:0 10px 28px rgba(0,0,0,.20);
}
@media (max-width:768px){
  .video-wrapper{ height:360px; }
  .video-overlay h1{ font-size:28px; }
}

/* =========================
   SECTIONS
========================= */
.section-title{
  margin:0;
  font-size:28px;
  font-weight:800;
  color:#0f172a;
}
.section-title--center{
  text-align:center;
  margin-bottom:40px;
}

/* =========================
   CATEGORIES
========================= */
.categories{ background:#fff; padding:80px 20px; }
.categories-container{ max-width:1200px; margin:0 auto; }
.category-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:28px;
}
@media (max-width: 900px){
  .category-grid{ grid-template-columns:1fr; }
}

.brand-video{
  position:relative;
  height:420px;
  border-radius:22px;
  overflow:hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.brand-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
}
.brand-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(15,23,42,.55), rgba(15,23,42,.35));
}
.brand-video:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}
.brand-video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#ffffff;
  z-index:2;
}
.brand-video-overlay h2{
  margin:0;
  font-size:34px;
  font-weight:900;
  letter-spacing:.4px;
}
.brand-video-overlay p{
  margin-top:8px;
  font-size:14px;
  font-weight:700;
  opacity:.9;
}
@media (max-width: 700px){
  .brand-video{ height:260px; }
  .brand-video-overlay h2{ font-size:26px; }
}

/* =========================
   POPULAR PRODUCTS
========================= */
.popular{ background:#fff; padding:90px 20px; }
.popular-container{ max-width:1200px; margin:0 auto; }
.popular-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.swipe-hint{
  font-size:13px;
  font-weight:700;
  color:#64748b;
  display:none;
}
.popular-track{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:24px;
}
.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor:pointer;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0,0,0,.12);
}
.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  pointer-events:none;
}
.product-info{ padding:16px; }
.product-info h3{
  margin:0 0 4px;
  font-size:15px;
  font-weight:800;
  color:#0f172a;
}
.product-info .product-brand{
  margin:0;
  font-size:13px;
  color:#64748b;
}
.product-info .price{
  display:block;
  margin-top:10px;
  font-weight:900;
  font-size:15px;
  color:#2563eb;
}
@media (max-width: 1100px){
  .popular-track{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px){
  .swipe-hint{display:inline;}
  .popular-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding: 6px 4px 14px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .popular-track::-webkit-scrollbar{height:8px;}
  .popular-track::-webkit-scrollbar-thumb{
    background: rgba(15,23,42,.12);
    border-radius:999px;
  }
  .product-card{
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: start;
  }
  .product-card img{ height:200px; }
}

/* =========================
   INFO MARQUEE
========================= */
.info-marquee{
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
}
.info-marquee__viewport{
  overflow:hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.info-marquee__track{
  display:flex;
  width:max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: marqueeRTL 14s linear infinite;
}
.info-marquee__content{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 18px;
}
.info-pill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  white-space:nowrap;
  color:#0f172a;
  font-size:15px;
  font-weight:700;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.info-pill span{ color:#64748b; font-weight:600; }
@keyframes marqueeRTL{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}
@media (prefers-reduced-motion: reduce){
  .info-marquee__track{ animation:none; }
  .info-marquee__viewport{ -webkit-mask-image:none; mask-image:none; }
}

/* =========================
   BRAND SHOWCASE
========================= */
.brand-showcase{ background:#ffffff; padding:90px 20px; }
.brand-showcase--alt{
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
}
.brand-container{ max-width:1200px; margin:0 auto; }
.brand-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.brand-title{
  margin:0;
  font-size:28px;
  font-weight:900;
  color:#0f172a;
}
.brand-sub{
  margin:0;
  color:#64748b;
  font-weight:600;
  font-size:13px;
}
.brand-track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
}
.watch-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.watch-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0,0,0,.12);
}
.watch-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  pointer-events:none;
}
.watch-info{ padding:16px; }
.watch-info h3{
  margin:0 0 4px;
  font-size:15px;
  font-weight:800;
  color:#0f172a;
}
.watch-info .meta{
  margin:0;
  color:#64748b;
  font-size:13px;
  font-weight:600;
}
.watch-info .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
}
.watch-info .price{ font-weight:900; color:#2563eb; }
@media (max-width: 1100px){
  .brand-track{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px){
  .brand-showcase{ padding:60px 16px; }
  .brand-head{ flex-direction:column; align-items:flex-start; }
  .brand-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding: 6px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .watch-card{
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: start;
  }
  .watch-card img{ height:210px; }
}

/* =========================
   REVIEWS
========================= */
.reviews{
  background:#ffffff;
  padding:90px 20px;
  border-top:1px solid #e5e7eb;
}
.reviews-container{ max-width:1200px; margin:0 auto; }
.reviews-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:22px;
}
.reviews-title{
  margin:0;
  font-size:28px;
  font-weight:900;
  color:#0f172a;
}
.reviews-sub{
  margin:0;
  color:#64748b;
  font-weight:600;
  font-size:13px;
}
.reviews-layout{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:20px;
  align-items:start;
}
.reviews-summary{
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  background:#ffffff;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.summary-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.summary-label{ color:#64748b; font-size:12px; font-weight:700; }
.summary-big{
  font-size:44px;
  font-weight:1000;
  color:#0f172a;
  line-height:1;
  margin-top:6px;
}
.summary-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  color:#0f172a;
  font-size:12px;
  font-weight:800;
}
.summary-line{
  height:1px;
  background:#e5e7eb;
  margin:16px 0;
}
.summary-rating{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:8px;
}
.summary-score{ font-weight:900; color:#0f172a; }
.summary-note{
  margin-top:12px;
  color:#475569;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
}
.review-btn{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#0f172a;
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.review-btn:hover{ transform: translateY(-1px); opacity:.95; }
.reviews-list{ display:grid; gap:14px; }
.review-card{
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#ffffff;
  padding:16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.reviewer{ display:flex; gap:12px; align-items:center; }
.avatar{
  width:48px;
  height:48px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  background:#f8fafc;
  flex:0 0 auto;
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.reviewer-meta{ display:grid; gap:2px; }
.reviewer-name{ font-weight:900; color:#0f172a; }
.reviewer-stars{ color:#2563eb; font-weight:900; letter-spacing:1px; font-size:12px; line-height:1; }
.ordered{ color:#64748b; font-size:12px; font-weight:700; }
.review-text{
  margin:12px 0 0;
  color:#475569;
  font-size:13px;
  font-weight:600;
  line-height:1.6;
}

/* =========================
   ABOUT
========================= */
.about-img{
  position:relative;
  background-image: url("https://images.unsplash.com/photo-1522312346375-d1a52e2b99b3?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding:120px 20px;
}
.about-img-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(15,23,42,.75), rgba(15,23,42,.65));
}
.about-img-container{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:center;
}
.about-img-card{
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-radius:22px;
  padding:34px;
  max-width:820px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.about-title{ margin:0; font-size:30px; font-weight:900; color:#0f172a; }
.about-sub{ margin:6px 0 18px; color:#64748b; font-size:13px; font-weight:700; }
.about-text{
  margin:0 0 16px;
  color:#475569;
  font-size:14px;
  font-weight:600;
  line-height:1.75;
}
.about-text strong{ color:#0f172a; font-weight:900; }
.about-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.about-highlights span{
  padding:10px 14px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  font-size:12px;
  font-weight:800;
  color:#0f172a;
}
@media (max-width: 900px){
  .about-img{ background-attachment: scroll; padding:80px 16px; }
  .about-img-card{ padding:24px; }
  .about-title{ font-size:26px; }
}

/* =========================
   FOOTER
========================= */
.footer{
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  padding:40px 20px;
}
.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}
.footer-policies{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-policies a{
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  color:#475569;
  position:relative;
}
.footer-policies a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#2563eb;
  transition: width .2s ease;
}
.footer-policies a:hover{ color:#0f172a; }
.footer-policies a:hover::after{ width:100%; }
.footer-bottom{
  font-size:12px;
  font-weight:600;
  color:#64748b;
  text-align:center;
}
@media (max-width: 600px){
  .footer{ padding:32px 16px; }
  .footer-policies{ gap:14px; }
}

/* =========================
   MOBILE MENU
========================= */
.menu-overlay{
  position:fixed;
  inset:0;
  background: rgba(15,23,42,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
  z-index:80;
}
.menu-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 88vw);
  background:#ffffff;
  border-left:1px solid #e5e7eb;
  transform: translateX(105%);
  transition: transform .25s ease;
  z-index:90;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
}
.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid #e5e7eb;
}
.menu-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:#0f172a;
}
.menu-logo{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.menu-close{
  width:40px;height:40px;border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-size:16px;
}
.menu-links{
  display:flex;
  flex-direction:column;
  padding:12px 10px;
}
.menu-links a{
  text-decoration:none;
  color:#0f172a;
  font-weight:800;
  padding:14px 14px;
  border-radius:14px;
}
.menu-links a:hover{ background:#f8fafc; }
.menu-actions{
  margin-top:auto;
  padding:14px;
  display:grid;
  gap:10px;
  border-top:1px solid #e5e7eb;
}
.menu-btn{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#0f172a;
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, opacity .15s ease;
}
.menu-btn:hover{ transform: translateY(-1px); opacity:.95; }
.menu-btn--ghost{ background:#ffffff; color:#0f172a; }

/* Let menu bag show badge */
.menu-btn.bag{ position:relative; }

body.menu-open .menu-overlay{ opacity:1; pointer-events:auto; }
body.menu-open .menu-drawer{ transform: translateX(0%); }
body.menu-open{ overflow:hidden; }

@media (min-width: 861px){
  .menu-overlay, .menu-drawer{ display:none; }
}

/* =========================
   PRODUCT PAGE
========================= */
.product-page{
  max-width:1200px;
  margin:80px auto;
  padding:24px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  background:#fff;
  border-radius:24px;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}
.gallery{ display:flex; flex-direction:column; gap:14px; }
.gallery-main{ width:100%; border-radius:20px; overflow:hidden; }
.gallery-main img{ width:100%; height:420px; object-fit:cover; display:block; }
.gallery-thumbs{ display:flex; gap:12px; flex-wrap:wrap; }
.gallery-thumbs img{
  width:90px;height:70px;object-fit:cover;border-radius:12px;cursor:pointer;
  opacity:.7;border:2px solid transparent;transition:.2s;
}
.gallery-thumbs img.active{ opacity:1; border-color:#2563eb; }

.product-details h1{ margin:0 0 10px; font-size:34px; font-weight:900; }
.product-details .brand{ color:#64748b; font-weight:700; margin-bottom:16px; }
.product-details .price{ font-size:26px; font-weight:900; color:#2563eb; margin-bottom:20px; }
.product-details p{ font-size:15px; line-height:1.7; color:#475569; }

.buy-btn{
  margin-top:24px; padding:14px 18px; border-radius:14px; border:none;
  background:#0f172a; color:#fff; font-weight:900; cursor:pointer; width:100%;
}
@media(max-width:900px){
  .product-page{ grid-template-columns:1fr; }
  .gallery-main img{ height:320px; }
}

.product-extra{
  max-width:1200px;
  margin:40px auto 80px;
  padding:0 24px;
}
.extra-block{
  background:#ffffff;
  border-radius:20px;
  padding:28px;
  margin-bottom:22px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.extra-block h3{
  margin:0 0 14px;
  font-size:22px;
  font-weight:900;
  color:#0f172a;
}
.extra-block p{
  margin:0 0 10px;
  font-size:15px;
  font-weight:600;
  color:#475569;
  line-height:1.7;
}
.extra-block p:last-child{ margin-bottom:0; }

/* =========================
   CART DRAWER
========================= */
.cart-overlay{
  position:fixed;
  inset:0;
  background: rgba(15,23,42,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
  z-index:95;
}
.cart-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 92vw);
  background:#ffffff;
  border-left:1px solid #e5e7eb;
  transform: translateX(105%);
  transition: transform .25s ease;
  z-index:100;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
}
body.cart-open .cart-overlay{ opacity:1; pointer-events:auto; }
body.cart-open .cart-drawer{ transform: translateX(0%); }
body.cart-open{ overflow:hidden; }

.cart-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid #e5e7eb;
}
.cart-title{ font-weight:900; color:#0f172a; font-size:16px; }
.cart-close{
  width:40px;height:40px;border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-size:16px;
}
.cart-body{
  padding:14px;
  display:grid;
  gap:12px;
  overflow:auto;
}
.cart-item{
  display:grid;
  grid-template-columns: 64px 1fr auto;
  gap:12px;
  align-items:center;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:10px;
  background:#fff;
}
.cart-item img{
  width:64px;height:64px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid #e5e7eb;
}
.cart-item h4{
  margin:0;
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}
.cart-item p{
  margin:4px 0 0;
  font-size:12px;
  color:#64748b;
  font-weight:700;
}
.cart-right{
  display:grid;
  gap:8px;
  justify-items:end;
}
.cart-qty{ display:flex; align-items:center; gap:6px; }
.qty-btn{
  width:28px;height:28px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.qty-num{
  min-width:18px;
  text-align:center;
  font-weight:900;
  color:#0f172a;
  font-size:13px;
}
.remove-btn{
  border:none;
  background:transparent;
  color:#ef4444;
  font-weight:900;
  cursor:pointer;
  font-size:12px;
}
.cart-footer{
  margin-top:auto;
  padding:14px;
  border-top:1px solid #e5e7eb;
  display:grid;
  gap:10px;
}
.cart-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:900;
  color:#0f172a;
}
.cart-btn{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#0f172a;
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.cart-btn--ghost{
  background:#ffffff;
  color:#0f172a;
}

/* =========================
   TOAST
========================= */
.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#0f172a;
  color:#ffffff;
  padding:14px 16px;
  border-radius:16px;
  font-weight:900;
  font-size:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  transform: translateY(14px);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index:9999;
}
.toast.show{ opacity:1; transform: translateY(0); }

/* =========================
   SHIPPING BOX
========================= */
.shipping-box{
  border:1px solid #e5e7eb;
  background:#f8fafc;
  border-radius:18px;
  padding:18px 16px;
  display:grid;
  gap:10px;
  margin-top:10px;
}
.shipping-box--big{ padding:18px 16px; border-radius:18px; }
.shipping-title{ font-weight:1000; color:#0f172a; font-size:15px; }
.shipping-text{ font-weight:800; color:#475569; font-size:14px; line-height:1.5; }
.shipping-fee{ font-weight:1000; color:#0f172a; font-size:14px; }

/* =========================
   CHECKOUT MODAL (SINGLE TRUE VERSION)
========================= */
.checkout-modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:18px;
  background: rgba(15,23,42,.45);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index:200;
}

.checkout-modal.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* lock the page when checkout is open */
body.checkout-open{
  overflow:hidden;
  height:100%;
  touch-action:none;
}

/* panel scrolls, page doesn’t */
.checkout-panel{
  width: min(560px, 92vw);
  max-height: 86vh;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  position:relative;
  pointer-events:auto;
  background:#fff;
  border-radius:18px;
  padding:18px 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.checkout-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-size:16px;
  font-weight:900;
  z-index:5;
}

.checkout-form{
  display:grid;
  gap:12px;
  padding-top:10px;
}
.checkout-title{
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color:#0f172a;
}

.field{
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}
.field input,
.field select{
  width:100%;
  border:0;
  outline:0;
  padding:16px 14px;
  font-size:15px;
  font-weight:600;
  color:#0f172a;
  background:#fff;
}
.field input::placeholder{ color:#94a3b8; font-weight:600; }
.field input:focus,
.field select:focus{
  box-shadow: inset 0 0 0 2px rgba(37,99,235,.35);
}

.checkline{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  color:#0f172a;
  user-select:none;
}
.checkline input{ width:18px; height:18px; accent-color:#2563eb; }

.field.has-icon{ position:relative; }
.help-icon{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  color:#64748b;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:12px;
  background:#fff;
}

.checkout-submit{
  margin-top:10px;
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #0f172a;
  background:#0f172a;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.checkout-submit:hover{ opacity:.95; }

/* =========================
   PAYMENT UI
========================= */
.payment-title{
  margin:20px 0 10px;
  font-size:28px;
  font-weight:900;
}
.promo-label{
  font-size:15px;
  font-weight:700;
  margin-bottom:10px;
}
.promo-row{
  display:flex;
  gap:16px;
  align-items:center;
}
.promo-input{
  flex:1;
  height:56px;
  padding:0 16px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:18px;
  font-weight:700;
  outline:none;
}
.promo-input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 2px rgba(37,99,235,0.25);
}
.promo-btn{
  height:56px;
  padding:0 26px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#f3f4f6;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}
.promo-note{
  margin:10px 0 18px;
  font-size:13px;
  font-weight:700;
  color:#6b7280;
}
.payment-methods{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.pay-option{
  width:100%;
  min-height:70px;
  padding:16px 18px;
  border-radius:14px;
  border:2px solid #d1d5db;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
  font-weight:900;
}
.pay-logo{ width:34px; height:auto; object-fit:contain; }
.pay-option span{ flex:1; text-align:center; }

/* selected states */
.pay-option.selected.crypto{ border-color:#16a34a; }
.pay-option.selected.blocked{ border-color:#dc2626; }

@media(max-width:560px){
  .promo-row{ flex-direction:column; align-items:stretch; }
  .promo-btn{ width:100%; border-radius:14px; }
  .pay-option{ font-size:14px; }
}
/* =========================
   REVIEW IMAGES – PERFECT BOX GRID
   ========================= */

.review-images{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.review-images img{
  width: 100%;
  aspect-ratio: 1 / 1;          /* ✅ perfect square */
  object-fit: cover;            /* ✅ no stretching */
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.review-images img:hover{
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

/* Mobile optimization */
@media (max-width: 600px){
  .review-images{
    grid-template-columns: repeat(3, 1fr);
  }
}
.avatar{
  width:48px;
  height:48px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  background:#f8fafc;
  flex:0 0 auto;
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
/* =========================
   MOBILE EVENNESS FIX
   ========================= */
@media (max-width: 700px){

  /* GLOBAL PAGE PADDING */
  body{
    overflow-x: hidden;
  }

  .page,
  .popular,
  .categories,
  .brand-showcase,
  .reviews,
  .about-img,
  .footer{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* HERO */
  .video-wrapper{
    height: 320px;
  }

  /* PRODUCT CARDS (POPULAR + BRAND) */
  .popular-track,
  .brand-track{
    gap: 14px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .product-card,
  .watch-card{
    flex: 0 0 88%;
    max-width: 88%;
    margin: 0 auto;
  }

  /* PRODUCT CARD IMAGES */
  .product-card img,
  .watch-card img{
    height: 190px;
  }

  /* CATEGORY VIDEOS */
  .brand-video{
    height: 240px;
  }

  /* REVIEWS */
  .reviews-layout{
    grid-template-columns: 1fr;
  }

  .reviews-summary{
    width: 100%;
  }

  .review-card{
    width: 100%;
  }

  /* REMOVE UNEVEN GAPS IN REVIEW HEADER */
  .reviewer{
    gap: 6px;
  }

  /* PRODUCT PAGE */
  .product-page{
    margin: 40px auto;
    padding: 16px;
    gap: 24px;
    border-radius: 18px;
  }

  .gallery-main img{
    height: 300px;
  }

  /* CART DRAWER */
  .cart-drawer{
    width: 100%;
    max-width: 100%;
    border-left: none;
  }

  /* CHECKOUT MODAL */
  .checkout-panel{
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  /* PAYMENT OPTIONS */
  .pay-option{
    min-height: 64px;
    font-size: 14px;
    padding: 14px;
  }

  /* FOOTER */
  .footer-container{
    gap: 14px;
  }
}
/* =========================
   ✅ MOBILE TAP FIX: BAG BUTTON
   overlays must NOT block taps unless open
   ========================= */

/* overlays on = can catch taps */
body.menu-open .menu-overlay,
body.cart-open .cart-overlay,
.checkout-modal.show {
  pointer-events: auto !important;
}
/* =========================
   🔧 FINAL CHECKOUT TAP FIX
   ========================= */

/* Overlay only blocks when open */
.checkout-modal {
  pointer-events: none;
}

.checkout-modal.show {
  pointer-events: auto;
}

/* Panel + everything inside MUST be clickable */
.checkout-panel,
.checkout-panel * {
  pointer-events: auto;
  touch-action: manipulation;
}

/* Explicitly re-enable payment buttons (mobile Safari fix) */
.payment-methods,
.payment-methods *,
.pay-option,
.pay-option * {
  pointer-events: auto !important;
  touch-action: manipulation;
}

/* header must always be tappable above normal content */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999 !important;
}

/* bag button must receive taps */
#bagBtn,
#burgerBtn {
  position: relative;
  z-index: 10000 !important;
  pointer-events: auto !important;
  touch-action: manipulation;
}

/* drawers sit above overlays */
.menu-drawer { z-index: 10001 !important; }
.cart-drawer { z-index: 10002 !important; }
/* =========================
   ✅ FINAL DESKTOP+MOBILE CLICK FIX
   Overlays are DISPLAY:NONE unless opened
   Put at the VERY BOTTOM of styles.css
   ========================= */

/* HEADER always clickable */
.header-wrapper{
  position: sticky;
  top: 0;
  z-index: 9999 !important;
}
#bagBtn, #burgerBtn{
  position: relative;
  z-index: 10000 !important;
  pointer-events: auto !important;
}

/* ---------- MENU overlay/drawer ---------- */
.menu-overlay{
  display: none !important;     /* ✅ cannot block anything */
  opacity: 0;
  pointer-events: none;
}
body.menu-open .menu-overlay{
  display: block !important;
  opacity: 1;
  pointer-events: auto;
}
.menu-drawer{
  z-index: 10001 !important;
}

/* ---------- CART overlay/drawer ---------- */
.cart-overlay{
  display: none !important;     /* ✅ cannot block anything */
  opacity: 0;
  pointer-events: none;
}
body.cart-open .cart-overlay{
  display: block !important;
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer{
  z-index: 10002 !important;
}

/* ---------- CHECKOUT modal ---------- */
.checkout-modal{
  display: none !important;      /* ✅ cannot block anything */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
}
.checkout-modal.show{
  display: grid !important;      /* ✅ only exists when open */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.checkout-panel{
  position: relative;
  pointer-events: auto;
}
/* =========================
   ✅ CHECKOUT POPUP – FINAL UI FIX
   ========================= */

/* Overlay */
.checkout-modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(15,23,42,.55);
  z-index: 200;
}

/* Show modal */
.checkout-modal.show{
  display: grid;
}

/* Panel */
.checkout-panel{
  width: 100%;
  max-width: 620px;        /* PC width */
  max-height: 88vh;        /* prevent overflow */
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 24px;
  overflow-y: auto;        /* scroll INSIDE panel */
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
}

/* Mobile improvements */
@media (max-width: 600px){
  .checkout-panel{
    max-width: 100%;
    max-height: 92vh;
    border-radius: 18px;
    padding: 18px 16px 20px;
  }
}

/* Close button */
.checkout-close{
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}
/* Payment feedback */
.pay-option.blocked{
  border-color: #dc2626;
  opacity: 0.9;
}

.pay-option.crypto{
  border-color: #16a34a;
}
/* =========================
   ✅ PAYMENT UI CLEANUP
   ========================= */

/* Remove green crypto border */
/* Default crypto = gray */
.pay-option.crypto{
  border-color:#d1d5db;
}

/* When selected crypto = green */
.pay-option.selected.crypto{
  border-color:#16a34a;
}


/* Blocked methods (red border stays) */
.pay-option.blocked {
  border-color: #dc2626 !important;
}

/* Disabled place order button */
.checkout-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
/* =========================
   ✅ CHECKOUT Z-INDEX FIX
   ========================= */

/* Checkout must sit ABOVE header */
.checkout-modal {
  z-index: 20000 !important;
}

/* Panel inherits modal stacking */
.checkout-panel {
  position: relative;
  z-index: 20001;
}
.header-wrapper {
  z-index: 1000 !important;
}
/* =========================
   MOVING INFO LINE (MARQUEE)
========================= */
.info-marquee{
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
}

.info-marquee__viewport{
  overflow:hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.info-marquee__track{
  display:flex;
  width:max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: marqueeRTL 14s linear infinite;
}

.info-marquee__content{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 18px;
}

.info-pill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  white-space:nowrap;
  color:#0f172a;
  font-size:15px;
  font-weight:800;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}

.info-pill span{
  color:#64748b;
  font-weight:600;
}

@keyframes marqueeRTL{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}

@media (prefers-reduced-motion: reduce){
  .info-marquee__track{ animation:none; }
  .info-marquee__viewport{
    -webkit-mask-image:none;
    mask-image:none;
  }
}

/* =========================
   BRAND SHOWCASE (JACOB + RM)
========================= */
.brand-showcase{
  background:#ffffff;
  padding:90px 20px;
}

.brand-showcase--alt{
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
}

.brand-container{
  max-width:1200px;
  margin:0 auto;
}

.brand-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.brand-title{
  margin:0;
  font-size:28px;
  font-weight:900;
  color:#0f172a;
}

.brand-sub{
  margin:0;
  color:#64748b;
  font-weight:700;
  font-size:13px;
}

/* Desktop grid */
.brand-track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
}

/* Card */
.watch-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease;
  cursor:pointer;
}

.watch-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0,0,0,.12);
}

.watch-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  pointer-events:none;
}

.watch-info{
  padding:16px;
}

.watch-info h3{
  margin:0 0 4px;
  font-size:15px;
  font-weight:900;
  color:#0f172a;
}

.watch-info .meta{
  margin:0;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.watch-info .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
}

.watch-info .price{
  font-weight:900;
  color:#2563eb;
}

/* Responsive */
@media (max-width: 1100px){
  .brand-track{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .brand-showcase{
    padding:60px 16px;
  }

  .brand-head{
    flex-direction:column;
    align-items:flex-start;
  }

  /* Turn into swipe row on mobile */
  .brand-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding: 6px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .brand-track::-webkit-scrollbar{ height:8px; }
  .brand-track::-webkit-scrollbar-thumb{
    background: rgba(15,23,42,.12);
    border-radius:999px;
  }

  .watch-card{
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: start;
  }

  .watch-card img{ height:210px; }
}
/* =========================
   ✅ PRODUCT DESCRIPTION SECTION
========================= */
.desc-section{
  margin-top: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
}

.desc-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.desc-text{
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: #475569;
  line-height: 1.7;
}

.desc-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 650;
}

.desc-list strong{
  font-weight: 900;
  color: #0f172a;
}

.desc-note{
  margin-top: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}
