/* ===== CSS Variables - Match Reference Site ===== */
:root {
  /* Colors from reference */
  --red-primary: #d8061c;
  --red-dark: #b80518;
  --red-light: #ff3d52;
  --gold-primary: #ffd500;
  --gold-dark: #e8c917;
  --gold-light: #ffe03c;
  --cream: #efebe1;
  --cream-light: #fffae3;
  --cream-dark: #e8e6e2;
  --dark: #000000;
  --white: #ffffff;
  --brown: #8B4513;

  /* Fonts from reference */
  --font-display: 'Dancing Script', cursive;
  --font-body: 'Bai Jamjuree', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(255, 213, 0, 0.4);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--red-dark) 0%, #6d0210 100%);
  color: var(--dark);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Falling Petals ===== */
.petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -60px;
  font-size: 28px;
  opacity: 0.9;
  animation: petalFall linear forwards;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.25));
}

@keyframes petalFall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0.95;
  }

  20% {
    transform: translateY(20vh) rotate(72deg) translateX(50px);
  }

  40% {
    transform: translateY(40vh) rotate(144deg) translateX(-40px);
  }

  60% {
    transform: translateY(60vh) rotate(216deg) translateX(45px);
  }

  80% {
    transform: translateY(80vh) rotate(288deg) translateX(-35px);
  }

  100% {
    transform: translateY(115vh) rotate(360deg) translateX(30px);
    opacity: 0;
  }
}

/* ===== Floating Lanterns ===== */
.lanterns {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lantern {
  position: absolute;
  font-size: 3.5rem;
  animation: floatLantern 8s ease-in-out infinite;
  opacity: 0.5;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  color: var(--gold-primary);
}

.lantern i {
  text-shadow: 0 0 20px rgba(255, 213, 0, 0.6);
}

.lantern-1 {
  top: 5%;
  left: 3%;
  animation-delay: 0s;
}

.lantern-2 {
  top: 15%;
  right: 5%;
  animation-delay: 2s;
}

.lantern-3 {
  top: 45%;
  left: 2%;
  animation-delay: 4s;
}

@keyframes floatLantern {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-25px) rotate(3deg);
  }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(216, 6, 28, 0.4);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s;
}

.nav a:hover {
  color: var(--gold-primary);
}

.nav a:hover::after {
  width: 100%;
}

/* Mobile Header CTA Button */
.header-mobile-content {
  display: none;
}

.header-mobile-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  transition: all 0.3s;
}

.header-mobile-cta span {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-mobile-cta .bracket-left,
.header-mobile-cta .bracket-right {
  height: 55px;
  width: auto;
}

.header-mobile-cta .bracket-right {
  transform: scaleX(-1);
}

.header-mobile-title,
.header-mobile-subtitle {
  display: none;
}

/* ===== Hero Section ===== */
.hero {
  padding: 100px 0 40px;
  background:
    linear-gradient(180deg, rgba(184, 5, 24, 0.85) 0%, rgba(216, 6, 28, 0.8) 50%, rgba(184, 5, 24, 0.9) 100%),
    url("https://w.ladicdn.com/s750x500/67e62edfe8a7ba00111821fa/pngtree-chinese-new-year-spring-festival-2023-background-red-lantern-frame-image_1472108-20251125215004-fhhxl.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(255, 213, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 213, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(255, 213, 0, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(255, 213, 0, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-left: 20px;
  order: 2;
}

.hero-image {
  display: flex;
  justify-content: center;
  order: 1;
  align-items: center;
  width: 100%;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: var(--red-dark);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  font-family: var(--font-display);
  color: var(--gold-primary);
  text-shadow: 3px 3px 10px rgba(255, 213, 0, 0.5);
  font-size: 4rem;
  display: block;
}

.subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  font-weight: 400;
}

/* Price Box */
.price-box {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 30px;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid rgba(255, 213, 0, 0.3);
}

.sale-badge {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #ffea00 50%, var(--gold-primary) 100%);
  background-size: 200% 200%;
  color: var(--red-dark);
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 15px;
  box-shadow:
    0 4px 15px rgba(255, 213, 0, 0.5),
    0 0 30px rgba(255, 213, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: saleBadgePulse 1.5s ease-in-out infinite, shimmer 2s linear infinite;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sale-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shineEffect 2s infinite;
}

@keyframes saleBadgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 4px 15px rgba(255, 213, 0, 0.5),
      0 0 30px rgba(255, 213, 0, 0.3);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 6px 25px rgba(255, 213, 0, 0.7),
      0 0 50px rgba(255, 213, 0, 0.5);
  }
}

