: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 ===== */
.au-breadcrumb {
  background: #fffaf3;
  padding: 14px 20px;
  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 {
  color: #2c1d14;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .breadcrumb-list {
    font-size: 13px;
    gap: 6px;
    /* row-gap: 6px; */
  }
}

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

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

.main-img{
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

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

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

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

.thumbs img{
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:14px;
  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.4rem;
}

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

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

.price{
  font-size:2rem;
  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:10px;
  align-items:center;
  font-size:.95rem;
}

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

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

.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:15px;
  flex-wrap:wrap;
}

.actions button{
  flex:1;
  padding:16px;
  border:none;
  border-radius:18px;
  font-size:1rem;
  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:1250px;
  margin:80px auto;
  padding:0 20px;
}

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

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

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

.tab-content{
  display:none;
  padding:30px 0;
  line-height:1.9;
}

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

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

.trust-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:35px;
  background:#fff;
  padding:70px 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;
  }
}