/* ==========================================================================
   BORECHA POP.CSS — Visual Enhancements, Animations & Micro-interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. KEYFRAME LIBRARY
   -------------------------------------------------------------------------- */

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popScale {
  0%   { opacity: 0; transform: scale(0.8) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.05) translateY(-4px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes shimmerSlide {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes wiggleCTA {
  0%, 100% { transform: rotate(0deg); }
  20%  { transform: rotate(-3deg); }
  40%  { transform: rotate(3deg); }
  60%  { transform: rotate(-2deg); }
  80%  { transform: rotate(2deg); }
}

@keyframes punchIn {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(4deg); opacity: 1; }
  80%  { transform: scale(0.95) rotate(-2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes floatBobY {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  50%  { transform: scale(1.2); opacity: 1; }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes rippleOut {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 40, 114, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(230, 40, 114, 0.15); }
}

@keyframes badgePop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3) rotate(-5deg); }
  60%  { transform: scale(0.9) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes drawLine {
  from { width: 0; }
  to   { width: 100%; }
}

/* --------------------------------------------------------------------------
   2. SCROLL REVEAL SYSTEM
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-pop {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-pop.is-visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }

/* --------------------------------------------------------------------------
   3. HERO SECTION ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Animated gradient background on left canvas */
.hero-left-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,200,32,0.08) 50%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-left-canvas > * { position: relative; z-index: 2; }

/* Floating decorative dots on hero */
.hero-section::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(255,200,32,0.5) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Hero headline entrance */
.hero-main-headline {
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-subheadline {
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-proof-widget {
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-cta-group {
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero-rating-proof {
  animation: slideUpFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* Can in hero — enhanced float */
.can-pour-visual-wrap {
  animation: floatBobY 5.5s ease-in-out infinite;
}

.hero-can-pour-img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  filter: drop-shadow(0 24px 40px rgba(13, 43, 31, 0.3));
}
.hero-can-pour-img:hover {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 32px 48px rgba(13, 43, 31, 0.4));
}

/* Fizz box wiggle on hover */
.hero-fizz-box:hover {
  animation: wiggleCTA 0.5s ease;
}

/* Floating stamps spin-in */
.floating-stamp {
  animation: punchIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stamp-kcal  { animation-delay: 0.7s; }
.stamp-serve { animation-delay: 0.9s; }

/* Hindi tag box entrance */
.hindi-tag-box {
  animation: punchIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

/* --------------------------------------------------------------------------
   4. MARQUEE TICKER ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Reverse on hover */
.marquee-ticker-bar:hover .marquee-ticker-track {
  animation-play-state: paused;
}

.marquee-ticker-phrase .star-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  animation: spinSlow 6s linear infinite;
  transform-origin: center;
}

/* --------------------------------------------------------------------------
   5. PRODUCT CARD ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Richer hover lift */
.product-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-10px) rotate(-0.3deg);
  box-shadow: 8px 12px 0px var(--color-green);
}

/* Can image: bigger pop on hover */
.product-card-top {
  overflow: hidden;
  position: relative;
}

.product-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(255,255,255,0.5) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card-top::before {
  opacity: 1;
}

.product-card-img {
  filter: drop-shadow(0 12px 20px rgba(13, 43, 31, 0.18));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.1) translateY(-6px) rotate(1.5deg);
  filter: drop-shadow(0 20px 32px rgba(13, 43, 31, 0.28));
}

/* CTA Button pulse */
.product-card-cta-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.15s ease,
              background-color 0.15s ease;
}

.product-card-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.product-card-cta-btn:hover::after {
  transform: translateX(100%);
}

/* CTA button add-to-cart pop animation */
.product-card-cta-btn.is-adding {
  animation: badgePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--color-green) !important;
  color: var(--color-white) !important;
}

/* Pack pill enhanced */
.pack-pill {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.18s ease,
              background-color 0.18s ease;
  cursor: pointer;
}

.pack-pill:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 0px var(--color-green);
}

.pack-pill.is-selected {
  animation: bounceIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--color-yellow);
  box-shadow: 3px 3px 0px var(--color-green);
  border-width: 2px;
}

/* Category badge tags — pulse on new filter */
.card-badge-tag {
  transition: transform 0.2s ease;
}
.product-card:hover .card-badge-tag {
  animation: badgePop 0.4s ease;
}

/* --------------------------------------------------------------------------
   6. TAB BUTTONS ENHANCEMENT
   -------------------------------------------------------------------------- */

