/* ==========================================================================
   PAPEL PLUS SpA — STYLESHEET (OFFICIAL BRAND THEME)
   Identidad Oficial Basada en el Logo Verde Origami / Artesanal
   ========================================================================== */

:root {
  /* Official Brand Colors (Logo Origami Green) */
  --primary: #42ba42;
  --primary-hover: #359d35;
  --primary-light: #eef9ee;
  --primary-dark: #1b681b;
  --primary-gradient: linear-gradient(135deg, #42ba42 0%, #1b681b 100%);
  
  --brand-green-accent: #6ee7b7;
  --brand-green-subtle: #dcfce7;
  
  --gold: #d4af37;
  --gold-light: #fef9ea;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
  
  --accent: #e65100;
  --accent-light: #fff3e0;
  
  /* Neutral Palette */
  --bg-main: #f8faf7;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-alt: #eff5ee;
  
  --text-main: #182419;
  --text-muted: #4e5f50;
  --text-light: #7c8e7e;
  
  --border-color: rgba(66, 186, 66, 0.22);
  --border-subtle: #e2ede2;
  
  /* Status & Functional */
  --wa-color: #25d366;
  --wa-dark: #128c7e;
  --success: #2e7d32;
  --warning: #ed6c02;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(24, 36, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(46, 139, 46, 0.12);
  --shadow-lg: 0 16px 40px rgba(46, 139, 46, 0.16);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: 1px solid rgba(255, 255, 255, 0.85);
  --glass-blur: blur(14px);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Alex Brush', cursive;
  
  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Helpers */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.hidden { display: none !important; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--tr-smooth);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(66, 186, 66, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(66, 186, 66, 0.45);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #155715 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-wa-header {
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--wa-dark);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.btn-wa-header:hover {
  background: var(--wa-color);
  color: #ffffff;
}

.btn-wa-solid {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-wa-outline {
  background: transparent;
  border: 1.5px solid var(--wa-color);
  color: var(--wa-dark);
}

.btn-wa-outline:hover {
  background: rgba(37, 211, 102, 0.1);
}

.btn-wa-full {
  background: var(--wa-color);
  color: #ffffff;
  width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #18331b 0%, #254a2a 100%);
  color: #f2f9f3;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-item i {
  color: var(--gold);
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.announcement-right .divider {
  opacity: 0.4;
}

.top-wa-link {
  color: #a3f7bf;
  font-weight: 600;
}

.top-wa-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--tr-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(46, 139, 46, 0.25);
  border: 2px solid #ffffff;
  transition: transform var(--tr-smooth);
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(15deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-name small {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--primary-dark);
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--tr-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.special-link {
  color: var(--primary-dark);
  font-weight: 600;
  background: var(--primary-light);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.nav-link.special-link::after {
  display: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.action-btn, .cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--tr-fast);
  position: relative;
}

.action-btn:hover, .cart-btn:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.2rem;
}

/* Search Overlay */
.search-overlay-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

.search-inner input {
  flex: 1;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--text-main);
}

.close-search-btn {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.search-results-dropdown {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem 0;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right var(--tr-smooth);
  padding: 1.5rem;
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.close-drawer-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.mobile-nav-links {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
}

.mobile-link.highlight {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}

.mobile-drawer-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.backdrop-layer {
  position: fixed;
  inset: 0;
  background: rgba(24, 36, 25, 0.5);
  backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.backdrop-layer.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  top: -100px;
  left: -100px;
  background: #a7f3d0;
}

.glow-2 {
  bottom: 0;
  right: -100px;
  background: #fef08a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.hero-chip i {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-item small {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* Hero Media Column */
.hero-card-showcase {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-showcase:hover .hero-main-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--glass-blur);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-top-right {
  top: 20px;
  right: 20px;
}

.badge-bottom-left {
  bottom: 20px;
  left: 20px;
}

.badge-bottom-left i {
  font-size: 1.4rem;
  color: var(--primary);
}

.floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.floating-badge small {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTIONS COMMON STYLING
   ========================================================================== */
section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-color);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   LIVE CUSTOMIZER SECTION
   ========================================================================== */
.customizer-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
  position: relative;
}

.customizer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.customizer-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.customizer-step {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Occasion Pills */
.occasion-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.pill-btn {
  background: var(--bg-main);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--tr-fast);
}

.pill-btn i {
  font-size: 1.15rem;
  color: var(--primary);
}

.pill-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.pill-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(66, 186, 66, 0.2);
}

/* Pack Selector Grid */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.pack-option {
  background: var(--bg-main);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all var(--tr-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.pack-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: #e0e0e0;
  color: #555;
  margin-bottom: 0.2rem;
}

.pack-badge.popular {
  background: var(--primary);
  color: #ffffff;
}

.pack-badge.saving {
  background: #ff9800;
  color: #ffffff;
}

.pack-badge.best {
  background: var(--gold);
  color: #ffffff;
}

.pack-title {
  font-size: 0.92rem;
  color: var(--text-main);
}

.pack-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.pack-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pack-option:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.pack-option.active {
  border-color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(66, 186, 66, 0.25);
}

/* Form Inputs */
.form-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.input-group input, .form-group input, .form-group textarea, .styled-select {
  background: var(--bg-main);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-main);
  transition: border-color var(--tr-fast);
  width: 100%;
}

.input-group input:focus, .form-group input:focus, .form-group textarea:focus, .styled-select:focus {
  border-color: var(--primary);
  background: #ffffff;
}

/* Color Palettes */
.color-palette-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-main);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--tr-fast);
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.color-pill.active {
  background: #ffffff;
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(66, 186, 66, 0.2);
}

/* Add-ons List */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-main);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.addon-item input[type="checkbox"] {
  display: none;
}

.addon-custom-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-color);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr-fast);
}

