/* =========================
   RESET & GLOBAL
========================= */
*{
  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;
}
/* =========================
   MOVING VEDIC BACKGROUND
========================= */
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;
  pointer-events: none;
}

@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
========================= */
.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-current {
  color: #2c1d14;
  font-weight: 600;
}

/* =========================
   CATEGORY FILTER
========================= */
.categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #ffd2a8;
  cursor: pointer;
  transition: 0.3s;
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(135deg, #ff8c42, #ffb703);
  color: #fff;
}

/* =========================
   PRODUCTS GRID (3 PER ROW)
========================= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 cards */
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

/* =========================
   PRODUCT CARD (E-PUJA STYLE)
========================= */
.product-card {
  position: relative;
  height: 260px; /* 🔥 SAME AS E-PUJA */
  border-radius: 14px;
  overflow: hidden;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}


.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* =========================
   OVERLAY CONTENT
========================= */
.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 20px;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4),
    transparent
  );
}

/* TEXT */
.product-info h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: -10px;
}

.product-info p {
  font-size: 13px;
  color: #eee;
}

/* =========================
   PRICE + BUTTON
========================= */
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}


.view-btn {
  display: inline-block;
  background: #ff7a18;
  border: none;

  padding: 10px 18px;   /* 🔥 SAME as E-Puja */
  border-radius: 25px;  /* 🔥 SAME shape */

  color: #fff;
  text-decoration: none;

  font-size: 16px;      /* 🔥 IMPORTANT */
  font-weight: 600;     /* 🔥 SAME */

  cursor: pointer;


  transition: 0.3s ease;
}

.view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   RESPONSIVE
========================= */
@media(max-width:1000px){
  .products {
    grid-template-columns: repeat(2,1fr);
    padding: 40px 20px;
  }
}

@media(max-width:600px){
  .products {
    grid-template-columns: 1fr;
  }
}