.tab-btn {
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.15s ease,
              background-color 0.15s ease,
              color 0.15s ease;
}

.tab-btn::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-pink);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tab-btn:hover::before { width: 60%; }
.tab-btn.is-active::before { width: 0; }

.tab-btn.is-active {
  animation: bounceIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   7. METRICS RIBBON ENHANCEMENTS
   -------------------------------------------------------------------------- */

.metric-ribbon-val {
  position: relative;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.metric-ribbon-item:hover .metric-ribbon-val {
  transform: scale(1.08) translateY(-2px);
}

.metric-ribbon-item {
  cursor: default;
  transition: background-color 0.2s ease;
}
.metric-ribbon-item:hover {
  background-color: rgba(13, 43, 31, 0.06);
}

/* --------------------------------------------------------------------------
   8. FAB SECTION ENHANCEMENTS
   -------------------------------------------------------------------------- */

.fab-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fab-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.fab-card:hover {
  transform: translateY(-12px) rotate(-0.5deg);
  box-shadow: 8px 8px 0px var(--color-yellow);
}

.fab-letter-badge {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fab-card:hover .fab-letter-badge {
  transform: rotate(-8deg) scale(1.1);
}

/* --------------------------------------------------------------------------
   9. BUNDLE BUILDER ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Slot fill animation */
.bundle-slot {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bundle-slot.is-filled {
  animation: bounceIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Flavor card enhanced hover */
.bundle-flavor-card {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              background-color 0.15s ease;
}
.bundle-flavor-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 4px 4px 0px var(--color-green);
}

/* Flavor thumb spin on hover */
.bundle-flavor-thumb {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bundle-flavor-card:hover .bundle-flavor-thumb {
  transform: scale(1.12) rotate(4deg);
}

/* Progress counter pulse when full */
.bundle-progress-text.is-full {
  animation: pulseGlow 1.5s ease infinite;
  color: var(--color-pink);
}

/* Submit button shimmer */
.bundle-submit-btn:not(:disabled) {
  background: linear-gradient(
    90deg,
    var(--color-yellow) 0%,
    #FFD84D 25%,
    var(--color-yellow) 50%,
    #FFBE00 75%,
    var(--color-yellow) 100%
  );
  background-size: 200% auto;
  animation: shimmerSlide 2.5s linear infinite;
}

/* --------------------------------------------------------------------------
   10. REVIEWS SECTION ENHANCEMENTS
   -------------------------------------------------------------------------- */

.review-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-6px) rotate(0.3deg);
  box-shadow: 6px 6px 0px var(--color-green);
}

.review-stars {
  display: inline-block;
  animation: slideInLeft 0.5s ease both;
  letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   11. CART DRAWER ENHANCEMENTS
   -------------------------------------------------------------------------- */

/* Overlay backdrop animate in */
.cart-overlay.is-open {
  animation: none; /* handled by opacity transition in CSS */
}

/* Cart count badge pop */
.cart-count-badge {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count-badge.is-bumping {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Checkout button shimmer when active */
.checkout-btn:not(:disabled) {
  background: linear-gradient(
    90deg,
    var(--color-green) 0%,
    #164030 25%,
    var(--color-green) 50%,
    #0D2B1F 75%,
    var(--color-green) 100%
  );
  background-size: 200% auto;
  animation: shimmerSlide 3s linear infinite;
}

/* --------------------------------------------------------------------------
   12. SUBSCRIPTION & FOOTER ENHANCEMENTS
   -------------------------------------------------------------------------- */

.subscription-card-inner {
  position: relative;
  overflow: hidden;
}
.subscription-card-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.subscription-card-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,227,194,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   13. SCROLL PROGRESS INDICATOR (top of page)
   -------------------------------------------------------------------------- */

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-pink), var(--color-yellow), var(--color-aqua));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   14. SECTION LABEL UNDERLINE DRAW
   -------------------------------------------------------------------------- */

.section-title-lockup h2::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: var(--color-pink);
  border-radius: 2px;
  margin-top: 8px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-title-lockup.is-visible h2::after,
.reveal.is-visible .section-title-lockup h2::after {
  width: 60px;
}

/* --------------------------------------------------------------------------
   10. LIVE BRAND STYLE SWITCHER THEMING (Olipop, Poppi, Sanzo, Liquid Death)
   -------------------------------------------------------------------------- */
.theme-switcher-bar {
  background: #0D2B1F;
  color: #fff;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--color-yellow);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.theme-switcher-label {
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.theme-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.theme-btn:hover {
  background: rgba(255,255,255,0.25);
}

.theme-btn.is-active {
  background: var(--color-yellow);
  color: var(--color-green);
  border-color: var(--color-yellow);
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* --- THEME 1: OLIPOP STYLE (Frameless Soft Pastel Arch Capsules) --- */
body.theme-olipop .product-card {
  background: #fff;
  border: 1px solid rgba(13, 43, 31, 0.08);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(13, 43, 31, 0.06);
}
body.theme-olipop .product-card-top {
  border-radius: 120px 120px 20px 20px;
  margin: 12px 12px 0 12px;
  background: #FFF9D9;
}
body.theme-olipop .card-badge-tag {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--color-green);
  border: 1px solid rgba(13, 43, 31, 0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transform: rotate(0deg);
}

/* --- THEME 2: POPPI STYLE (Neon Retro Pop & Sunburst Stage) --- */
body.theme-poppi .product-card {
  border: 3px solid #000;
  border-radius: 20px;
  box-shadow: 5px 5px 0 #000;
  background: #fff;
}
body.theme-poppi .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 #000;
}
body.theme-poppi .product-card-top {
  border-radius: 14px;
  margin: 10px 10px 0 10px;
  border: 2px solid #000;
  background: #FFF0E6;
}
body.theme-poppi .card-badge-tag {
  background: #000;
  color: #FFC820;
  border: none;
  font-weight: 900;
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 #FFC820;
}
body.theme-poppi .product-card-cta-btn {
  background: #FFC820;
  color: #000;
  border: 2.5px solid #000;
  box-shadow: 0 3px 0 #000;
}

/* --- THEME 3: SANZO / PARTAKE STYLE (Minimalist Clean D2C) --- */
body.theme-sanzo .product-card {
  background: #F7F5F0;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  box-shadow: none;
}
body.theme-sanzo .product-card:hover {
  background: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
body.theme-sanzo .product-card-top {
  background: transparent;
  margin: 0;
  border-radius: 0;
  height: 200px;
}
body.theme-sanzo .card-badge-tag {
  background: transparent;
  color: #E62872;
  border: none;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  transform: rotate(0deg);
  box-shadow: none;
  top: 14px;
}
body.theme-sanzo .product-card-cta-btn {
  background: #0D2B1F;
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: none;
}
body.theme-sanzo .product-card-cta-btn:hover {
  background: #E62872;
}

/* --- THEME 4: LIQUID DEATH STYLE (Bold Dark Contrast Stage) --- */
body.theme-liquid-death .product-card {
  background: #111;
  color: #fff;
  border: 2px solid #222;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
body.theme-liquid-death .product-card:hover {
  border-color: #FFC820;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(255, 200, 32, 0.15);
}
body.theme-liquid-death .product-card-top {
  background: #1A1A1A;
  margin: 10px 10px 0 10px;
  border-radius: 14px;
}
body.theme-liquid-death .product-card-title {
  color: #FFC820;
}
body.theme-liquid-death .product-card-sub {
  color: #AAA;
}
body.theme-liquid-death .card-badge-tag {
  background: #FFC820;
  color: #000;
  border: none;
}
body.theme-liquid-death .product-card-cta-btn {
  background: #FFC820;
  color: #000;
  border: none;
  box-shadow: none;
}
/* --- THEME 5: LIQUID GLASSMORPHISM (Frosted Crystal & Liquid Wave Blobs) --- */
body.theme-liquid-glass {
  background: radial-gradient(circle at 50% 0%, #E2F6F0 0%, #FFF5F8 50%, #F0F4F8 100%) !important;
}

body.theme-liquid-glass .product-card {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(16px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(190%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 32px !important;
  box-shadow: 0 12px 32px rgba(31, 38, 135, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.theme-liquid-glass .product-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 20px 48px rgba(31, 38, 135, 0.16), inset 0 1px 3px rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}

body.theme-liquid-glass .product-card-top {
  border-radius: 24px !important;
  margin: 12px 12px 0 12px !important;
  background: radial-gradient(circle at center, rgba(255,255,255,0.95), rgba(255,255,255,0.4)) !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.8) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.theme-liquid-glass .product-card-top::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, rgba(80, 227, 194, 0.35), rgba(255, 200, 32, 0.35));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: liquidBlob 6s ease-in-out infinite alternate;
  z-index: 1;
}

body.theme-liquid-glass .product-card[data-id="buntaa-masala-cola"] .product-card-top::before {
  background: linear-gradient(135deg, rgba(230, 40, 114, 0.35), rgba(80, 227, 194, 0.35));
}
body.theme-liquid-glass .product-card[data-id="buntaa-orange-pop"] .product-card-top::before {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.35), rgba(255, 200, 32, 0.35));
}
body.theme-liquid-glass .product-card[data-id="buntaa-ginger-ale"] .product-card-top::before {
  background: linear-gradient(135deg, rgba(160, 212, 104, 0.35), rgba(80, 227, 194, 0.35));
}
body.theme-liquid-glass .product-card[data-id="icey-strawberry-lemon"] .product-card-top::before {
  background: linear-gradient(135deg, rgba(255, 80, 150, 0.35), rgba(255, 200, 32, 0.35));
}

@keyframes liquidBlob {
  0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 30% 60% 40% 70% / 60% 30% 70% 40%; transform: rotate(180deg) scale(1.12); }
  100% { border-radius: 50% 50% 30% 70% / 40% 70% 30% 60%; transform: rotate(360deg) scale(1); }
}

body.theme-liquid-glass .product-card-img {
  position: relative !important;
  z-index: 2 !important;
  filter: drop-shadow(0 14px 20px rgba(13, 43, 31, 0.22)) !important;
}

body.theme-liquid-glass .card-badge-tag {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  color: var(--color-green) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
  font-weight: 900 !important;
  border-radius: 50px !important;
  transform: rotate(0deg) !important;
}

body.theme-liquid-glass .product-card-cta-btn {
  background: linear-gradient(135deg, #FFC820 0%, #FFA800 100%) !important;
  color: #0D2B1F !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 20px rgba(255, 200, 32, 0.35) !important;
  backdrop-filter: blur(8px) !important;
  font-weight: 900 !important;
}

/* --------------------------------------------------------------------------
   16. HORIZONTAL LIQUID SCROLLER & SNAP NAVIGATION
   -------------------------------------------------------------------------- */
.products-scroll-grid,
.products-horizontal-scroller {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  gap: 22px !important;
  padding: 12px 6px 24px 6px !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
}

.products-scroll-grid::-webkit-scrollbar,
.products-horizontal-scroller::-webkit-scrollbar {
  height: 8px;
}

.products-scroll-grid::-webkit-scrollbar-track,
.products-horizontal-scroller::-webkit-scrollbar-track {
  background: rgba(13, 43, 31, 0.06);
  border-radius: 10px;
}

.products-scroll-grid::-webkit-scrollbar-thumb,
.products-horizontal-scroller::-webkit-scrollbar-thumb {
  background: var(--color-yellow);
  border-radius: 10px;
  border: 2px solid var(--color-green);
}

.products-scroll-grid .product-card,
.products-horizontal-scroller .product-card {
  flex: 0 0 290px !important;
  min-width: 290px !important;
  scroll-snap-align: start !important;
}

.scroll-controls-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-green);
  border: 2px solid var(--color-green);
  box-shadow: 2px 3px 0px var(--color-green);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.scroll-arrow-btn:hover {
  background: var(--color-yellow);
  transform: scale(1.08);
}

.scroll-arrow-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--color-green);
}

/* --------------------------------------------------------------------------
   15. GENERAL INTERACTIVE POLISH
   -------------------------------------------------------------------------- */

/* Btn ripple helper */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  pointer-events: none;
  animation: rippleOut 0.6s ease-out forwards;
}

/* Focus ring */
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth page scroll behaviour */
html {
  scroll-behavior: smooth;
}

/* Brewery image hover zoom */
.brewery-photo-img {
  transition: transform 0.5s ease;
}
.brewery-visual-box:hover .brewery-photo-img {
  transform: scale(1.04);
}

/* Badge pill hover bounce */
.badge-pill {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.badge-pill:hover {
  transform: scale(1.06);
}

/* Hero proof widget cell hover */
.proof-stat-cell {
  transition: background-color 0.2s ease;
  cursor: default;
}
.proof-stat-cell:hover {
  background-color: rgba(255,200,32,0.1);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */

@media (max-width: 600px) {
  .hero-can-pour-img { max-height: 280px; }
  .fab-card:hover { transform: translateY(-6px); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