.addon-item input[type="checkbox"]:checked + .addon-custom-box {
  background: var(--primary);
  border-color: var(--primary);
}

.addon-item input[type="checkbox"]:checked + .addon-custom-box::after {
  content: '✓';
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: bold;
}

.addon-info {
  flex: 1;
}

.addon-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.addon-info small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.addon-calc {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

/* ==========================================================================
   LIVE PREVIEW CARD (MOCKUP)
   ========================================================================== */
.preview-sticky-card {
  position: sticky;
  top: 96px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.preview-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.preview-occasion-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border-color);
}

/* Realistic Souvenir Mockup Frame */
.souvenir-mockup-frame {
  background: #fbfdfa;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mockup-backing-card {
  width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #d5ebd5;
  padding: 1.2rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.mockup-ribbon-bow {
  font-size: 1.4rem;
  margin-top: -0.6rem;
  margin-bottom: 0.2rem;
}

.mockup-header-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* Visual Keychain */
.mockup-keychain-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.4rem 0 0.8rem;
}

.keychain-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.keychain-chain {
  width: 3px;
  height: 14px;
  background: #d4af37;
  margin: 1px 0;
}

.keychain-resin-body {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #bce3eb 60%, #8ecde0 100%);
  border: 2.5px solid #d4af37;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), inset 0 2px 6px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.resin-glitter-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d4af37 1px, transparent 0), radial-gradient(#ffffff 1.5px, transparent 0);
  background-size: 10px 10px, 14px 14px;
  background-position: 0 0, 5px 5px;
  opacity: 0.6;
}

.resin-icon-art {
  font-size: 1.4rem;
  color: #333;
  z-index: 1;
}

.resin-tag-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
  z-index: 1;
  text-transform: capitalize;
}

