/* ============================================================
   TAVAZO — Premium Effects & 3D Design System
   Glassmorphism, Glow, Particles, 3D Cards, Animated Gradients
   ============================================================ */

/* ── @property for animated border angle ── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ============================================================
   1. GLASSMORPHISM SYSTEM
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.glass--light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194, 158, 83, 0.15);
}

.glass--dark {
  background: rgba(16, 117, 113, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(194, 158, 83, 0.15);
}

.glass--gold {
  background: rgba(194, 158, 83, 0.06);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(194, 158, 83, 0.25);
}

/* ============================================================
   2. GLOW EFFECTS
   ============================================================ */
.glow-gold {
  transition: box-shadow var(--transition-slow);
}
.glow-gold:hover {
  box-shadow: var(--glow-gold);
}

.glow-teal {
  transition: box-shadow var(--transition-slow);
}
.glow-teal:hover {
  box-shadow: var(--glow-teal);
}

.glow-text {
  text-shadow: var(--glow-gold-text);
}

.glow-border {
  position: relative;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle), #C29E53, #E8D08C, #C29E53, #D4B565, #C29E53);
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.glow-border:hover::before {
  opacity: 1;
}

@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* ============================================================
   3. ANIMATED GRADIENT TEXT
   ============================================================ */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    var(--tavazo-gold) 0%,
    #E8D08C 25%,
    var(--tavazo-gold-light) 50%,
    var(--tavazo-gold) 75%,
    #E8D08C 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

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

/* ── 3D Text Shadow ── */
.text-3d {
  text-shadow:
    0 1px 0 rgba(194, 158, 83, 0.3),
    0 2px 0 rgba(194, 158, 83, 0.2),
    0 3px 0 rgba(194, 158, 83, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   4. 3D CARD SYSTEM
   ============================================================ */
.perspective-container {
  perspective: var(--perspective-card);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--transition-luxe), box-shadow var(--transition-slow);
}

.tilt-card:hover {
  box-shadow: var(--shadow-glow-gold);
}

/* ── Elements that pop out in 3D on hover ── */
.tilt-card:hover .tilt-card__inner {
  transform: translateZ(20px);
}

.tilt-card__inner {
  transition: transform var(--transition-luxe);
}

/* ============================================================
   5. ANIMATED BACKGROUNDS
   ============================================================ */
.aurora-bg {
  position: relative;
  overflow: hidden;
}
.aurora-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16, 117, 113, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(194, 158, 83, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(16, 117, 113, 0.05) 0%, transparent 50%);
  animation: auroraMove 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes auroraMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5%, -3%) rotate(2deg); }
  66% { transform: translate(-3%, 5%) rotate(-1deg); }
  100% { transform: translate(2%, -2%) rotate(1deg); }
}

/* ── Noise Texture Overlay ── */
.noise-overlay {
  position: relative;
}
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}

/* ============================================================
   6. PARTICLE CANVAS
   ============================================================ */
.particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   7. CUSTOM CURSOR
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--tavazo-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .custom-cursor--visible {
    opacity: 1;
  }

  .custom-cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(194, 158, 83, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .custom-cursor-ring--visible {
    opacity: 1;
  }

  .custom-cursor-ring--hover {
    width: 50px;
    height: 50px;
    border-color: rgba(194, 158, 83, 0.8);
  }

  /* Custom cursor disabled */
}

/* ============================================================
   8. BUTTON ENHANCEMENTS
   ============================================================ */
.btn--magnetic {
  transition: transform var(--transition-base);
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(194, 158, 83, 0.35);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   9. WAVE SEPARATOR
   ============================================================ */
.wave-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: waveShift 8s ease-in-out infinite alternate;
}

.wave-separator--teal svg {
  fill: var(--tavazo-teal-darker);
}

.wave-separator--cream svg {
  fill: var(--tavazo-cream);
}

@keyframes waveShift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   10. DYNAMIC HERO LIGHT
   ============================================================ */