@keyframes shineEffect {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.prices {
  display: flex;
  align-items: center;
  gap: 20px;
}

.old-price {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.new-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 35px;
}

.countdown-label {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.05rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  gap: 12px;
}

.countdown-item {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  min-width: 75px;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.countdown-item span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 213, 0, 0.5);
}

.countdown-item small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Order Button */
.btn-order {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 30%, var(--gold-dark) 100%);
  color: var(--red-dark);
  padding: 22px 55px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow:
    0 8px 30px rgba(255, 213, 0, 0.6),
    0 0 40px rgba(255, 213, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: btnShine 2.5s infinite;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.btn-order:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 15px 45px rgba(255, 213, 0, 0.7),
    0 0 60px rgba(255, 213, 0, 0.4);
}

.btn-order:active {
  transform: translateY(-2px) scale(0.98);
}

.pulse {
  animation: orderPulse 1.8s ease-in-out infinite, orderGlow 1.8s ease-in-out infinite;
}

@keyframes orderPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes orderGlow {

  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(255, 213, 0, 0.6),
      0 0 40px rgba(255, 213, 0, 0.3);
  }

  50% {
    box-shadow:
      0 10px 40px rgba(255, 213, 0, 0.8),
      0 0 70px rgba(255, 213, 0, 0.5),
      0 0 100px rgba(255, 213, 0, 0.3);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* Product Card */
.hero-image {
  display: flex;
  justify-content: center;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 25px;
  position: relative;
  border: 2px solid rgba(255, 213, 0, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
}

.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.35) 0%, transparent 65%);
  border-radius: 30%;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Price Badge */
.price-badge {
  position: absolute;
  top: 15px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  padding: 12px 25px 12px 20px;
  border-radius: 8px 0 0 8px;
  transform: rotate(-5deg);
  z-index: 20;
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(255, 213, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: badgeShake 2s ease-in-out infinite;
}

.price-badge::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: badgeShine 2s infinite;
}

.price-badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  border-left: 10px solid transparent;
  border-top: 8px solid var(--gold-dark);
}

.price-badge-old {
  font-size: 0.9rem;
  color: var(--red-dark);
  text-decoration: line-through;
  opacity: 0.8;
  font-weight: 600;
}

.price-badge-new {
  font-size: 1.6rem;
  color: var(--red-dark);
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

@keyframes badgeShake {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  25% {
    transform: rotate(-7deg) scale(1.02);
  }

  75% {
    transform: rotate(-3deg) scale(1.02);
  }
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.product-img {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  width: 100%;
}

/* ===== Product Image Slider ===== */
.product-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--gold-primary);
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  min-height: 400px;
  max-height: 600px;
}

.slider-slide img {
  cursor: zoom-in;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.slider-btn:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
  color: var(--red-primary);
  font-size: 1rem;
}

.slider-prev {
  left: 15px;
}

.slider-next {
  right: 15px;
}

.slider-btn i {
  font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: var(--gold-primary);
  border-color: var(--white);
  transform: scale(1.2);
}

/* Video Dot */
.slider-dot.video-dot {
  width: auto;
  padding: 0 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-dot.video-dot i {
  font-size: 0.6rem;
  color: var(--white);
}

.slider-dot.video-dot.active i {
  color: var(--red-dark);
}

/* Video Slide Styling */
.slider-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.slider-video {
  position: relative;
}

.video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(216, 6, 28, 0.9);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-badge i {
  font-size: 0.75rem;
}

/* Lucky Bag CSS Art (Fallback) */
.lucky-bag {
  width: 220px;
  height: 270px;
  margin: 0 auto;
  position: relative;
}

.bag-body {
  width: 200px;
  height: 220px;
  background: linear-gradient(180deg, #ff3d3d 0%, var(--red-primary) 50%, #a80515 100%);
  border-radius: 25px 25px 50px 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--gold-primary);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 -30px 50px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--gold-primary);
  position: relative;
  font-weight: bold;
}

.bag-body::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  border-radius: 15px 15px 5px 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bag-body::after {
  content: '';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.bag-tassel {
  width: 5px;
  height: 70px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark), var(--brown));
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.bag-tassel::after {
  content: '🎐';
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  animation: swing 2s ease-in-out infinite;
}

