:root{
  --black:#000000;
  --gold:#C6A75E;
  --white:#F5F5F3;
  --accent:#C6A75E;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--primary);
  color:var(--text-light);
  opacity:0;
  transition:opacity 0.4s ease;
  animation:fadePage 0.6s ease forwards;

  display:flex;
  flex-direction:column;
  min-height:100vh;
}



body.fade-in{
  opacity:1;
}

body.fade-out{
  opacity:0;
}


/* ==========================
   STICKY HEADER
========================== */
.top-header{
  position:fixed;   /* 🔥 CHANGE THIS */
  top:0;
  left:0;
  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  height:70px;
  padding:0 18px;

  background:#000;
  z-index:9999;

  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* center logo */
.brand-block{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}


/* cart count */
.cart-count{
  position:absolute;
  top:-6px;
  right:-8px;
  background:var(--accent);
  color:white;
  font-size:10px;
  font-weight:600;
  padding:3px 6px;
  border-radius:20px;
}

/* ==========================
   PRODUCT IMAGE
========================== */

.product-image{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#000;
}

.product-image img,
.product-image video{
  width:100%;
  height:100;
  object-fit:cover;
  touch-action: pan-y;
  transition:opacity 0.5s ease, transform 0.6s ease;
  will-change:transform, opacity;
}

.product-image.fade-out img,
.product-image.fade-out video{
  opacity:0;
  transform:scale(0.98);
}

.product-image.fade-in img,
.product-image.fade-in video{
  opacity:1;
  transform:scale(1);
}

/* ==========================
   PRODUCT INFO
========================== */

.product-info{
  background:linear-gradient(to bottom,#000,#0b0b0b 40%,#0e0e0e);
  padding:22px;
  margin-top:0
}

.product-name{
  font-family:"Cinzel", serif;
  font-size:26px;
  font-weight:800;
  letter-spacing:3px;
  line-height:1.3;
  margin-bottom:10px;
}

.product-name::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background:var(--accent);
  margin-top:14px;
}

.product-price{
  text-shadow:0 0 10px rgba(198,167,94,0.3);
  font-size:20px;
  font-weight:800;
  color:var(--accent);
  margin-bottom:18px;
}

.features{
  margin-top:10px;
  padding:22px;
  background:#0f0f0f;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.05);
}

.features li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  list-style:none;
  color:#ddd;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,0.04);
}

.features li:last-child{
  border-bottom:none;
}

.features li::before{
  content:"✓";
  min-width:22px;
  height:22px;
  border-radius:50%;
   border:1.5px solid rgba(198,167,94,0.8);
  color:rgba(198,167,94,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
}

.features,
/* SPEC SECTION */

/* FULL BOX CLICKABLE */

.spec-section{
margin-top:40px;
background:#0c0c0c;
border:1px solid rgba(255,255,255,0.06);
border-radius:14px;
overflow:hidden;

box-shadow:
inset 0 0 30px rgba(255,255,255,0.03),
0 10px 40px rgba(0,0,0,0.7);

padding:20px 24px;

cursor:pointer;   /* ← पूर्ण box clickable feel */
transition:0.3s;
}

/* hover effect so user understands it’s clickable */

.spec-section:hover{
border-color:#C8A34A;
box-shadow:
0 0 15px rgba(200,163,74,0.25),
0 10px 40px rgba(0,0,0,0.7);
}


/* HEADER */

.spec-head{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

/* ARROW */

.arrow{
font-size:20px;
color:#C8A34A;
transition:0.35s;
}

/* OPEN STATE */

.spec-section.active .arrow{
transform:rotate(180deg);
}

/* hidden specs */

.spec-list{
display:none;
}

.spec-section.active .spec-list{
display:block;
}
.spec-section{
margin-top:40px;
background:#0c0c0c;
border:1px solid rgba(255,255,255,0.06);
border-radius:14px;
overflow:hidden;

box-shadow:
inset 0 0 30px rgba(255,255,255,0.03),
0 10px 40px rgba(0,0,0,0.7);

padding:20px 24px;

transition:0.3s;
}

/* HEADER CLICK AREA */

.spec-head{

display:flex;
justify-content:space-between;
align-items:center;

cursor:pointer;

padding:10px 0;


}

/* CLICK HINT */

.spec-head::after{

content:"Tap to view";

font-size:10px;

letter-spacing:2px;

color:#C8A34A;

opacity:0.7;

position:absolute;

bottom:-10px;

left:0;

}

/* TITLE */

.spec-head h3{

font-size:12px;
letter-spacing:5px;
opacity:0.9;
color:#fff;
margin-bottom:6px;

}

/* ARROW */

.arrow{

font-size:20px;
color:#C8A34A;
transition:0.4s;

}

/* hidden specs */

.spec-list{
display:none;
}

/* open state */

.spec-section.active .spec-list{
display:block;
}

.spec-section.active .arrow{
transform:rotate(180deg);
}

/* SPEC ROW */

.spec-row{

display:flex;
justify-content:space-between;

padding:18px 10px;

border-bottom:1px solid #1a1a1a;

transition:0.25s;

}

.spec-row .left{

color:#9a9a9a;
letter-spacing:2px;
font-size:14px;

}

.spec-row .right{

color:#fff;
font-size:18px;
font-family:'Playfair Display',serif;

}

/* HOVER EFFECT */

.spec-row:hover{

background:rgba(255,255,255,0.02);

}

.spec-row:hover .right{

color:#C8A34A;

}

/* HEADER HOVER */

.spec-head:hover{

opacity:1;

}

.spec-head:hover .arrow{

transform:translateX(3px);

}



/* ==========================
   ZOOM MODAL
========================== */

/* ==========================
   ZOOM MODAL (PREMIUM)
========================== */
/* ==========================
   ZOOM MODAL (FINAL FIX)
========================== */

.zoom-modal{
  position: fixed;
  inset: 0;
  width:100vw;
  height:100vh;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity:0;
  visibility:hidden;
  transition:opacity 0.35s ease, visibility 0.35s ease;
}

.zoom-modal.active{
  opacity:1;
  visibility:visible;
}

#zoomedImage,
#zoomedVideo{
  width:100vw;
  height:100vh;
  max-width:100vw;
  max-height:100vh;
  object-fit:contain;

  touch-action:none;
user-select:none;
-webkit-user-drag:none;
}

/* Image & Video Animation */
#zoomedImage,
#zoomedVideo{

  transform:scale(0.92);
  transition:transform 0.35s ease;
}