.hero__light-follow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    600px circle at var(--light-x, 50%) var(--light-y, 50%),
    rgba(194, 158, 83, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero:hover .hero__light-follow {
  opacity: 1;
}

/* ============================================================
   11. ENHANCED IMAGE STYLES
   ============================================================ */
.img-premium {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

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

/* ── Grayscale to color (Instagram grid) ── */
.img-grayscale {
  filter: grayscale(40%) brightness(1.05);
  transition: filter var(--transition-slow);
}
.img-grayscale:hover {
  filter: grayscale(0%) brightness(1);
}

/* ============================================================
   12. TYPEWRITER EFFECT
   ============================================================ */
.typewriter {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid var(--tavazo-gold);
  white-space: nowrap;
  animation: typewriterBlink 0.7s step-end infinite;
}

.typewriter--done {
  border-right-color: transparent;
}

@keyframes typewriterBlink {
  50% { border-right-color: transparent; }
}

/* ============================================================
   13. SCROLL PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width 50ms linear;
  box-shadow: var(--glow-gold-subtle);
}

/* ============================================================
   14. ENHANCED SECTION HEADINGS
   ============================================================ */
.section-heading__title.text-3d {
  position: relative;
}

.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-reveal .word.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   15. FLOATING ELEMENTS
   ============================================================ */
.float-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.float-element--diamond {
  width: 12px;
  height: 12px;
  background: var(--tavazo-gold);
  transform: rotate(45deg);
}

.float-element--circle {
  width: 8px;
  height: 8px;
  background: var(--tavazo-gold);
  border-radius: 50%;
}

/* ============================================================
   16. PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--tavazo-teal-darker);
  z-index: 10000;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition--active {
  animation: pageWipe 0.5s ease forwards;
}

@keyframes pageWipe {
  0% { transform: scaleY(0); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
  50.01% { transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ============================================================
   17. QUICK VIEW MODAL
   ============================================================ */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: var(--space-xl);
}

.quickview-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.quickview-modal {
  background: var(--tavazo-white);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.quickview-overlay--visible .quickview-modal {
  transform: scale(1) translateY(0);
}

.quickview-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--tavazo-cream);
  border: none;
  font-size: 22px;
  color: var(--tavazo-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
}

.quickview-modal__close:hover {
  background: var(--tavazo-teal);
  color: var(--tavazo-white);
}

.quickview-modal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quickview-modal__image-wrapper {
  background: var(--tavazo-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.quickview-modal__image {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.quickview-modal__info {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quickview-modal__category {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--tavazo-gold);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
}

.quickview-modal__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--tavazo-charcoal);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.quickview-modal__rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--tavazo-gold);
  font-size: var(--fs-md);
}

.quickview-modal__price {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--tavazo-teal);
  margin-bottom: var(--space-md);
}

.quickview-modal__desc {
  font-size: var(--fs-sm);
  color: var(--tavazo-gray);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.quickview-modal__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.quickview-modal__add-cart {
  flex: 1;
  min-width: 140px;
}

@media (max-width: 768px) {
  .quickview-modal__inner {
    grid-template-columns: 1fr;
  }

  .quickview-modal__image-wrapper {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-lg);
  }

  .quickview-modal__info {
    padding: var(--space-lg);
  }

  .quickview-modal__title {
    font-size: var(--fs-xl);
  }
}

/* ============================================================
   18. FAB STACK — Back to Top + WhatsApp (stacked, bottom-right)
   ============================================================ */
.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Back to Top */
.fab-backtop {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: var(--tavazo-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fab-backtop--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-backtop:hover {
  background: var(--tavazo-teal-darker);
  color: #fff;
  border-color: var(--tavazo-teal-darker);
  box-shadow: 0 6px 20px rgba(11, 73, 69, 0.3);
  transform: translateY(-2px);
}

.fab-backtop svg {
  width: 18px;
  height: 18px;
}

/* Deliveroo */
.fab-deliveroo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #00CCBC;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 204, 188, 0.3);
  overflow: hidden;
  padding: 0;
}

.fab-deliveroo:hover {
  background: #00b8a9;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 204, 188, 0.4);
  transform: translateY(-2px);
}

.fab-deliveroo svg {
  width: 22px;
  height: 22px;
}

.fab-deliveroo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 6px;
  border-radius: 50% !important;
}

/* Instashop */
.fab-instashop {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FF6900;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 105, 0, 0.3);
}

.fab-instashop:hover {
  background: #e05c00;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 105, 0, 0.4);
  transform: translateY(-2px);
}

.fab-instashop svg {
  width: 24px;
  height: 24px;
}