@keyframes swing {

  0%,
  100% {
    transform: translateX(-50%) rotate(-5deg);
  }

  50% {
    transform: translateX(-50%) rotate(5deg);
  }
}

.product-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 500;
}

.stat-icon {
  font-size: 1.3rem;
}

/* Stock Warning */
.stock-warning {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  padding: 20px 0 25px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
}

.stock-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.25rem;
  color: var(--red-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.fire {
  font-size: 1.5rem;
  animation: shake 0.5s infinite;
}

/* Stock Progress Bar */
.stock-progress-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.stock-progress-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.stock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg,
      var(--red-primary) 0%,
      #ff3d52 30%,
      var(--red-primary) 50%,
      #ff3d52 70%,
      var(--red-primary) 100%);
  background-size: 200% 100%;
  border-radius: 25px;
  transition: width 0.8s ease-out;
  position: relative;
  animation: progressShine 2s linear infinite;
}

.stock-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
  border-radius: 25px 25px 0 0;
}

@keyframes progressShine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.stock-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--red-dark);
}

.stock-sold {
  font-weight: 600;
}

.stock-sold i {
  margin-right: 5px;
  color: var(--red-primary);
}

.stock-remaining {
  font-weight: 600;
  color: var(--red-primary);
  animation: pulseText 1.5s ease-in-out infinite;
}

.stock-remaining i {
  margin-right: 5px;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(-8deg) scale(1.1);
  }

  50% {
    transform: rotate(8deg) scale(1);
  }
}

/* ===== Features Section ===== */
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--red-dark) 0%, #7a0315 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red-primary), var(--gold-primary), var(--red-primary));
}

.section-title {
  font-family: var(--font-body);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--gold-primary);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title-script {
  font-family: var(--font-display);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 213, 0, 0.2);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-card p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Product Info Section ===== */
.product-info {
  padding: 60px 0;
  background: linear-gradient(180deg, #c00520 0%, var(--red-primary) 100%);
  position: relative;
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
  background-image: url("https://w.ladicdn.com/s750x950/67e62edfe8a7ba00111821fa/ppppp-20210130034656-20251125222031-znlab.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 25px;
  padding: 45px;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(255, 213, 0, 0.2);
  border: 4px solid var(--gold-primary);
  position: relative;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 213, 0, 0.3);
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.info-list li strong {
  color: var(--gold-primary);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.info-icon i {
  color: var(--red-dark);
  font-size: 0.9rem;
}

/* ===== Product Description Section ===== */
.product-description {
  padding: 60px 0;
  background: linear-gradient(180deg, #a00318 0%, #850212 50%, #6d0210 100%);
}

.desc-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
}

.desc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 213, 0, 0.3);
  border-color: var(--gold-light);
}

.desc-item:last-child {
  margin-bottom: 0;
}

.desc-item.reverse {
  direction: rtl;
}

.desc-item.reverse>* {
  direction: ltr;
}

.desc-text h3 {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.desc-text h3 i {
  color: var(--gold-light);
}

.desc-text p {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.desc-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--gold-primary);
}

.desc-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.desc-image:hover img {
  transform: scale(1.05);
}

/* ===== Product Details (Legacy) ===== */
.product-details {
  padding: 80px 0;
  background: linear-gradient(180deg, #950418 0%, #7a0315 100%);
  position: relative;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.gallery {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--gold-primary);
}

/* ===== Details Slider ===== */
.details-slider {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--gold-primary);
}

.details-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  max-height: 500px;
}

.details-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.details-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.details-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
  cursor: zoom-in;
}

/* Details Slider Navigation Buttons */
.details-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.details-slider-btn:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.details-slider-btn i {
  color: var(--red-primary);
  font-size: 1.1rem;
}

.details-slider-prev {
  left: 12px;
}

.details-slider-next {
  right: 12px;
}

/* Details Slider Dots */
.details-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  border-radius: 20px;
}

.details-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.details-slider-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.details-slider-dot.active {
  background: var(--gold-primary);
  border-color: var(--white);
  transform: scale(1.25);
}

.gallery-main {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffd6d6 100%);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 25px;
  border: 2px solid rgba(216, 6, 28, 0.15);
}

.lucky-bag-large {
  text-align: center;
}

.bag-body-large {
  width: 220px;
  height: 250px;
  background: linear-gradient(180deg, #ff4d4d 0%, var(--red-primary) 50%, #a80515 100%);
  border-radius: 25px 25px 60px 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--gold-primary);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.35);
  border: 5px solid var(--gold-primary);
  position: relative;
  box-shadow:
    inset 0 -30px 50px rgba(0, 0, 0, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.3);
}

