/* ==========================================================================
   AGGARWAL JEWELLERS — REUSABLE COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Luxury Product Card (1:1 Aspect Ratio)
   -------------------------------------------------------------------------- */
.product-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: var(--premium-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.product-card-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background: var(--cream);
  overflow: hidden;
}

.product-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

/* Badges on Card */
.product-badge-list {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

/* Card Action Icons (Wishlist & Compare) */
.product-card-top-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.card-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.card-action-btn:hover {
  background: var(--primary-burgundy);
  color: var(--champagne);
  border-color: var(--primary-burgundy);
  transform: scale(1.08);
}

.card-action-btn.active {
  background: var(--primary-burgundy);
  color: #e53935;
  border-color: var(--primary-burgundy);
}

/* Hover Floating Action Bar */
.product-card-hover-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition-base);
}

.product-card:hover .product-card-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.hover-action-btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Card Details */
.product-card-body {
  padding: 16px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--premium-gold);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
  color: var(--dark-text);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  transition: color 0.2s ease;
}

.product-card:hover .product-card-title {
  color: var(--primary-burgundy);
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.product-card-purity {
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  background: var(--cream);
  color: var(--secondary-text);
  border: 1px solid var(--border-color);
  font-weight: var(--fw-medium);
}

.product-card-weight {
  font-size: 0.72rem;
  color: var(--secondary-text);
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
}

.product-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price {
  font-size: 1.12rem;
  font-weight: var(--fw-bold);
  color: var(--primary-burgundy);
}

.product-old-price {
  font-size: 0.82rem;
  color: #9c8a86;
  text-decoration: line-through;
}

.product-add-cart-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary-burgundy);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.product-add-cart-mini:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   2. Modals (Quick View & Enquiry)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 21, 18, 0.75);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-container {
  background: #fff;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  animation: modalScale 0.3s ease;
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-burgundy);
  color: #fff;
}

.quickview-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  padding: 30px;
}

.quickview-gallery {
  position: relative;
}

.quickview-main-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.quickview-info h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.quickview-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}

.quickview-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: var(--cream);
  padding: 14px;
  border-radius: var(--radius-xs);
  margin: 16px 0;
  font-size: 0.85rem;
}

.quickview-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* Form Styles for Enquiry & Checkout */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
  color: var(--dark-text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  background: #fff;
  font-size: 0.88rem;
  color: var(--dark-text);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 3px rgba(109, 7, 17, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* --------------------------------------------------------------------------
   3. Toast Notification Alert
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #fff;
  border-left: 4px solid var(--premium-gold);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.2rem;
  color: var(--premium-gold);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--dark-text);
}

.toast-msg {
  font-size: 0.8rem;
  color: var(--secondary-text);
}

/* --------------------------------------------------------------------------
   4. Rating Stars
   -------------------------------------------------------------------------- */
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--premium-gold);
  font-size: 0.82rem;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--secondary-text);
  margin-left: 4px;
}

/* --------------------------------------------------------------------------
   5. Quantity Control
   -------------------------------------------------------------------------- */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  background: #fff;
}

.qty-btn {
  width: 34px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--cream);
  color: var(--primary-burgundy);
}

.qty-input {
  width: 44px;
  height: 38px;
  text-align: center;
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   6. Accordion & FAQ System
   -------------------------------------------------------------------------- */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(37, 21, 18, 0.03);
}

.accordion-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 16px rgba(109, 7, 17, 0.06);
}

.accordion-item.active {
  border-color: var(--premium-gold);
  border-left: 5px solid var(--premium-gold);
  background: linear-gradient(135deg, #FFFDF8 0%, #FAF5EA 100%);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.15);
}

.accordion-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
  color: var(--primary-burgundy);
  user-select: none;
  transition: color 0.25s ease;
}

.accordion-header:hover {
  color: #43060B;
}

.faq-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--premium-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-item.active .faq-icon-pill {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
  transform: rotate(15deg);
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.12);
  color: var(--premium-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--primary-burgundy);
  color: var(--champagne);
}

.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  font-size: 0.94rem;
  color: var(--secondary-text);
  line-height: 1.75;
}

.accordion-item.active .accordion-body {
  padding: 0 22px 22px 68px;
  max-height: 600px;
}

/* Luxury Assistance Card under FAQ */
.faq-assistance-card {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--deep-wine) 0%, var(--primary-burgundy) 100%);
  border: 1.5px solid rgba(212, 160, 23, 0.5);
  border-radius: 18px;
  padding: 30px 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(67, 6, 11, 0.25), 0 0 24px rgba(212, 160, 23, 0.15);
}

