:root{
  --primary:#ff9f1c;
  --secondary:#ff6f00;
  --dark:#1e1e1e;
  --muted:#777;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  position: relative;
  font-family:'Poppins',sans-serif;
  background: transparent;
}

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:url('img/vedic.jpeg') center/cover no-repeat;
opacity:0.08;
z-index:-1;
animation:moveBg 60s linear infinite;
}

/* smooth movement */

@keyframes moveBg{

0%{
transform:scale(1) translate(0,0);
}

50%{
transform:scale(1.05) translate(-20px,-20px);
}

100%{
transform:scale(1) translate(0,0);
}

}

/* ================= BREADCRUMB ================= */

/* BREADCRUMB (EXACT SAME AS YOU SHARED) */
/* ===== BREADCRUMB ===== */
.cu-breadcrumb{
  background:#fffaf3;
  padding:14px 0;
  border-bottom:1px solid rgba(255,122,24,0.15);
}

.breadcrumb-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#6d5b4b;
  flex-wrap:wrap;
}

.breadcrumb-list a{
  text-decoration:none;
  color:#ff7a18;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.breadcrumb-list a:hover{
  text-decoration:underline;
}

.breadcrumb-separator{
  color:#bfa48a;
  font-size:12px;
}

.breadcrumb-current,
.breadcrumb-list .current{
  color:#2c1d14;
  font-weight:600;
}

/* MOBILE */
@media (max-width:600px){

  .breadcrumb-list{
    font-size:13px;
    gap:6px;
  }

}
/* ================= PRODUCT ================= */
.product-container{
  max-width:1150px;
  margin:auto;
  padding:45px 20px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:38px;
}

/* ---------- GALLERY ---------- */
.gallery{
  position:sticky;
  top:100px;
}

.main-img{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.main-img img{
  width:100%;
  display:block;
  transition:transform .6s ease;
}

.main-img:hover img{
  transform:scale(1.05);
}

.thumbs{
  display:flex;
  gap:12px;
  margin-top:14px;
}

.thumbs img{
  width:74px;
  height:74px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  opacity:.6;
  transition:.3s;
}

.thumbs img.active,
.thumbs img:hover{
  opacity:1;
  transform:scale(1.08);
}

/* ---------- INFO ---------- */
.product-info{
  animation:fadeUp .9s ease forwards;
}

.product-info h1{
  font-size:2.1rem;
  line-height:1.3;
}


.tagline{
  margin:6px 0 10px;
  color:var(--secondary);
  font-weight:500;
}

.rating{
  color:#f4c150;
  margin-bottom:12px;
}

.price{
  font-size:1.8rem;
  margin-bottom:10px;
  font-weight:700;
  color:var(--primary);
}

.old-price{
  font-size:1rem;
  margin-left:10px;
  color:#999;
  text-decoration:line-through;
}

/* ---------- HIGHLIGHTS ---------- */
.highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin:30px 0;
}

.highlight{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:.92rem;
}

.highlight i{
  color:var(--primary);
}

/* ---------- QTY ---------- */
.qty-box{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.qty-box button{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#eee;
  font-size:1.2rem;
  cursor:pointer;
  transition:.25s;
}

.qty-box button:hover{
  background:var(--primary);
  color:#fff;
  transform:scale(1.1);
}

/* ---------- ACTION BUTTONS ---------- */
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.actions button{
  flex:1;
  padding:14px;
  border:none;
  border-radius:16px;
  font-size:.96rem;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:.35s;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* Add to Cart */
.add-cart{
  background:#fff;
  border:2px solid var(--primary);
  color:var(--primary);
}

.add-cart:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(255,159,28,.45);
}

/* Buy Now */
.buy-now{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
}

.buy-now::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transform:translateX(-100%);
}

.buy-now:hover::after{
  transform:translateX(100%);
  transition:.6s;
}

.buy-now:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 25px 60px rgba(255,111,0,.55);
}

/* WhatsApp */
.whatsapp{
  background:#25d366;
  color:#fff;
}

.whatsapp:hover{
  background:#1ebe57;
  transform:translateY(-4px) rotate(-1deg);
  box-shadow:0 18px 40px rgba(37,211,102,.55);
}

/* ---------- TABS ---------- */
.tabs{
  max-width:1150px;
  margin:45px auto;
  padding:0 20px;
}

.tab-buttons{
  display:flex;
  gap:18px;
  border-bottom:2px solid #eee;
  flex-wrap:wrap;
}

.tab-buttons div{
  padding:12px 0;
  cursor:pointer;
  font-weight:600;
}

.tab-buttons .active{
  color:var(--primary);
  border-bottom:3px solid var(--primary);
}

.tab-content{
  display:none;
  padding:22px 0;
  line-height:1.8;
}

.tab-content.active{
  display:block;
}

/* ---------- TRUST ---------- */
.trust{
  background:transparent;
   padding:35px 20px 55px;
  text-align:center;
}

.trust-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  background:#fff;
  padding:35px 20px;
  border-radius:20px;
}

.trust-item i{
  font-size:2.2rem;
  color:var(--primary);
  margin-bottom:12px;
}

/* ---------- ANIMATION ---------- */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:translateY(0);}
}
/* ---------- RESPONSIVE ---------- */

@media(max-width:900px){

  .product-container{
    grid-template-columns:1fr;
    gap:30px;
    padding:35px 15px;
  }

  .gallery{
    position:relative;
    top:0;
  }

  .product-info h1{
    font-size:1.7rem;
  }

  .highlights{
    grid-template-columns:1fr;
  }

  .actions{
    flex-direction:column;
  }

  .actions button{
    width:100%;
  }

  .tabs{
    margin:30px auto;
  }

}

@media(max-width:480px){

  .main-img{
    border-radius:18px;
  }

  .product-info h1{
    font-size:1.5rem;
  }

  .price{
    font-size:1.5rem;
  }

  .thumbs img{
    width:62px;
    height:62px;
  }

}

