@charset "UTF-8";
:root {
  --bg-body: #f0f2f5;
  /* Soft, muted background */
  --card-default-bg: #ffffff;
  --highlight-card-bg: #1a1a1a;
  /* Deep Charcoal/Near Black for Luxury */
  --highlight-accent-gold:#ff6a32;
  /* Pure Gold */
  --text-primary: #333333;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --button-primary-bg: var(--highlight-accent-gold);
  --shadow-subtle: rgba(0, 0, 0, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.6);
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accent-text {
  color: var(--highlight-accent-gold);
}

/* 1. बेसिक कार्ड स्टाइल */
.product-card {
  background-color: var(--card-default-bg);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 25px 0;
  /* Vertical margin for scale effect */
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
}

/* 2. सेंटर हाईलाइट कार्ड स्टाइल (Active Item) */
.owl-item.active.center .product-card {
  background-color: var(--highlight-card-bg);
  /* Deep Charcoal */
  color: var(--text-light);
  box-shadow: 0 25px 50px var(--shadow-strong);
  /* Stronger shadow for depth */
  transform: scale(1.15);
  /* More prominent scale */
  perspective: 1200px;
  transform-origin: center center;
  z-index: 10;
  border-color: var(--highlight-accent-gold);
  /* Gold border for active */
}

.owl-item.active.center .product-card .card-title,
.owl-item.active.center .product-card .card-subtitle,
.owl-item.active.center .product-card .card-text {
  color: var(--text-light) !important;
}

.owl-item.active.center .product-card .price {
  color: var(--highlight-accent-gold) !important;
  /* Gold Price */
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  /* Glowing gold price */
}

/* 3. IMAGE CONTAINER & STYLE */
.product-image-container {
  width: 100%;
  height: 220px;
  /* Taller for product bottles */
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensure full product is visible */
  display: block;
  /* Side products slightly faded */
  transition: opacity 0.4s ease, transform 0.4s ease;
  /* Desaturate side images */
}

.owl-item.active.center .product-image {
  opacity: 1;
  transform: scale(1.05);
  /* Slight zoom for focus */
  filter: grayscale(0%);
  /* Full color for active */
  /* Subtle shadow to lift image off background */
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

/* 4. TEXT STYLES */
.card-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  height: 50px;
  /* Fixed height for consistency */
  overflow: hidden;
  line-height: 1.4;
}

/* 5. SIZE/VARIANT OPTIONS (More Refined) */
.size-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.size-option {
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: var(--text-primary);
  background-color: #f8f8f8;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.size-option:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.owl-item.active.center .size-option {
  border: 1px solid var(--highlight-accent-gold);
  color: var(--highlight-accent-gold);
  background-color: #444;
}

/* 6. PRICE */
.price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  /* Larger, more impactful price */
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 35px;
  letter-spacing: -1px;
}

/* 7. BUTTON STYLES (Luxury Button) */
.add-to-cart-btn {
  background-color: var(--button-primary-bg);
  border: none;
  color: var(--bg-body);
  /* Dark text on gold */
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  /* Stronger gold glow */
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: gainsboro;
  transform: translateY(-3px);
}

/* 8. OWL CAROUSEL NAVIGATION */
.owl-theme .owl-nav {
  margin-top: 30px;
}

.owl-theme .owl-nav [class*=owl-] {
  background: var(--highlight-accent-gold) !important;
  color: var(--bg-body) !important;
  font-size: 24px !important;
  width: 50px;
  height: 50px;
  line-height: 44px;
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: absolute;
  /* Position arrows outside carousel */
  top: 45%;
  transform: translateY(-50%);
}

.owl-theme .owl-nav .owl-prev {
  left: -40px;
  /* Adjust position */
}

.owl-theme .owl-nav .owl-next {
  right: -40px;
  /* Adjust position */
}

.owl-theme .owl-nav [class*=owl-]:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
  background: gainsboro !important;
  color: black !important;
}

.owl-theme .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 8px;
  background: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--highlight-accent-gold);
  border-color: var(--highlight-accent-gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .owl-carousel {
    padding: 0 15px;
  }
  .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    font-size: 20px;
    top: 40%;
  }
  .owl-theme .owl-nav .owl-prev {
    left: -10px;
  }
  .owl-theme .owl-nav .owl-next {
    right: -10px;
  }
  h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .owl-item.active.center .product-card {
    transform: scale(1.08);
  }
}/*# sourceMappingURL=productDesign3.css.map */