.zoom-modal.active #zoomedImage,
.zoom-modal.active #zoomedVideo{
  transform:scale(1);
}

/* Navigation Buttons */
.zoom-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:auto;              /* ❌ fixed width काढ */
  height:auto;             /* ❌ fixed height काढ */

  padding:6px 10px;        /* 🔥 small clickable area */
  font-size:18px;          /* 🔥 icon छोटा */

  background:transparent;
  border:none;
  color:#C8A34A;

  opacity:0.7;
  cursor:pointer;
  transition:0.2s ease;
}
/* Close Button */
.close-zoom{
  position:absolute;
  top:20px;
  right:25px;
  font-size:30px;
  color:#fff;
  cursor:pointer;
  transition:0.3s ease;
}

.close-zoom:hover{
  color:var(--accent);
}



/* ==========================
   MOBILE
========================== */

@media(max-width:600px){

  .product-image img,
  .product-image video{
    height:320px;
  }

  .product-name{
  font-family:"Cinzel", serif;
  font-size:24px;
  font-weight:700;
  letter-spacing:2px;
  line-height:1.35;
  text-transform:capitalize;
  margin-bottom:14px;
}

.product-name::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  background:var(--accent);
  margin-top:10px;
}

.product-price{
   font-size:26px;
  letter-spacing:1px;
  font-weight:800;
  color:var(--accent);
  margin:14px 0 20px;
  text-shadow:0 0 18px rgba(200,163,74,0.4);
}
  
}





.product-info{
  background:linear-gradient(to bottom,#000,#0f0f0f);
  margin-top:22;
   padding:24px 20px 30px;
  border-top:none;
}
/* ==========================
   BUTTON CONTAINER
========================== */

.product-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:25px 0;
}

/* ==========================
   SMALL BUTTON
========================== */
.small-btn{
  width:100%;          /* full width like big button */
  height:52px;

  border-radius:40px;
  border:2px solid #C8A34A;

  background:transparent;
  color:#C8A34A;

  font-family:'Cinzel', serif;
  font-size:12px;
  letter-spacing:2px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* ==========================
   BIG BUTTON
========================== */

.big-btn{
  width:100%;
  height:58px;

  border-radius:40px;
  border:2px solid #C8A34A;

  background:#C8A34A;
  color:#000;

  font-family:'Cinzel', serif;
  font-size:13px;
  letter-spacing:2px;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 0 15px rgba(200,163,74,.35);
}

/* ==========================
   HOVER
========================== */

.small-btn:hover{
  background:#C8A34A;
  color:#000;
}

.big-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 20px rgba(200,163,74,.5);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:600px){

  .small-btn{
    width:100%;        /* full width */
    height:52px;       /* big button height */
    font-size:12px;
  }

  .big-btn{
    width:100%;
    height:52px;
    font-size:12px;
  }

}
/* ==========================
   PREMIUM POLICY STRIP
========================== */

