/* ============================================
   МОРЕ СМАКУ — Design System
   Premium Caviar Landing Page
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #4A2C2A;
  --primary-rgb: 74, 44, 42;
  --accent: #DAA520;
  --accent-rgb: 218, 165, 32;
  --bg-light: #F8F3EC;
  --bg-dark: #2F2423;
  --bg-black: #0B0B0C;
  --neutral-soft: #ECE7DC;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #475569;
  /* Slightly darker for better contrast */
  --text-light: #64748B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --radius-full: 9999px;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Bodoni Moda', serif;
  --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  /* 18px base */
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

/* --- Grain Texture Overlay --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 3rem;
  }
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes premium-reveal {
  0% {
    opacity: 0;
    transform: translateY(60px) skewY(2deg);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-premium-reveal {
  opacity: 0;
  animation: premium-reveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-in-right {
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

/* Stagger delays */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1rem;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

@media (min-width: 1024px) {
  .site-header {
    height: 100px;
    padding: 0 4rem;
  }
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Messengers in Header */
.header-messengers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.messenger-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.messenger-link svg {
  width: 20px;
  height: 20px;
}

.messenger-link.viber {
  background: #7360f2;
  color: white;
}

.messenger-link.telegram {
  background: #0088cc;
  color: white;
}

.messenger-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .header-messengers {
    gap: 0.5rem;
  }

  .messenger-link {
    width: 32px;
    height: 32px;
  }

  .messenger-link svg {
    width: 18px;
    height: 18px;
  }
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--primary);
  transition: background var(--transition-fast);
}

.icon-btn:hover {
  background: rgba(var(--primary-rgb), 0.06);
}

.icon-btn .material-symbols-outlined {
  font-size: 1.75rem;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: font-size var(--transition);
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 1.125rem;
  }
}

.brand-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(var(--primary-rgb), 0.7);
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .desktop-nav a {
    font-size: 0.875rem;
  }

  .icon-btn#menuBtn {
    display: none;
  }
}

.desktop-nav a {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition-fast);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.desktop-nav a:hover {
  color: var(--accent);
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Header Order Button */
.header-order-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
  transition: all var(--transition-fast);
  margin-right: 0.5rem;
  white-space: nowrap;
}

.header-order-btn:hover {
  background: #c69520;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.4);
}

@media (max-width: 480px) {
  .header-order-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
}

/* Order Icon (replaces cart) - if needed later */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 600px;
  padding: 5rem 1rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(var(--primary-rgb), 0.3) 0%,
      rgba(var(--primary-rgb), 0.6) 50%,
      var(--primary) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(var(--accent-rgb), 0.15), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 900px;
    margin-right: auto;
    gap: 2rem;
  }
}

.hero-badge-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  width: fit-content;
  backdrop-filter: blur(8px);
  animation: pulse-soft 2s infinite ease-in-out;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--white);
  text-wrap: balance;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-cta-group {
    flex-direction: row;
    max-width: 500px;
  }
}

/* --- CTA Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  min-height: 80px;
  padding: 0 2rem;
  font-size: 1.375rem;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.35);
}

.btn-primary:hover {
  background: #c69520;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  min-height: 72px;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-accent {
  min-height: 72px;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
}

.btn-accent:hover {
  background: #c69520;
  transform: translateY(-2px);
}

.btn-accent .material-symbols-outlined {
  font-size: 1.5rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--primary);
  padding: 1.25rem 1rem;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-item .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.25rem;
}

/* ============================================
   SECTIONS — Common
   ============================================ */
.section {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 2rem;
  }
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--primary);
  line-height: 1;
  text-wrap: balance;
}

.section-title--white {
  color: var(--white);
}

.section-desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 900px;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 4rem;
}

/* ============================================
   WHY CHEAPER SECTION
   ============================================ */
.why-cheaper {
  background: rgba(var(--primary-rgb), 0.03);
}