.mockup-name-plate {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.mockup-date {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.mockup-dedication {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.6rem;
  padding: 0 0.2rem;
  line-height: 1.35;
}

.mockup-footer-brand {
  font-size: 0.65rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}

/* Preview Summary Box */
.preview-summary-box {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-line.total-line {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 700;
}

.total-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.summary-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.preview-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ==========================================================================
   PRODUCT CATALOG
   ========================================================================== */
.catalog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--tr-fast);
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(66, 186, 66, 0.35);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all var(--tr-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-thumb-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}

.product-tag.hot {
  background: #ff5252;
  color: #ffffff;
  border: none;
}

.product-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 600;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.product-pack-info {
  font-size: 0.78rem;
  color: var(--text-light);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

/* ==========================================================================
   PROMOTIONAL BANNER SECTION
   ========================================================================== */
.promo-banner-section {
  background: #ffffff;
}

.promo-card-wrapper {
  background: linear-gradient(135deg, #f0f8ef 0%, #e1f2e0 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #c2e5c0;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.promo-content-col {
  padding: 3.5rem;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ff5722;
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a421b;
  margin-bottom: 1rem;
}

.promo-text {
  font-size: 1.05rem;
  color: #3b603c;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.promo-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #274928;
  font-weight: 500;
}

.promo-features i {
  color: #2e7d32;
}

.promo-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-image-col {
  height: 100%;
  min-height: 380px;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   INSTAGRAM GALLERY
   ========================================================================== */
.gallery-section {
  background: var(--bg-main);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.insta-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 25, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity var(--tr-smooth);
}

.insta-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: #6ee7b7;
}

.insta-overlay p {
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.btn-insta-link {
  font-size: 0.78rem;
  font-weight: 700;
  background: #ffffff;
  color: var(--text-main);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  font-size: 1.05rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reviewer-info small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background: var(--bg-alt);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-arrow {
  color: var(--primary);
  transition: transform var(--tr-smooth);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-smooth), padding var(--tr-smooth);
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.35rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.contact-details-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-details-list span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   SLIDE-OVER CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right var(--tr-smooth);
}

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

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-main);
}

.cart-header-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-header-title i {
  color: var(--primary);
}

.cart-items-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.empty-cart-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 3.5rem;
  color: var(--border-color);
  margin-bottom: 1rem;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-top: 0.2rem;
}

.cart-item-remove-btn {
  color: #e53935;
  font-size: 1.1rem;
  padding: 0.4rem;
  cursor: pointer;
}

.cart-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-selector-box label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.total-row.grand-total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.grand-price {
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.cart-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ==========================================================================
   MODALS (DIALOG TOP-LAYER ANIMATION)
   ========================================================================== */
dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  opacity: 0;
  transform: scale(0.95);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-behavior: allow-discrete;
}

dialog[open] {
  opacity: 1;
  transform: scale(1);
  @starting-style {
    opacity: 0;
    transform: scale(0.95);
  }
}

dialog::backdrop {
  background-color: rgba(24, 36, 25, 0);
  backdrop-filter: blur(0px);
  transition: display 0.3s allow-discrete, overlay 0.3s allow-discrete, background-color 0.3s ease-out;
}

dialog[open]::backdrop {
  background-color: rgba(24, 36, 25, 0.65);
  backdrop-filter: blur(6px);
  @starting-style {
    background-color: rgba(24, 36, 25, 0);
  }
}

.checkout-modal-inner, .quickview-modal-inner, .success-modal-inner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 600px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.checkout-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-main);
}

.checkout-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkout-modal-header h3 i {
  color: var(--primary);
}

.close-modal-btn {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.checkout-modal-body {
  padding: 1.5rem;
}

.checkout-section-box {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.checkout-section-box h4 {
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.payment-method-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.payment-method-card input[type="radio"] {
  accent-color: var(--primary-dark);
}

.payment-method-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.method-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.method-title i {
  color: var(--primary-dark);
}

.method-details small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.bank-details-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.85rem;
}

.bank-details-box h5 {
  color: #166534;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bank-info-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #14532d;
}

.checkout-order-summary {
  background: var(--bg-main);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.co-final-total {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

/* Success Modal */
.success-modal-inner {
  padding: 2.5rem 2rem;
  width: 520px;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.order-id-chip {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-color);
}

.success-instructions-box {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-main);
  text-align: left;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wa-tooltip {
  background: #ffffff;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  max-width: 250px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  animation: floatTooltip 3s ease-in-out infinite alternate;
}

.close-tooltip-btn {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1;
}

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

.floating-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--tr-smooth);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #182619;
  color: #d7e4d8;
  padding: 5rem 0 0;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo-img {
  background: #ffffff;
  padding: 2px;
}

.footer-logo .brand-name {
  color: #ffffff;
}

.footer-logo .brand-tagline {
  color: #a3bfa5;
}

.footer-about-text {
  font-size: 0.88rem;
  color: #a3bfa5;
  line-height: 1.6;
  margin: 1.25rem 0;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  transition: all var(--tr-fast);
}

.footer-social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #a3bfa5;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #a3bfa5;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.payment-badges-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  color: #cfe2d0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: #8fa891;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.crafted-by {
  color: #6ee7b7;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-media-col {
    order: -1;
  }

  .hero-main-img {
    height: 380px;
  }

  .customizer-grid {
    grid-template-columns: 1fr;
  }

  .preview-sticky-card {
    position: static;
  }

  .promo-card-wrapper {
    grid-template-columns: 1fr;
  }

  .promo-image-col {
    min-height: 280px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-right {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .occasion-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-inputs-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