.policy-icon-section{
  margin:40px 0;
  padding:20px 10px;
  background:linear-gradient(to bottom,#0b0b0b,#111);
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:
    inset 0 0 30px rgba(255,255,255,0.02),
    0 10px 40px rgba(0,0,0,0.6);

  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:center;
}

.policy-item{
  flex:1;
  position:relative;
}

/* vertical divider */
.policy-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  height:40px;
  width:1px;
  background:rgba(200,163,74,0.2);
}

.policy-circle{
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(200,163,74,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
}

.policy-circle i{
  color:#C8A34A;
  font-size:18px;
}

.policy-item p{
  font-size:11px;
  letter-spacing:1.5px;
  color:#ddd;
}

/* subtle hover glow */
.policy-circle:hover{
  box-shadow:0 0 18px rgba(200,163,74,0.4);
  transform:translateY(-4px);
}
img{
  display:block;
}

footer{
  margin-top:0 !important;
}
.craft-img{
  border-bottom-left-radius:35px;
  border-bottom-right-radius:35px;
}

/* ==========================
   CLEAN CINEMATIC FLOW SYSTEM
========================== */

/* =========================
LUX BOX SECTION
========================= */

.lux-box{
padding:20px 20px;
text-align:center;
background:#0B0B0B;
}

.lux-heading{
font-family:"Cinzel", serif;
font-size:20px;
letter-spacing:6px;
color:#fff;
margin-bottom:8px;
}

.lux-sub{
font-size:12px;
letter-spacing:2px;
color:#aaa;
margin-bottom:30px;
}

.lux-img{
width:100%;
max-width:850px;
border-radius:10px;
margin:0 auto 15px;
display:block;
}

/* ==========================
   TRUE CINEMATIC MERGE FIX
========================== */

/* Darken top of every image except first */
.lux-block:not(:first-child) .lux-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 25%,
    rgba(0,0,0,0) 60%
  );
  pointer-events:none;
  z-index:2;
}

/* Bottom fade */
.lux-block .lux-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,0.8) 100%
  );
  pointer-events:none;
}

/* Soft bottom blend */
/* ===== CINEMATIC LUXURY TEXT (REFINED PREMIUM) ===== */

.image-box{
  position:relative;
  overflow:hidden;
}

.image-box img{
  width:100%;
  display:block;
  position:relative;
  z-index:1;
}

/* Tone unify */
.lux-block .lux-media img{
  filter: grayscale(10%) contrast(1.05);
}



/* TEXT */
.image-overlay-text{
  position:absolute;
  bottom:110px;   /* footer पासून distance */
  left:55px;

  font-family:"Cinzel", serif;
  font-size:24px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;

  color:#ffffff;
  z-index:3;

  line-height:1.6;

  text-shadow:0 6px 25px rgba(0,0,0,0.95);
}

/* Gold Highlight Word */
.image-overlay-text span{
  color:#C8A34A;
}

/* Gold Underline */
.image-overlay-text::after{
  content:"";
  display:block;
  width:75px;
  height:2px;
  background:#C8A34A;
  margin-top:14px;
}

/* Mobile Refinement */
@media(max-width:600px){
  .image-overlay-text{
    font-size:20px;
    letter-spacing:4px;
    bottom:70px;
    left:28px;
  }
}
/* =========================
STRIP CONTAINER
========================= */
.trust-strip{
  width:100%;
  overflow:hidden;
  background:#000;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* =========================
TRACK (MAIN FIX)
========================= */
.trust-track{
  display:flex;
  gap:60px;
  white-space:nowrap;
  padding:10px 0;

  width:max-content;              /* 🔥 CRITICAL */
  animation:scrollStrip 30s linear infinite; /* 🔥 SPEED BALANCED */
}

/* =========================
TEXT + ICON ALIGN
========================= */
.trust-track span{
  display:flex;
  align-items:center;
  gap:8px;

  color:#C8A34A;
  font-size:12px;
  letter-spacing:2px;
  font-family:'Cinzel', serif;
}

/* =========================
ICON FIX
========================= */
.trust-track svg{
  width:14px;
  height:14px;
  display:block;
  position:relative;
  top:-1px;
}

/* =========================
ANIMATION (FULL WIDTH)
========================= */
@keyframes scrollStrip{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}

/* =========================
MOBILE OPTIMIZATION
========================= */
@media (max-width:768px){

  .trust-track{
    gap:40px;
    animation:scrollStrip 20s linear infinite; /* mobile fast */
  }

  .trust-track span{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .trust-track svg{
    width:12px;
    height:12px;
  }
}
.trust-strip{
  width:100%;
  overflow:hidden;
  background:#000;

  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);

  position:relative;
}

/* 🔥 GOLD LINE */
.trust-strip::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    #C8A34A,
    transparent
  );
}
.trust-strip{
  width:100%;
  overflow:hidden;
  background:#000;

  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);

  position:sticky;   /* 🔥 main */
  top:70px;          /* header height */
  z-index:999;
}