.why-cheaper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .why-cheaper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.compare-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(var(--primary-rgb), 0.05);
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.compare-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.compare-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CTA Messengers --- */
.cta-messengers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn-messenger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-messenger svg {
  width: 24px;
  height: 24px;
}

.btn-messenger.viber {
  background: #7360f2;
}

.btn-messenger.telegram {
  background: #0088cc;
}

.btn-messenger:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.cta-tel {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-top: 0.5rem;
  transition: color var(--transition);
}

.cta-tel:hover {
  color: var(--accent);
}

@media (max-width: 480px) {
  .cta-tel {
    font-size: 1.75rem;
  }
}

.compare-card--good {
  border: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.compare-card--good::before {
  content: 'НАШ ВИБІР';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 900;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.compare-card--good .compare-icon {
  background: #F0FDF4;
  color: #16A34A;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.compare-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
}

.compare-icon .material-symbols-outlined {
  font-size: 2rem;
}

/* ============================================
   COMPARISON TABLE SECTION (PREMIUM REDESIGN)
   ============================================ */
.comparison {
  background: var(--bg-light);
}

/* --- Comparison Redesign: Premium Feature Grid --- */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.05);
  display: flex;
  flex-direction: column;
}

.comp-card-header {
  padding: 1.5rem;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comp-card-header .material-symbols-outlined {
  color: var(--accent);
  font-size: 2rem;
}

.comp-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

.comp-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comp-item--best {
  background: rgba(var(--accent-rgb), 0.06);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.comp-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comp-brand {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.comp-item--best .material-symbols-outlined {
  color: #10B981;
  font-variation-settings: 'FILL' 1;
}

.comp-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.comp-item--others {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 0.5rem;
}

.comp-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.comp-market {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comp-value-muted {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.8;
}


/* Video placeholder */
.video-block {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  cursor: pointer;
}

.video-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.video-block:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-block:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.5);
}

.play-btn .material-symbols-outlined {
  font-size: 2.5rem;
}

/* Inline video playing state */
.inline-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 2;
}

.video-block.video-playing .inline-video {
  display: block;
}

.video-block.video-playing img,
.video-block.video-playing .play-btn {
  display: none !important;
}

/* Product Features List */
.product-features {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: rgba(var(--accent-rgb), 0.03);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.feature-list-mini {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.feature-item-mini .check-icon {
  color: #10B981;
  /* Green checkmark */
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-weight {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Dynamic Pricing container from the provided image */
.dynamic-pricing-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  /* Dark background as per ref */
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  color: #fff;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #EAB308;
  /* Yellow/Gold for label */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.current-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-value {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 4px;
}

.qty-btn {
  background: none;
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 6px;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-input {
  width: 36px;
  background: none;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  appearance: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
  }

  .feature-item {
    justify-content: center;
    padding: 2rem 2.5rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-item .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-item p {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--text-dark);
}

/* --- Promo Banner --- */
.promo-banner {
  padding: 4rem 1rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.promo-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.promo-content {
  background: rgba(var(--primary-rgb), 0.4);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.promo-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.promo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .promo-banner {
    padding: 3rem 1rem;
  }

  .promo-content {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
/* --- Product Card Redesign --- */
.products-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--primary-rgb), 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: #C48E0E;
  /* Ochre Gold */
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(196, 142, 14, 0.3);
}

.scarcity-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  color: var(--primary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  animation: pulse-soft 3s infinite ease-in-out;
}

.scarcity-badge--low {
  background: #FFF7ED;
  color: #EA580C;
  border-color: #FED7AA;
}

.scarcity-badge--critical {
  background: #FEF2F2;
  color: #DC2626;
  border-color: #FECACA;
  animation: pulse-soft 1.5s infinite ease-in-out;
}

.product-info {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin: 0;
}

.product-unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: -0.375rem 0 0;
}

/* Pricing Box */
.pricing-box {
  background: #FCFAF4;
  /* Cream / Off-white */
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-main {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-dark);
}

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-tier {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.tier-discount {
  color: #16A34A;
  /* Green */
}

.tier-discount .material-symbols-outlined {
  font-size: 1.1rem;
  color: #EA580C;
  /* Orange Spark */
  font-variation-settings: 'FILL' 1;
}

.tier-shipping {
  color: var(--text-muted);
  opacity: 0.8;
}

.tier-shipping .material-symbols-outlined {
  font-size: 1.1rem;
}

/* CTA Button */
.btn-order-alt {
  width: 100%;
  background: #B8860B;
  /* Primary Gold/Ochre */
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.btn-order-alt:hover {
  background: #9A6E09;
  transform: scale(1.02);
}

.btn-order-alt .material-symbols-outlined {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
}

/* Trust footer */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #16A34A;
  /* Secure Green */
  font-weight: 600;
}

.form-trust .material-symbols-outlined {
  font-size: 1.1rem;
}

/* Input Refining */
.card-input-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid #E5E7EB;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.card-input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Mix-Set Selectors & Styling */
.mix-selectors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--primary-rgb), 0.05);
}

.mix-selector-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mix-selector-item label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mix-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #E5E7EB;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mix-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.mix-pricing {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.pricing-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.current-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
}

/* Mix Card Desktop Layout */
@media (min-width: 1024px) {
  .product-card.mix-card {
    grid-column: span 2;
    max-width: 100%;
    margin: 0;
  }

  .product-card.mix-card .product-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem;
  }

  .mix-selectors {
    margin-top: 0;
    grid-row: span 3;
  }

  .mix-card .product-name {
    grid-column: 1 / -1;
    font-size: 2.5rem;
  }

  .mix-card .product-weight {
    grid-column: 1 / -1;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .mix-pricing {
    grid-column: 2;
    margin-top: 0;
  }

  .mix-form {
    grid-column: 2;
  }

  .mix-card .form-trust {
    grid-column: 2;
  }
}

/* Reviews Grid on Desktop */
@media (min-width: 1024px) {
  .screenshots-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: visible;
    padding: 2rem 0;
  }

  .screenshot-slide {
    flex: none;
    width: 100%;
  }

  .screenshots-carousel .carousel-nav {
    display: none;
  }
}

.process-header {
  text-align: center;
}

.process-quote {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  font-style: italic;
  margin-top: 0.5rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 3.5rem;
}

@media (min-width: 1024px) {
  .timeline {
    flex-direction: row;
    padding-left: 0;
    gap: 3rem;
    justify-content: space-between;
    margin-top: 5rem;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .timeline::before {
    left: 0;
    right: 0;
    top: 24px;
    width: 100%;
    height: 3px;
    bottom: auto;
  }
}

.timeline-number {
  position: absolute;
  left: -3.5rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

@media (min-width: 1024px) {
  .timeline-number {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.timeline-item {
  position: relative;
}

@media (min-width: 1024px) {
  .timeline-item {
    flex: 1;
    text-align: center;
    padding-top: 4.5rem;
  }
}

.timeline-item h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  padding-top: 0.5rem;
}

.timeline-item p {
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
/* ============================================
   REVIEWS SECTION (OVERHAUL)
   ============================================ */
.reviews {
  background: var(--bg-light);
}

/* Reviews Summary */
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-score {
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.rating-big-star {
  font-size: 4rem;
  color: #DC2626;
  /* Red star as per ref */
  margin-top: -0.5rem;
}

.reviews-count-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Star Bars */
.star-breakdown {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.star-row-stars {
  display: flex;
  gap: 2px;
  color: #DC2626;
  width: 80px;
}

.star-row-stars .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 1;
}

.star-bar {
  flex-grow: 1;
  height: 8px;
  background: #F3F4F6;
  border-radius: 4px;
  overflow: hidden;
}

.star-bar-fill {
  height: 100%;
  background: #6B7280;
  /* Gray fill as per ref */
  border-radius: 4px;
}

.star-row-count {
  width: 30px;
  color: var(--text-muted);
  text-align: right;
}

/* Review Actions */
.reviews-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
}

.btn-write-review {
  flex-grow: 1;
  border: 1.5px solid #E5E7EB;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
}

.btn-filter-reviews {
  width: 48px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  background: var(--white);
}

/* Reviews Screenshots Carousel */
.reviews-screenshots {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.screenshots-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshots-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshot-slide {
  flex: 0 0 380px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: zoom-in;
}

.screenshot-slide:hover {
  transform: translateY(-8px);
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--primary);
}

.carousel-nav:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

@media (min-width: 1300px) {
  .carousel-nav.prev {
    left: -27px;
  }

  .carousel-nav.next {
    right: -27px;
  }
}

@media (max-width: 768px) {
  .screenshot-slide {
    flex: 0 0 280px;
  }

  .carousel-nav {
    display: none;
  }

  .reviews-screenshots {
    margin-bottom: 2.5rem;
    padding: 0;
  }
}

/* Reviews Grid & Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card-media {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure equal height in grid */
}

.review-card-text-only {
  border: 1px solid #f0f0f0;
  justify-content: center;
  min-height: 200px;
  /* Base height for text reviews */
}

/* Quote icon for text-only reviews to add premium feel */
.review-card-text-only::before {
  content: 'format_quote';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #F3F4F6;
  pointer-events: none;
}

.review-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mini Player */
.mini-player-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mini-player-overlay .material-symbols-outlined {
  color: var(--white);
  font-size: 2rem;
  font-variation-settings: 'FILL' 1;
}

.review-media-info {
  padding: 0.75rem;
  /* Reduced padding for 2-column mobile layout */
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .review-media-info {
    padding: 1.25rem;
    gap: 0.5rem;
  }
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  /* Vertical stack meta on mobile to save horizontal space */
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .reviewer-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
}

.reviewer-name {
  font-weight: 800;
  color: var(--text-dark);
}

.reviewer-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3B82F6;
  /* Blue Verified */
}

.review-date {
  font-size: 0.85rem;
  color: #9CA3AF;
  font-weight: 500;
}

.review-stars-small {
  display: flex;
  gap: 2px;
  color: #DC2626;
  margin-top: 0.25rem;
}

.review-stars-small .material-symbols-outlined {
  font-size: 0.875rem;
  font-variation-settings: 'FILL' 1;
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-badges {
  display: grid;
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 2px solid rgba(var(--primary-rgb), 0.05);
  transition: transform var(--transition), border-color var(--transition);
}

.trust-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.trust-badge .material-symbols-outlined {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.trust-badge h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
}

.trust-badge p {
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================
   DELIVERY & PAYMENT SECTION
   ============================================ */
.delivery-payment {
  background: #f8f5f0;
  /* Light cream background */
}

.delivery-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.delivery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform var(--transition);
}

.delivery-item:hover {
  transform: translateY(-5px);
}

.delivery-icon-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(74, 44, 42, 0.2);
}

.delivery-icon-wrapper .material-symbols-outlined {
  font-size: 3rem;
}

.delivery-content {
  flex: 1;
}

.delivery-content h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.delivery-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

@media (min-width: 768px) {
  .delivery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================
   CERTIFICATES SECTION
   ============================================ */
.certificates {
  background: var(--white);
  padding: 5rem 1rem;
  text-align: center;
}

.certificate-wrapper {
  max-width: 500px;
  margin: 3rem auto 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certificate-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-hint {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============================================
   CTA / CONTACT SECTION
   ============================================ */
.cta-section {
  background: var(--primary);
  border-radius: 2.5rem 2.5rem 0 0;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  text-wrap: balance;
}

.cta-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
  background: rgba(var(--primary-rgb), 0.05);
  /* Soft dark-tinted background */
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.phone-input {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius);
  padding: 1.125rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  width: 100%;
  transition: all var(--transition-fast);
}

.phone-input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.cta-phone-link {
  margin-top: 1rem;
}

.cta-phone-link p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.cta-phone-link a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 8px;
  text-decoration-thickness: 4px;
  transition: color var(--transition);
}

/* ============================================
   VIDEO MODAL (REELS STYLE)
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1005;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .video-container {
    height: 90vh;
    border-radius: 24px;
  }
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-order-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

.video-modal.active .video-order-card {
  transform: translateY(0);
}

.video-order-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-order-product {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.video-order-product img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.video-order-text h6 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.video-order-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.video-order-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
}

.btn-video-order {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 1.25rem;
  padding: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-video-order:hover {
  transform: translateY(-3px);
  background: #f0b41a;
  /* Lighter gold */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-video-order:active {
  transform: translateY(-1px);
}

.cta-phone-link a:hover {
  color: var(--accent);
}

/* ============================================
   FLOATING MINI PLAYER
   ============================================ */
.floating-mini-player {
  position: fixed;
  left: 20px;
  bottom: 160px;
  z-index: 2147483647;
  width: 110px;
  height: 196px;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
}

.floating-mini-player.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.floating-mini-player:hover {
  transform: scale(1.05) translateY(-5px);
}

.mini-player-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.mini-player-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.mini-player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.mini-player-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  z-index: 2;
  pointer-events: none;
}

.mini-player-close {
  align-self: flex-end;
  pointer-events: auto;
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  transition: transform 0.2s;
}

.mini-player-close:hover {
  transform: scale(1.1);
}

.mini-player-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.floating-mini-player:hover .mini-player-play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-mini-player {
    bottom: 120px;
    left: 15px;
    width: 90px;
    height: 160px;
  }
}

/* Fix: Move mini-player to background when full-screen modal is active */
.video-modal.active~.floating-mini-player {
  z-index: 100;
  opacity: 0.3;
  filter: blur(4px);
  pointer-events: none;
  transform: scale(0.9) translateX(-20px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-black);
  padding: 4rem 0 2rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-item .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 2px;
}

.footer-item p,
.footer-item div {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

.footer-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-top: 0.5rem;
}

.footer-phone:hover {
  color: var(--white);
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 120px;
    /* Space for sticky footer bar */
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal-links {
    align-items: center;
  }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: 300px;
  height: 100%;
  background: var(--bg-light);
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  transition: background var(--transition-fast);
}

.mobile-menu-nav a:hover {
  background: rgba(var(--primary-rgb), 0.06);
}

.mobile-menu-nav a .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--accent);
}

/* ============================================
   SCROLL ANIMATION (Intersection Observer)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for cards */
.reveal-stagger:nth-child(1) {
  transition-delay: 0.0s;
}

.reveal-stagger:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-stagger:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-stagger:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============================================
   DESKTOP ENHANCEMENTS
   ============================================ */
@media (min-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 6rem 2rem 4rem;
  }

  .hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
  }

  .hero-cta-group {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-cta-group .btn {
    flex: 1;
  }

  .why-cheaper-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 80vh;
    padding: 8rem 3rem 5rem;
  }

  .hero-content {
    max-width: 720px;
  }

  .why-cheaper .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .process-section .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .cta-section {
    padding: 5rem 3rem;
  }
}