.faq-assistance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.faq-assistance-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-assistance-desc {
  font-size: 0.92rem;
  color: var(--champagne);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.faq-assistance-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .accordion-item.active .accordion-body {
    padding: 0 18px 18px 18px;
  }
  .faq-assistance-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .faq-assistance-actions {
    justify-content: center;
    width: 100%;
  }
  .faq-assistance-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   7 & 8. Universal 4-Button Animated Floating Action Dock (Right Bottom Corner)
   -------------------------------------------------------------------------- */
.universal-floating-dock {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  top: auto;
  transform: none;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(43, 6, 11, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 8px;
  border-radius: 36px;
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 18px rgba(212, 160, 23, 0.2);
  pointer-events: auto;
  width: auto;
}

.dock-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: auto;
}

/* Base Floating Action Button */
.dock-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  text-decoration: none;
}

.dock-btn i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dock-btn:hover {
  transform: scale(1.14);
}

/* 1. Quick Enquiry Button (Gold Sparkle Shimmer) */
.dock-btn.btn-enquiry {
  background: linear-gradient(135deg, #F4C95D 0%, #D4A017 60%, #9B6F07 100%);
  color: var(--deep-wine);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
  font-size: 1.2rem;
}

.dock-btn.btn-enquiry::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #F4C95D;
  animation: dockBeaconPulse 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

/* 2. Direct Call Button (Burgundy Phone Ring) */
.dock-btn.btn-call {
  background: linear-gradient(135deg, #6D0711 0%, #43060B 100%);
  color: var(--light-gold);
  border-color: rgba(212, 160, 23, 0.7);
  box-shadow: 0 6px 20px rgba(109, 7, 17, 0.55);
  font-size: 1.15rem;
}

.dock-btn.btn-call i {
  animation: phoneRing 3.2s infinite ease-in-out;
}

.dock-btn.btn-call::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #D4A017;
  animation: dockBeaconPulse 3s infinite cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  pointer-events: none;
}

/* 3. WhatsApp Button (Emerald Radar Wave) */
.dock-btn.btn-wa {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-color: rgba(244, 201, 93, 0.85);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  font-size: 1.6rem;
}

.dock-btn.btn-wa::before,
.dock-btn.btn-wa::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: dockBeaconPulse 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

.dock-btn.btn-wa::after {
  animation-delay: 1.2s;
}

.dock-online-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.85);
}

.universal-floating-dock.active .dock-btn.btn-wa {
  background: linear-gradient(135deg, var(--deep-wine) 0%, #290306 100%);
  border-color: var(--light-gold);
  transform: rotate(90deg);
}

/* 4. Scroll To Top Button (Appears smoothly on scroll > 150px) */
.dock-item.dock-top {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: scale(0.6) translateY(10px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  overflow: hidden;
  margin: 0;
}

.dock-item.dock-top.is-visible {
  opacity: 1;
  visibility: visible;
  max-height: 56px;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  overflow: visible;
  margin-bottom: 2px;
}

.dock-btn.btn-top {
  background: linear-gradient(135deg, #43060B 0%, #251512 100%);
  color: var(--light-gold);
  border-color: rgba(212, 160, 23, 0.65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-size: 1.15rem;
}

.dock-btn.btn-top:hover i {
  animation: dockTopBounce 0.8s infinite ease-in-out;
}

/* Tooltips */
.dock-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: linear-gradient(135deg, #43060B 0%, #251512 100%);
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(212, 160, 23, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Floating Tooltip Pill for WhatsApp */
.wa-floating-pill {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #43060B 0%, #6D0711 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(244, 201, 93, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: waPillFloat 3.5s infinite ease-in-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-floating-pill span {
  color: var(--champagne);
}

.wa-floating-pill i {
  color: #25D366;
  font-size: 1rem;
}

.universal-floating-dock.active .wa-floating-pill {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.9);
}

/* Keyframe Animations */
@keyframes dockBeaconPulse {
  0% { transform: scale(0.9); opacity: 0.85; }
  50% { opacity: 0.45; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0) scale(1); }
  6% { transform: rotate(-18deg) scale(1.15); }
  12% { transform: rotate(18deg) scale(1.15); }
  18% { transform: rotate(-15deg); }
  24% { transform: rotate(15deg); }
  30% { transform: rotate(-8deg); }
  36% { transform: rotate(8deg); }
  42% { transform: rotate(0); }
}

@keyframes dockTopBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes waPillFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-5px); }
}

/* Interactive Quick Message Popup Card */
.wa-concierge-card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  transform: translateY(12px) scale(0.95);
  transform-origin: right bottom;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(37, 21, 18, 0.35), 0 0 20px rgba(212, 160, 23, 0.15);
  border: 1.5px solid var(--border-gold);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  z-index: 1070;
}

.universal-floating-dock.active .wa-concierge-card,
.wa-concierge-widget.active .wa-concierge-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Card Header */
.wa-card-header {
  background: linear-gradient(135deg, var(--deep-wine) 0%, var(--primary-burgundy) 100%);
  padding: 16px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--premium-gold);
}