.offer-track{
  text-align:center;
  animation:none !important;
  padding:0 12px;   /* mobile side space */
}

.offer-track span{
  color:#ffffff;
  font-size:11px;
  letter-spacing:2px;   /* spacing कमी */
  font-weight:700;
  text-transform:uppercase;
  animation:offerFade 1s ease forwards;
  display:inline-block;
  max-width:100%;
  word-break:break-word;
}

/* FADE IN ANIMATION */

@keyframes offerFade{
  from{
    opacity:0;
    transform:translateY(-6px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.reviews-section{
padding:30px 0;
background:#0b0b0b;
}

.review-title{
text-align:center;
font-family:'Playfair Display',serif;
color:#C8A34A;
letter-spacing:3px;
margin-bottom:20px;
}

.reviews-slider{
display:flex;
gap:15px;
overflow-x:auto;
padding:0 20px;
scroll-snap-type:x mandatory;
}

.review-card{
min-width:220px;
background:#111;
border:1px solid #222;
border-radius:12px;
padding:16px;
scroll-snap-align:start;
}

.review-card p{
font-size:13px;
color:#ddd;
margin:8px 0;
}

/* ===== REVIEW SECTION ===== */

.review-card span{
  font-size:11px;
  color:#999;
}

.stars{
  color:#C8A34A;
  font-size:15px;
  letter-spacing:2px;
}

.review-trust{
  text-align:center;
  color:#aaa;
  font-size:12px;
  margin-bottom:18px;
  line-height:1.4;
}

/* ===== OFFER BOX ===== */

.offer-box{
  margin-top:14px;
  padding:14px 18px;
  border-radius:14px;

  border:1px solid rgba(200,163,74,0.6);

  background:linear-gradient(
    135deg,
    rgba(200,163,74,0.18),
    rgba(0,0,0,0.6)
  );

  color:#C8A34A;
  font-size:13px;
  letter-spacing:1.5px;
  font-weight:600;

  box-shadow:0 0 16px rgba(200,163,74,0.25);

  display:none;
}

.deal-line{
  color:#C8A34A;
  font-size:17px;
  font-weight:700;
  margin-top:12px;
}

.quick-benefits{
  font-size:13px;
  color:#ccc;
  margin-top:10px;
  line-height:1.6;
}

.trust-line{
  font-size:12px;
  color:#888;
  margin-top:8px;
}

/* ===== TRUST SECTION ===== */

.trust-section{
  padding:50px 20px;
  background:#0b0b0b;
  color:#fff;
  text-align:center;

  max-width:94%;          /* 🔥 full width काढलं */
  margin:25px auto;       /* 🔥 center + spacing */
  border-radius:20px;     /* 🔥 visible rounded */

  box-shadow:0 8px 25px rgba(0,0,0,0.6); /* depth */
  border:1px solid rgba(200,163,74,0.15); /* subtle gold */
}

/* HEADING */
.trust-heading{
  font-family:'Playfair Display', serif;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:32px;
  color:#C8A34A;

  position:relative;
}

/* 🔥 premium underline */
.trust-heading::after{
  content:"";
  width:60px;
  height:2px;
  background:#C8A34A;
  display:block;
  margin:10px auto 0;
}

/* GRID */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* TRUST BOX */
.trust-box{
  background:#111;
  border:1px solid rgba(200,163,74,0.25);
  padding:22px;
  border-radius:12px;
  text-align:center;
  transition:all 0.3s ease;
}

/* HOVER */
.trust-box:hover{
  border-color:#C8A34A;
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(200,163,74,0.15);
}

/* ICON */
.trust-box .icon{
  width:44px;
  height:44px;
  margin:0 auto 12px;
}

.trust-box svg{
  width:100%;
  height:100%;
  stroke-width:1.8;
}

/* TEXT */
.trust-box h3{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
}

.trust-box p{
  font-size:12px;
  color:#aaa;
  line-height:1.5;
}

/* 🔥 WARRANTY PERFECT CENTER (DESKTOP + MOBILE SAME) */
.trust-box:last-child{
  grid-column:1 / -1;

  display:block; /* 🔥 FIX */

  text-align:center;

  background:linear-gradient(
    135deg,
    rgba(200,163,74,0.05),
    rgba(0,0,0,0.6)
  );

  border-color:#C8A34A;
}

/* inner content control */
.trust-box:last-child > *{
  max-width:240px;
  margin:0 auto;
}

/* inner content = vertical card feel */
.trust-box:last-child > *{
  max-width:220px;
}

/* ===== MOBILE ===== */

@media(max-width:480px){

  .trust-grid{
    grid-template-columns:repeat(2,1fr); /* keep 2 column */
    gap:14px;
  }

  .trust-box{
    padding:16px;
  }

  .trust-box h3{
    font-size:13px;
  }

  .trust-box p{
    font-size:10px;
  }

  /* ❌ IMPORTANT: warranty override REMOVE केला आहे */
}

/* ===== REVIEWS ===== */

.review-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.review-img{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(200,163,74,0.3);
}

.review-name{
  display:block;
  font-size:12px;
  color:#ddd;
}

.verified{
  display:block;
  font-size:10px;
  color:#C8A34A;
}

.review-text{
  font-size:13px;
  color:#ccc;
  line-height:1.5;
}
#timer{
  margin-top:6px;
}
#stockText{
  color:#ff3b3b;
  font-size:14px;
  font-weight:600;
}
.hero-conversion{
  padding:20px;
  background:#0b0b0b;
  text-align:center;
}

.hero-image-box{
  position:relative;
}

.hero-img{
  width:100%;
  border-radius:12px;
}

.hero-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#C8A34A;
  color:#000;
  font-size:11px;
  padding:5px 10px;
  border-radius:20px;
  font-weight:600;
}