/* ============================================
   CARD ORDER FORMS
   ============================================ */
.card-order-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-order-form:focus-within {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-2px);
}

.card-order-form--gift {
  border-top: none;
  margin-top: 2rem;
  background: rgba(var(--primary-rgb), 0.03);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.card-input-group {
  position: relative;
}

.card-input-group input {
  width: 100%;
  height: 52px;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: all var(--transition);
}

.card-input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.card-input-group input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.card-order-form .btn-order,
.card-order-form .btn {
  margin-top: 0.25rem;
}

/* ============================================
   MIX SELECTOR
   ============================================ */
.mix-selector-item {
  margin-bottom: 1rem;
}

.mix-selector-item:last-child {
  margin-bottom: 0;
}

.mix-selector-item label {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.mix-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  background: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mix-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.mix-pricing {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.pricing-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.mix-pricing .price-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.mix-pricing .price-currency {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.mix-form .btn-order-alt {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.mix-form .btn-order-alt:hover {
  background: #c8961d;
  transform: translateY(-2px);
}

.mix-form .btn-order-alt:active {
  transform: translateY(0);
}

/* ============================================
   WHY BEST SECTION
   ============================================ */
.why-best {
  background: var(--bg-light);
  overflow: hidden;
}

.why-best-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .why-best-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-best-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  height: 100%;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-rgb), 0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-icon-box .material-symbols-outlined {
  font-size: 1.75rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.feature-card-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  /* Increased for better readability */
}

/* --- Lead Magnet Section --- */
.lead-magnet {
  background: var(--bg-dark);
  color: var(--white);
  padding: 4rem 1rem;
}

.lead-magnet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(var(--accent-rgb), 0.05);
  border: 2px dashed rgba(var(--accent-rgb), 0.4);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
}

.lead-magnet-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lead-magnet-icon .material-symbols-outlined {
  font-size: 2.5rem;
}

.lead-magnet-text h3 {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.lead-magnet-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead-magnet-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.lead-magnet-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}

.lead-magnet-form input {
  flex: 1;
  min-width: 200px;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
}

/* Purchase Notification (Social Proof) */
.purchase-notification {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
  z-index: 95;
  border-left: 4px solid var(--accent);
  max-width: 320px;
  pointer-events: none;
}

.purchase-notification.show {
  transform: translateX(0);
}

.p-notif-avatar {
  width: 44px;
  height: 44px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.p-notif-content {
  display: flex;
  flex-direction: column;
}

.p-notif-user {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
}

.p-notif-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.p-notif-time {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .purchase-notification {
    left: auto;
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .purchase-notification {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: none;
  }
}




/* ============================================
   STICKY FOOTER CTA
   ============================================ */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.4rem 0;
  background: rgba(var(--primary-rgb), 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-top: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.sticky-footer-bar.visible {
  transform: translateY(0);
}

.sticky-footer-btn {
  width: 100%;
  max-width: 500px;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
  animation: pulse-gold 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

.sticky-footer-btn:hover {
  transform: scale(1.02);
  background: #c8961d;
  box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.6);
}

.sticky-footer-btn .material-symbols-outlined {
  font-size: 1.2rem;
  animation: bounce-small 2s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
  }

  50% {
    box-shadow: 0 10px 50px rgba(var(--accent-rgb), 0.7);
  }

  100% {
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
  }
}

@keyframes bounce-small {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .sticky-footer-bar {
    padding: 0.25rem 1rem;
  }

  .sticky-footer-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
}

input.valid {
  border-color: #4CAF50 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%234CAF50'%3E%3Cpath d='m424-312 282-282-56-56-226 226-114-114-56 56 170 170Zm56 232q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 3rem !important;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(var(--primary-rgb), 0.05);
}

.trust-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trust-badge .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--accent);
  font-variation-settings: 'FILL' 1;
}

.trust-badge h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.trust-badge p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   ANTI-COPY PROTECTION
   ============================================ */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection in forms */
input,
textarea,
select,
.card-input-group,
.phone-input-wrapper {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image dragging */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* ============================================
   FLOATING MINI PLAYER
   ============================================ */
.floating-mini-player {
  position: fixed;
  bottom: 5.5rem;
  /* Above sticky footer */
  right: 1.5rem;
  width: 140px;
  aspect-ratio: 9/16;
  z-index: 1000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(var(--accent-rgb), 0.3);
  transform: translateX(120%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: #000;
}

.floating-mini-player.visible {
  transform: translateX(0);
}

.mini-player-container,
.mini-player-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.mini-player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-player-ui {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 40%);
  pointer-events: none;
}

.mini-player-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.mini-player-close:hover {
  transform: scale(1.1);
}

.mini-player-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-mini-player:not(.video-playing) .mini-player-play-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-mini-player {
    bottom: 5rem;
    right: 1rem;
    width: 110px;
  }
}