.wa-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-brand-crest {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-brand-crest img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wa-brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-gold);
  line-height: 1.2;
}

.wa-brand-status {
  font-size: 0.72rem;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-status-dot-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-call-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212, 160, 23, 0.25);
  border: 1px solid var(--light-gold);
  color: var(--light-gold);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wa-call-header-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
}

.wa-card-close-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-card-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Card Body */
.wa-card-body {
  padding: 16px 18px;
  background: #faf8f5;
}

.wa-welcome-bubble {
  background: #ffffff;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--dark-text);
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
}

.wa-quick-prompt-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-text);
  margin-bottom: 8px;
}

/* Quick Action Chips */
.wa-chips-grid {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.wa-chip {
  background: #ffffff;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wa-chip i {
  color: var(--premium-gold);
  font-size: 0.85rem;
}

.wa-chip:hover {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(109, 7, 17, 0.06) 100%);
  border-color: var(--primary-burgundy);
  transform: translateX(4px);
}

/* Custom Message Form */
.wa-form-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.wa-message-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-gold);
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--dark-text);
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease;
}

.wa-message-input:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wa-send-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Card Hotline Footer */
.wa-card-footer {
  padding: 10px 18px;
  background: #fff;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.wa-hotline-link {
  font-size: 0.78rem;
  color: var(--primary-burgundy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.wa-hotline-link:hover {
  color: var(--premium-gold);
}

/* --------------------------------------------------------------------------
   9. Site-Wide Commercial Animations (Auto Scroll & Mouseover)
   -------------------------------------------------------------------------- */

/* Auto Scroll Reveal Elements */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation Delays */
.reveal-stagger-1 { transition-delay: 0.08s; }
.reveal-stagger-2 { transition-delay: 0.16s; }
.reveal-stagger-3 { transition-delay: 0.24s; }
.reveal-stagger-4 { transition-delay: 0.32s; }

/* Diamond Divider Spin on Reveal */
.is-revealed .gold-divider i,
.gold-divider.is-revealed i {
  animation: diamondSpin 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes diamondSpin {
  0% { transform: rotate(0) scale(0.6); opacity: 0; }
  60% { transform: rotate(380deg) scale(1.25); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

/* Product Card Mouseover Enhancements */
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(109, 7, 17, 0.14), 0 0 20px rgba(212, 160, 23, 0.2);
  border-color: var(--premium-gold);
}

/* Subtle Golden Shimmer Ray on Card Hover */
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 201, 93, 0.22), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
}

.product-card:hover::after {
  left: 150%;
  transition: all 0.85s ease-in-out;
}

/* Product Card Image Smooth Zoom */
.product-card-image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
  filter: brightness(1.03);
}

/* Circular Category Card Hover Pop */
.category-circle-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-circle-card:hover {
  transform: translateY(-6px);
}

.category-circle-card:hover .category-circle-img-wrap {
  border-color: var(--premium-gold);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4), inset 0 0 12px rgba(212, 160, 23, 0.2);
}

.category-circle-card:hover .category-circle-img {
  transform: scale(1.1);
}

/* Button Golden Shimmer Hover */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-gold:hover::after {
  left: 140%;
  transition: all 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

/* Burgundy Button Hover Shimmer */
.btn-burgundy {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-burgundy::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 201, 93, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-burgundy:hover::after {
  left: 140%;
  transition: all 0.6s ease;
}

.btn-burgundy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 7, 17, 0.55);
}

/* Trust Strip Item Hover */
.trust-strip-item {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.trust-strip-item:hover {
  transform: translateY(-4px);
}

.trust-strip-item:hover .trust-icon {
  transform: scale(1.15) rotate(8deg);
  color: var(--primary-burgundy);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Testimonial & Feature Card Hover Physics */
.testimonial-card,
.feature-item,
.craft-step {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.testimonial-card:hover,
.feature-item:hover,
.craft-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(109, 7, 17, 0.08), 0 0 16px rgba(212, 160, 23, 0.15);
  border-color: var(--border-gold);
}

/* Hero Spotlight Box Ambient Pulse */
.spotlight-box {
  animation: spotlightAmbientPulse 5s infinite ease-in-out;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spotlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 36px rgba(212, 160, 23, 0.45);
}

@keyframes spotlightAmbientPulse {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 20px rgba(212, 160, 23, 0.2);
  }
  50% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 32px rgba(244, 201, 93, 0.42);
  }
}

/* --------------------------------------------------------------------------
   Universal Product Grids (4-col, 3-col, 2-col)
   -------------------------------------------------------------------------- */
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .product-grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .product-grid-4,
  .product-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .product-grid-4,
  .product-grid-3,
  .product-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