/* WhatsApp */
.fab-whatsapp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.fab-whatsapp:hover {
  background: #20ba5a;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.fab-whatsapp__label {
  display: none;
}

/* ── FAB labels — visible on desktop only ── */
/* Hover labels — slide-out tooltip on desktop only */
.fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(15, 25, 25, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(194, 158, 83, 0.25);
}

.fab-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(15, 25, 25, 0.92);
  border-right: 1px solid rgba(194, 158, 83, 0.25);
  border-top: 1px solid rgba(194, 158, 83, 0.25);
}

@media (min-width: 1024px) {
  .fab-deliveroo:hover .fab-label,
  .fab-instashop:hover .fab-label,
  .fab-whatsapp:hover .fab-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Hide labels on mobile/tablet (no hover) */
@media (max-width: 1023px) {
  .fab-label { display: none; }
}

.fab-deliveroo,
.fab-instashop,
.fab-whatsapp {
  position: relative;
}

/* Heading shimmer effect */
.heading-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 158, 83, 0.12), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   PARALLAX DEPTH LAYERS
   ============================================================ */

/* Sections need overflow hidden for parallax transforms */
#categories,
#featured,
#gifts,
#testimonials,
#deliveroo,
.newsletter-section,
#instagram {
  overflow: hidden;
}

/* Story section gets 3D perspective */
.story-section .story__grid {
  transform-style: preserve-3d;
}

/* GPU-accelerated parallax elements */
.parallax-layer {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Free GPU after scrolling past */
.parallax-layer--idle {
  will-change: auto;
}

/* Kill parallax for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-layer {
    will-change: auto !important;
    transform: none !important;
  }
}

/* ============================================================
   CART DRAWER — Slide-in from right
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 92vw;
  min-width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-drawer--open {
  right: 0;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-drawer__header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-drawer__close:hover {
  border-color: var(--tavazo-gold);
  color: var(--tavazo-gold);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
}

.cart-drawer__empty p {
  margin-bottom: 20px;
  font-size: 15px;
}

.cart-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-drawer__item-info {
  flex: 1;
}

.cart-drawer__item-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--tavazo-charcoal);
  margin-bottom: 4px;
}

.cart-drawer__item-price {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tavazo-teal-darker);
  margin-bottom: 8px;
}

.cart-drawer__item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #666;
}

.cart-drawer__qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-drawer__qty-btn:hover {
  border-color: var(--tavazo-teal);
  color: var(--tavazo-teal);
}

.cart-drawer__item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #ccc;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}

.cart-drawer__item-remove:hover {
  color: #C0392B;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--tavazo-charcoal);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

/* Footer logo pulse effect */
.footer__logo {
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(194, 158, 83, 0)); }
  50% { filter: drop-shadow(0 0 12px rgba(194, 158, 83, 0.4)); }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .cart-drawer__header { padding: 16px 18px; }
  .cart-drawer__items { padding: 12px 18px; }
  .cart-drawer__footer { padding: 16px 18px; }
  .cart-drawer__header h3 { font-size: 18px; }
  .fab-stack { bottom: 20px; right: 16px; gap: 8px; }
  .fab-backtop { width: 40px; height: 40px; }
  .fab-deliveroo { width: 50px; height: 50px; }
  .fab-instashop { width: 50px; height: 50px; }
  .fab-instashop svg { width: 22px; height: 22px; }
  .fab-whatsapp { width: 50px; height: 50px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .glass,
  .glass--light,
  .glass--dark,
  .glass--gold {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .gradient-text-animated {
    animation: none;
  }

  .aurora-bg::before {
    animation: none;
  }

  .glow-border::before {
    animation: none;
  }

  .wave-separator svg {
    animation: none;
  }

  .particle-canvas {
    display: none !important;
  }

  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }

  .tilt-card {
    transform: none !important;
  }

  .page-transition {
    display: none !important;
  }

  .ripple-effect {
    animation: none;
  }

  .typewriter {
    animation: none;
    border-right: none;
    overflow: visible;
  }

  .word-reveal .word {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   MOBILE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .glass,
  .glass--light,
  .glass--dark,
  .glass--gold {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }

  .wave-separator {
    height: 50px;
  }

  .hero__light-follow {
    display: none;
  }
}