.hero-trust{
  font-size:12px;
  color:#888;
  margin-top:10px;
}

.hero-title{
  font-size:20px;
  margin-top:8px;
  font-weight:700;
}

.hero-price{
  margin-top:10px;
}

.hero-price .old{
  text-decoration:line-through;
  color:#777;
  font-size:14px;
}

.hero-price .new{
  color:#C8A34A;
  font-size:22px;
  font-weight:bold;
  margin-left:6px;
}

.hero-price .off{
  color:red;
  font-size:12px;
  margin-left:6px;
}

.hero-stock{
  margin-top:8px;
  color:#ff3b3b;
  font-size:13px;
  font-weight:600;
}



.hero-micro{
  font-size:11px;
  color:#888;
  margin-top:8px;
}

.hero-timer{
  font-size:12px;
  color:#C8A34A;
  margin-top:6px;
}
.review-form {
  background: #0a0a0a;
  padding: 20px;
  margin: 30px 15px;
  border-radius: 20px;
  border: 1px solid rgba(200,163,74,0.2);
}

.review-form h3 {
  color: #C8A34A;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 1px;
}

/* Inputs */
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  background: #000;
  border: 1px solid #222;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

/* Focus glow */
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: #C8A34A;
  box-shadow: 0 0 6px rgba(200,163,74,0.4);
}

/* File input */
.review-form input[type="file"] {
  border: 1px dashed #444;
  padding: 8px;
  background: #000;
  color: #aaa;
  cursor: pointer;
}

/* Button */
.review-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #C8A34A, #a8832f);
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover effect */
.review-form button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(200,163,74,0.5);
}
.review-card img {
  width: 100%;
  height: 180px; /* 🔥 fixed height */
  object-fit: cover; /* 🔥 crop properly */
  border-radius: 8px;
  margin-top: 10px;
}
.review-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.review-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ✅ IMAGE COUNTER */
.image-counter{
  position:absolute;
  bottom:15px;
  left:15px;
  background:rgba(0,0,0,0.6);
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  letter-spacing:1px;
}

/* ❌ REMOVE THIS (no auto slider now)
.progress-bar{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:rgba(255,255,255,0.2);
}

.progress-fill{
  height:100%;
  width:0%;
  background:#C8A34A;
  transition:width linear;
}
*/

/* ✅ THUMBNAILS */
.thumbnail-row{
  display:flex;
  gap:6px;
  overflow-x:auto;
  padding:10px;
  background:#000;
}

.thumbnail-row img{
  width:60px;
  height:70px;
  object-fit:cover;
  border-radius:6px;
  cursor:pointer;
  opacity:0.6;
  border:2px solid transparent;
  transition:0.3s;
}

.thumbnail-row img.active{
  opacity:1;
  border:2px solid #C8A34A;
}

/* ✅ VIDEO THUMBNAIL ONLY */
.thumb-video{
  position:relative;
}

.thumb-video::after{
  content:'▶';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  font-size:16px;
  pointer-events:none;
}