.bag-body-large::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 35px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  border-radius: 15px 15px 5px 5px;
}

.bag-decoration {
  margin-top: 15px;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.gallery-thumbs {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumb {
  width: 70px;
  height: 70px;
  background: var(--cream);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s;
}

.thumb.active,
.thumb:hover {
  border-color: var(--red-primary);
  background: #ffe6e6;
  transform: scale(1.05);
}

.specs-list {
  list-style: none;
}

.specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 2px dashed var(--cream-dark);
  font-size: 1.05rem;
}

.spec-icon {
  font-size: 1.4rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--cream-light) 0%, #ffe6b3 100%);
  border-radius: 20px;
  padding: 25px;
  margin-top: 30px;
  border-left: 5px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.highlight-box p {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd500' fill-opacity='0.06'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pricing .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-primary);
  backdrop-filter: blur(5px);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular,
.pricing-card.best-deal {
  border: 4px solid var(--gold-primary);
  transform: scale(1.05);
  background: linear-gradient(180deg, #fffef5 0%, var(--white) 100%);
}

.pricing-card.popular:hover,
.pricing-card.best-deal:hover {
  transform: scale(1.05) translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: var(--red-dark);
  padding: 8px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
  white-space: nowrap;
}

.combo-qty {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.combo-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.combo-ship {
  color: #28a745;
  font-size: 1rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.btn-select {
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-select:hover {
  background: linear-gradient(180deg, #ff3d52 0%, var(--red-primary) 100%);
  transform: scale(1.02);
}

/* ===== Order Form ===== */
.order-form {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background-image: url("https://w.ladicdn.com/s750x950/67e62edfe8a7ba00111821fa/ppppp-20210130034656-20251125222031-znlab.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 50px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(255, 213, 0, 0.25);
  border: 5px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header p {
  color: var(--white);
  font-size: 1.05rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group label i {
  color: var(--gold-primary) !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gold-primary);
  border-radius: 15px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 213, 0, 0.3);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: var(--red-dark);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow:
    0 6px 25px rgba(255, 213, 0, 0.5),
    0 0 30px rgba(255, 213, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: submitShine 2.5s infinite;
}

@keyframes submitShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.btn-submit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 15px 45px rgba(255, 213, 0, 0.6),
    0 0 60px rgba(255, 213, 0, 0.4);
}

.btn-submit:active {
  transform: translateY(-2px) scale(0.98);
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--red-primary) 0%, #c00520 50%, var(--red-dark) 100%);
}

.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid var(--gold-primary);
}

.rating-overview {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.score-total {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.8;
}

.rating-stars {
  margin: 10px 0;
}

.rating-stars i {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin: 0 2px;
}

.rating-count {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.9;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-label {
  min-width: 45px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-label i {
  font-size: 0.8rem;
}

.bar-container {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  border-radius: 6px;
  transition: width 1s ease;
}

.bar-count {
  min-width: 30px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.feedback-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--gold-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 213, 0, 0.3);
}

.feedback-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  border: 2px dashed var(--gold-primary);
}

.typing-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.typing-avatar i {
  color: var(--red-dark);
  font-size: 1.2rem;
}

.typing-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.typing-text {
  color: var(--white);
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* ===== Trust Section ===== */
.trust {
  padding: 50px 0;
  background: linear-gradient(180deg, #8b0000 0%, #660000 100%);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.trust-list li {
  padding: 15px 20px;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(255, 213, 0, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li i {
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #1a0a0a 0%, #0d0505 100%);
  padding: 70px 0 30px;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand .logo-icon {
  font-size: 3rem;
}

.footer-brand .logo-text {
  font-size: 2.5rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  font-size: 1.05rem;
}

.footer-contact h4 {
  color: var(--gold-primary);
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-contact p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: var(--red-dark);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(255, 213, 0, 0.5);
  animation: ctaShake 0.5s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.float-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 213, 0, 0.7);
  animation: none;
}

.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(0, 132, 255, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  animation: ctaShake 0.5s ease-in-out infinite;
  animation-delay: 0.25s;
}

.messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 132, 255, 0.7);
  animation: none;
}

.messenger-btn img {
  width: 30px;
  height: 30px;
}

@keyframes ctaShake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
    padding: 0 20px;
  }

  .hero-image {
    order: 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1 .highlight {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .desc-item {
    grid-template-columns: 1fr;
  }

  .desc-item.reverse {
    direction: ltr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Product Info & Description */
  .product-info,
  .product-description {
    padding: 40px 0;
  }

  .info-content {
    padding: 25px 20px;
  }

  .info-list li {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  .desc-item {
    padding: 20px;
    gap: 20px;
    margin-bottom: 30px;
  }

  .desc-text h3 {
    font-size: 1.2rem;
  }

  .desc-text p {
    font-size: 0.95rem;
  }

  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: url("https://w.ladicdn.com/s800x550/67e62edfe8a7ba00111821fa/a-20251125190230-a0nad.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 20px 15px 25px !important;
    min-height: 160px;
    z-index: 1000;
  }

  .header .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
  }

  .header .logo {
    width: auto;
    flex-shrink: 0;
  }

  .header .logo-img {
    height: 50px;
  }

  .header-mobile-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    margin-left: -75px;
  }

  .header-mobile-cta {
    display: flex !important;
    position: relative;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .header-mobile-cta .bracket-left,
  .header-mobile-cta .bracket-right {
    height: 40px !important;
  }

  /* Framed text with animations */
  .header-mobile-cta span {
    font-size: 0.85rem !important;
    font-weight: 700;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border: 2px solid var(--gold-primary);
    border-radius: 6px;
    box-shadow:
      0 0 8px rgba(255, 213, 0, 0.5),
      0 0 15px rgba(255, 213, 0, 0.3),
      inset 0 0 8px rgba(255, 213, 0, 0.2);
    animation: textBlink 1s ease-in-out infinite, textShimmer 2s linear infinite;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }

  .header-mobile-cta span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 213, 0, 0.4), transparent);
    animation: textRunning 1.5s linear infinite;
  }

  @keyframes textBlink {

    0%,
    100% {
      opacity: 1;
      text-shadow:
        0 0 5px var(--gold-primary),
        0 0 10px var(--gold-primary),
        0 0 15px var(--gold-primary);
    }

    50% {
      opacity: 0.85;
      text-shadow:
        0 0 10px var(--gold-primary),
        0 0 20px var(--gold-primary),
        0 0 30px var(--gold-primary),
        0 0 40px var(--gold-light);
    }
  }

  @keyframes textRunning {
    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }

  @keyframes textShimmer {
    0% {
      border-color: var(--gold-primary);
    }

    50% {
      border-color: var(--gold-light);
    }

    100% {
      border-color: var(--gold-primary);
    }
  }

  .header-mobile-title {
    display: block !important;
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 20px;
    text-shadow:
      0 0 10px rgba(255, 213, 0, 0.8),
      0 0 20px rgba(255, 213, 0, 0.5),
      2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    animation: titleGlow 1.5s ease-in-out infinite alternate, titleSlide 3s ease-in-out infinite;
    position: relative;
  }

  .header-mobile-subtitle {
    display: block !important;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
    animation: subtitleFade 2s ease-in-out infinite alternate;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .logo-img {
    height: 55px !important;
  }

  .nav {
    display: none;
  }

  @keyframes ctaPulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }
  }

  @keyframes titleGlow {
    0% {
      text-shadow:
        0 0 5px rgba(255, 213, 0, 0.6),
        0 0 10px rgba(255, 213, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    100% {
      text-shadow:
        0 0 15px rgba(255, 213, 0, 1),
        0 0 30px rgba(255, 213, 0, 0.7),
        0 0 45px rgba(255, 213, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    }
  }

  @keyframes titleSlide {

    0%,
    100% {
      transform: translateX(0);
    }

    25% {
      transform: translateX(-3px);
    }

    75% {
      transform: translateX(3px);
    }
  }

  @keyframes subtitleFade {
    0% {
      opacity: 0.7;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    100% {
      opacity: 1;
      text-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.5);
    }
  }

  .header-mobile-cta {
    animation: ctaPulse 2s ease-in-out infinite;
  }

  .hero {
    padding: 180px 0 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-text {
    order: 2;
    padding: 25px;
    background-image: url("https://w.ladicdn.com/s750x500/67e62edfe8a7ba00111821fa/pngtree-chinese-new-year-spring-festival-2023-background-red-lantern-frame-image_1472108-20251125215004-fhhxl.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
  }

  .hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 5, 24, 0.75);
    z-index: 0;
  }

  .hero-text>* {
    position: relative;
    z-index: 1;
  }

  .hero-image {
    order: 1;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h1 .highlight {
    font-size: 2.2rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .price-box {
    padding: 18px 22px;
  }

  .new-price {
    font-size: 2rem;
  }

  .old-price {
    font-size: 1rem;
  }

  .countdown {
    justify-content: center;
  }

  .countdown-item {
    padding: 10px 12px;
    min-width: 50px;
  }

  .countdown-item span {
    font-size: 1.3rem;
  }

  .countdown-item small {
    font-size: 0.65rem;
  }

  .btn-order {
    padding: 16px 35px;
    font-size: 1.1rem;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  /* Reviews responsive */
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px 20px;
  }

  .score-number {
    font-size: 2.8rem;
  }

  .feedback-list {
    max-width: 100%;
    gap: 20px;
  }

  .typing-indicator {
    padding: 15px 20px;
  }

  .typing-text {
    font-size: 0.9rem;
  }

  .pricing-card.popular,
  .pricing-card.best-deal {
    transform: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-wrapper {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .floating-cta {
    bottom: 20px;
    right: 15px;
    gap: 12px;
  }

  .float-btn,
  .messenger-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn {
    font-size: 1.2rem;
  }

  .messenger-btn img {
    width: 26px;
    height: 26px;
  }

  .price-box {
    padding: 20px;
  }

  .new-price {
    font-size: 2.2rem;
  }
}

/* ===== Order Notification Popup ===== */
.order-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 213, 0, 0.3);
  border: 2px solid var(--gold-primary);
  z-index: 1500;
  max-width: 350px;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.order-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  flex-shrink: 0;
}

.notification-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-content {
  flex: 1;
}

.notification-content p {
  margin: 0;
  line-height: 1.4;
}

.notification-name {
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.notification-phone {
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0.9;
}

.notification-phone i {
  color: var(--gold-primary);
  margin-right: 5px;
}

.notification-order {
  color: var(--white);
  font-size: 0.9rem;
}

.notification-order strong {
  color: var(--gold-light);
}

.notification-time {
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.8;
}

.notification-time i {
  margin-right: 5px;
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-size: 0.9rem;
}

.notification-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .order-notification {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    bottom: 80px;
  }
}

/* ===== Success Message ===== */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 50px 70px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  animation: fadeIn 0.4s ease;
  border: 4px solid var(--gold-primary);
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--red-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.success-message p {
  color: #555;
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  backdrop-filter: blur(3px);
}

/* ===== Image Lightbox ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxZoom 0.4s ease;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content video {
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--gold-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
}

.lightbox-close:hover {
  background: var(--white);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close i {
  color: var(--red-dark);
  font-size: 1.2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav i {
  color: var(--red-dark);
  font-size: 1.3rem;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-counter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -45px;
    right: 10px;
  }
}

/* ===== Additional Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease forwards;
}

/* ===== Font Awesome Icon Styling ===== */
.section-title i {
  margin-right: 10px;
  color: var(--gold-primary);
}

.pricing .section-title i {
  color: var(--gold-primary);
}

.feature-icon i {
  color: var(--red-primary);
  transition: transform 0.3s, color 0.3s;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.15);
  color: var(--gold-dark);
}

.trust-icon i {
  color: var(--red-primary);
  transition: transform 0.3s;
}

.trust-item:hover .trust-icon i {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
  color: var(--gold-primary);
}

.fire i {
  color: var(--red-primary);
}

.combo-ship i {
  margin-right: 5px;
}

.form-group label i {
  margin-right: 8px;
  color: var(--red-primary);
  width: 18px;
  text-align: center;
}

.btn-order i,
.btn-submit i,
.float-btn i {
  margin-right: 8px;
}

.countdown-label i {
  margin-right: 8px;
}

.badge i {
  margin-right: 6px;
}

.highlight-box i {
  margin-right: 8px;
  color: var(--gold-dark);
}

.spec-icon i {
  color: var(--red-primary);
  width: 20px;
  text-align: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--gold-primary);
  width: 20px;
  text-align: center;
}

.footer-bottom i {
  margin-left: 5px;
  color: var(--gold-primary);
}

.bag-decoration i {
  color: var(--gold-primary);
  animation: swing 2s ease-in-out infinite;
}

.thumb i {
  color: var(--red-primary);
  transition: transform 0.3s;
}

.thumb:hover i,
.thumb.active i {
  transform: scale(1.1);
}