/*
Theme Name: Aura Colombia 3D Premium Theme
Theme URI: https://auracolombia3d.com
Description: Tema premium codificado a medida para la página de inicio de Aura Colombia 3D, integrado de forma segura con WooCommerce.
Author: Antigravity AI & Google DeepMind Pair Programmer
Author URI: https://deepmind.google
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-colors, custom-menu, featured-images, full-width-template, translation-ready
Text Domain: aura-colombia-3d-theme
*/

/* ==========================================================================
   Aura Colombia 3D Homepage Premium Stylesheet
   Luxury Black, Gold, and Ivory Theme
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --bg-dark-primary: #030303;
  --bg-dark-secondary: #0b0703;
  --bg-dark-tertiary: #130d07;
  
  --bg-cream-primary: #fff7ec;
  --bg-cream-secondary: #fcf1df;
  --bg-cream-card: #ffffff;
  
  --color-gold-base: #d4a033;
  --color-gold-bright: #f2c76b;
  --color-gold-dark: #b87916;
  --color-gold-text-dark: #8a5a16;
  --color-gold-text-accent: #a66c1c;
  
  --text-light: #fff8ea;
  --text-dark: #2a2217;
  --text-muted-light: #b3a795;
  --text-muted-dark: #6e6250;
  
  --border-gold-light: rgba(212, 160, 51, 0.25);
  --border-gold-medium: rgba(212, 160, 51, 0.5);
  --border-gold-solid: #d4a033;
  
  --gold-glow: 0 0 15px rgba(212, 160, 51, 0.2);
  --gold-glow-hover: 0 0 25px rgba(212, 160, 51, 0.45);
  --card-shadow: 0 10px 30px rgba(42, 34, 23, 0.08);
  --card-shadow-hover: 0 15px 40px rgba(42, 34, 23, 0.15);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  
  /* Transition values */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16.25px;
  background-color: var(--bg-dark-primary);
  color: var(--text-light);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Utility Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* --- Reusable Components & Buttons --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-base) 100%);
  color: var(--bg-dark-primary);
  border: 1px solid var(--color-gold-bright);
  box-shadow: var(--gold-glow);
  animation: pulse-btn-glow 3s infinite ease-in-out;
}

/* Shiny Sweep Effect - repeats automatically to attract clicks */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-25deg);
  animation: btn-auto-shine 4s ease-in-out infinite;
}

.btn-primary:hover::before {
  animation: none; /* Disable auto-shine during hover sweep */
  left: 150%;
  transition: 0.5s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-base) 0%, var(--color-gold-bright) 100%);
  box-shadow: 0 0 25px rgba(242, 199, 107, 0.8), var(--gold-glow-hover);
  transform: translateY(-2px) scale(1.04);
  animation: none; /* Disable pulse on hover */
}

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

.btn-outline:hover {
  background: var(--color-gold-base);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 160, 51, 0.2);
}

.btn-help {
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 20px;
}

.btn-icon {
  margin-left: 8px;
  font-size: 1.1rem;
}

/* Section Common Layouts */
.section-cream {
  background-color: var(--bg-cream-primary);
  color: var(--text-dark);
  padding: 80px 0;
  position: relative;
}

.divider-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-gold-medium) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold-text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.65rem;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Elegant Divider Design */
.elegant-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.elegant-divider .line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-base), transparent);
}

.elegant-divider.dark .line {
  background: linear-gradient(90deg, transparent, var(--color-gold-text-dark), transparent);
}

.elegant-divider .paw-icon {
  opacity: 0.85;
}

/* --- 1. HEADER & NAVIGATION --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 160, 51, 0.15);
  transition: var(--transition-smooth);
  transform: translateY(0);
}

body.auraland-home-shell .main-header,
body.auraland-home-shell .aura-theme-header,
body.auraland-subpage-shell .main-header,
body.auraland-subpage-shell .aura-theme-header,
body .main-header,
body .aura-theme-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  transform: none !important;
  top: 0 !important;
}

body.auraland-home-shell .main-footer,
body.auraland-home-shell .aura-theme-footer,
body.auraland-subpage-shell .main-footer,
body.auraland-subpage-shell .aura-theme-footer,
body .main-footer,
body .aura-theme-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.home .aura-home-inline-header,
body.home .elementor-location-header,
body.home .elementor-location-footer {
  display: none !important;
}

body.home .main-header,
body.home .main-footer {
  display: block !important;
}

body.auraland-home-shell {
  padding-top: 0;
}

body.auraland-home-shell .hero-section {
  padding-top: clamp(150px, 16vw, 190px);
}

body.auraland-subpage-shell {
  padding-top: 0;
}

body.auraland-subpage-shell main {
  padding-top: 124px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.brand-logo-img {
  height: 75px;
  width: 75px;
  max-width: 75px;
  max-height: 75px;
  object-fit: contain;
  transition: var(--transition-smooth);
  display: block;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.brand-logo-img:hover {
  transform: scale(1.06);
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  padding: 8px 0;
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-light);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-bright));
  transition: var(--transition-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.header-cta-link .header-cta-label {
  position: relative;
  top: 1px;
}

.action-icon-link {
  color: var(--text-muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 51, 0);
}

.action-icon-link:hover {
  color: var(--color-gold-bright);
  border-color: var(--border-gold-light);
  background-color: rgba(212, 160, 51, 0.05);
}

.cart-icon-link .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-gold-base);
  color: var(--bg-dark-primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Nav Overlay Menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(3, 3, 3, 0.98);
  z-index: 999;
  padding: 40px 24px;
  overflow-y: auto;
  border-top: 1px solid rgba(212, 160, 51, 0.15);
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.mobile-nav-item {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  padding: 10px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-gold-bright);
}

/* --- 2. HERO SECTION --- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 0;
  background-color: var(--bg-dark-primary);
  background-image: radial-gradient(circle at 75% 40%, rgba(138, 90, 22, 0.18) 0%, rgba(3, 3, 3, 0) 60%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 650px;
  padding-left: 50px; /* Pushes the text block further to the right on desktop */
}

.hero-label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-gold-light);
  background-color: rgba(212, 160, 51, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-gold-bright);
}

.hero-title {
  font-size: 3.35rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-light);
  font-weight: 700; /* Bold/negrilla font weight */
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 700; /* Bold/negrilla font weight */
  letter-spacing: 0.2em;
  color: var(--text-muted-light);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.19rem;
  font-family: var(--font-sans);
  color: var(--text-light);
  opacity: 0.95;
  margin-bottom: 36px;
  font-style: normal;
  font-weight: 500;
}

.hero-cta-wrapper {
  margin-bottom: 50px;
}

/* Floating Golden Particles (Background Decoration) */
.gold-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold-bright);
  opacity: 0;
  z-index: 1;
  animation: drift 8s linear infinite;
}

@keyframes drift {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  25% { opacity: 0.6; }
  75% { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(25px) scale(1.3); opacity: 0; }
}

/* Two Large Static Hero Showcases */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.glow-backdrop {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(242, 199, 107, 0.12) 0%, rgba(3, 3, 3, 0) 70%);
  z-index: 1;
}

.hero-showcase-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* 3D Tilt Setup & Frame styling */
.hero-showcase-frame {
  position: absolute;
  background: linear-gradient(135deg, #1f150d, #0f0a06); /* Rich wood matting appearance */
  border: 2px dashed rgba(212, 160, 51, 0.4); /* Base border */
  border: 2.5px solid var(--color-gold-base); /* Outer Gold Bezel */
  border-radius: 12px;
  padding: 14px;
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.9), 
    inset 0 0 20px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(212, 160, 51, 0.15);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 5; /* Sit on top of fixed viewport fireflies */
}

.frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(242, 199, 107, 0.35); /* Inner Gold Line */
  border-radius: 8px;
  overflow: hidden;
  background-color: #030303;
  padding-bottom: 42px;
  transform: translateZ(0px);
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Bulletproof WebKit overflow border-radius 3D clipping fixes */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  backface-visibility: hidden;
}

.frame-inner.tilt-hover {
  transform-style: preserve-3d;
}

.frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  border-bottom: 1.5px solid rgba(212, 160, 51, 0.15);
  display: block;
}

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--color-gold-bright);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(15, 10, 6, 0.95);
  border-top: 1px solid rgba(212, 160, 51, 0.2);
}

/* Specific frame layouts and base positions */
.frame-left {
  width: 310px;
  height: 440px;
  left: -8%;
  top: 3%;
  z-index: 2;
}

.frame-right {
  width: 310px;
  height: 440px;
  right: -8%;
  bottom: 3%;
  z-index: 3;
}

.float-anim {
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

#hero-frame-left.float-anim {
  animation-name: floatLeft;
}

#hero-frame-right.float-anim {
  animation-name: floatRight;
}

@keyframes floatLeft {
  0% { transform: translateY(0) rotate(-3.5deg); }
  100% { transform: translateY(-12px) rotate(-2.5deg); }
}

@keyframes floatRight {
  0% { transform: translateY(0) rotate(3.5deg); }
  100% { transform: translateY(12px) rotate(2.5deg); }
}

.hero-showcase-frame:hover {
  border-color: var(--color-gold-bright);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.9), 
    inset 0 0 15px rgba(0, 0, 0, 0.7),
    var(--gold-glow-hover);
}

/* Dynamic Spotlight Cursor Aura */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(242, 199, 107, 0.07) 0%, rgba(242, 199, 107, 0.01) 50%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1; /* Behind text but above standard canvas */
  opacity: 0;
  transition: opacity 0.5s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: screen;
}

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

.cursor-glow.active {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 199, 107, 0.12) 0%, rgba(242, 199, 107, 0.02) 50%, rgba(0, 0, 0, 0) 70%);
}

.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Bottom Hero Trust Strip */
.hero-trust-strip {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 199, 107, 0.12) 0%, rgba(242, 199, 107, 0) 42%),
    linear-gradient(180deg, rgba(10, 8, 4, 0.98) 0%, rgba(5, 4, 2, 0.98) 100%);
  border-top: 1px solid var(--border-gold-light);
  border-bottom: 1px solid var(--border-gold-light);
  padding: 22px 0;
  width: 100%;
}

.trust-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 14px 20px 16px;
  min-height: 150px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(8, 6, 4, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(212, 160, 51, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  animation: trust-breathe 7s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, transparent, rgba(212, 160, 51, 0.35), transparent);
}

.trust-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 199, 107, 0.08) 0%, rgba(242, 199, 107, 0.03) 48%, rgba(242, 199, 107, 0) 72%),
    rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 0 0 1px rgba(212, 160, 51, 0.12);
  overflow: hidden;
}

.trust-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 0 8px rgba(242, 199, 107, 0.22));
}

.trust-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 3px;
  font-family: var(--font-sans);
  line-height: 1.22;
}

.trust-desc {
  font-size: 0.86rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.95;
  max-width: 18ch;
  font-family: var(--font-sans);
  line-height: 1.45;
}

.trust-item:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(242, 199, 107, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(242, 199, 107, 0.06);
}

.trust-item:hover .trust-icon {
  box-shadow:
    inset 0 0 0 1px rgba(242, 199, 107, 0.28),
    0 0 18px rgba(242, 199, 107, 0.16);
}

.aura-trust-final {
  display: block;
}

.aura-trust-final__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.aura-trust-final__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 14px 20px 16px;
  min-height: 150px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(8, 6, 4, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(212, 160, 51, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  animation: trust-breathe 7s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

.aura-trust-final__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, transparent, rgba(212, 160, 51, 0.35), transparent);
}
body.home .aura-trust-final__icon {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 199, 107, 0.08) 0%, rgba(242, 199, 107, 0.03) 48%, rgba(242, 199, 107, 0) 72%),
    rgba(255, 255, 255, 0.015) !important;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 51, 0.12) !important;
  overflow: hidden !important;
  margin: 0 auto 12px !important;
}

body.home .aura-trust-final__image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  padding: 8px !important;
  filter: drop-shadow(0 0 8px rgba(242, 199, 107, 0.22)) !important;
}

.aura-trust-final__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.aura-trust-final__title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 3px;
  font-family: var(--font-sans);
  line-height: 1.22;
}

.aura-trust-final__subtitle {
  font-size: 0.86rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.95;
  max-width: 18ch;
  font-family: var(--font-sans);
  line-height: 1.45;
}

.aura-trust-final__item:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(242, 199, 107, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(242, 199, 107, 0.06);
}

body.home .aura-trust-final__item:hover .aura-trust-final__icon {
  box-shadow:
    inset 0 0 0 1px rgba(242, 199, 107, 0.28) !important,
    0 0 18px rgba(242, 199, 107, 0.16) !important;
}

@keyframes trust-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(75px) scale(0.94) rotateX(15deg);
  filter: blur(4px);
  transform-origin: center top;
  transition: 
    opacity 1.6s cubic-bezier(0.1, 1, 0.1, 1), 
    transform 1.6s cubic-bezier(0.1, 1, 0.1, 1),
    filter 1.6s cubic-bezier(0.1, 1, 0.1, 1);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0);
}

/* Reveal Delays for Grids */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* --- 3. PREMIUM COLLECTION SECTION --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: rgba(255, 253, 249, 0.45); /* Tempered Glassmorphism Base */
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1.5px solid rgba(255, 255, 255, 0.65); /* Tempered Glass Bezel border */
  border-radius: 16px;
  overflow: visible; /* Let 3D parallax float outside */
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.03), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--color-gold-base);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Fix WebKit clip bug on 3D transform */
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

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

.product-info {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-price {
  font-size: 1.28rem;
  font-family: var(--font-sans);
  color: var(--color-gold-text-dark);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.product-short-description {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-muted-dark);
  margin-bottom: 18px;
  min-height: 3.1em;
}

.price,
.amount,
.woocommerce-Price-amount,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  font-family: var(--font-sans);
  font-size: 1.06em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card-cta {
  width: 100%;
  margin-top: auto;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-base) 100%) !important;
  color: #1a150e !important;
  border: 1px solid var(--color-gold-bright) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), var(--gold-glow) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  position: relative;
  overflow: hidden;
  animation: pulse-btn-glow 3.5s infinite ease-in-out;
}

/* Shiny Sweep Effect for product cards */
.card-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-25deg);
  animation: btn-auto-shine 4.5s ease-in-out infinite;
}

/* --- 4. “¿CÓMO FUNCIONA?” SECTION --- */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  gap: 20px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.step-visual-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-base));
  color: var(--bg-dark-primary);
  font-family: var(--font-serif);
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 1rem;
}

.step-icon-circle {
  width: 90px;
  height: 90px;
  background-color: var(--bg-cream-card);
  border: 1px solid var(--border-gold-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-text-dark);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.process-step:hover .step-icon-circle {
  transform: scale(1.08);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--color-gold-bright);
  color: var(--color-gold-text-accent);
}

.step-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  max-width: 200px;
  margin: 0 auto;
}

.process-connector {
  flex-grow: 1;
  height: 1px;
  border-top: 2px dotted var(--border-gold-medium);
  margin-top: 45px;
  z-index: 1;
}

/* --- 5. PRODUCT SHOWCASE SECTION --- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.showcase-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-cream-card);
  border: 1.5px solid var(--bg-cream-secondary);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.showcase-img-container {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Fix WebKit clip bug on 3D transform */
}

.showcase-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 247, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-card-overlay {
  background: rgba(255, 247, 236, 0);
}

.showcase-label {
  padding: 16px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-top: 1px solid var(--bg-cream-secondary);
}

/* --- 6. TESTIMONIALS SECTION --- */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--bg-cream-card);
  border: 1px solid var(--border-gold-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-base);
  box-shadow: var(--card-shadow-hover);
}

.stars-row {
  color: var(--color-gold-base);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--color-gold-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-dark);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: normal;
  letter-spacing: 0.05em;
}

.pet-name {
  font-size: 0.7rem;
  color: var(--color-gold-text-dark);
  font-weight: 600;
}

/* --- 7. SIZES AND PRICES SECTION --- */
.sizes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.size-card {
  background-color: var(--bg-cream-card);
  border: 1px solid var(--border-gold-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.size-card:hover {
  border-color: var(--color-gold-base);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.size-icon-badge {
  background-color: var(--bg-cream-primary);
  border: 1px solid var(--border-gold-light);
  width: 55px;
  height: 55px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.size-details {
  flex-grow: 1;
  padding-left: 16px;
}

.size-name {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.size-dimension {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  font-weight: 500;
}

.size-price-box {
  text-align: right;
}

.size-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold-text-dark);
}

.size-footer-note {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.note-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-cream-secondary);
  border: 1px solid var(--border-gold-light);
  padding: 12px 24px;
  border-radius: 30px;
}

.note-shield {
  font-size: 1.2rem;
}

.note-text {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* --- 8. “CADA PEDIDO INCLUYE” STRIP --- */
.strip-section {
  background-color: var(--bg-dark-primary);
  padding: 40px 0;
  position: relative;
}

.includes-strip {
  background-color: var(--bg-dark-secondary);
  border: 1.5px solid var(--border-gold-solid);
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--gold-glow);
  gap: 30px;
}

.strip-label-col {
  flex-shrink: 0;
}

.strip-main-title {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--color-gold-bright);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.strip-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--color-gold-base), transparent);
}

.strip-items-row {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.strip-icon-wrapper {
  color: var(--color-gold-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.strip-item:hover .strip-icon-wrapper {
  transform: scale(1.1);
  color: var(--color-gold-bright);
}

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

.strip-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.strip-subtitle {
  font-size: 0.7rem;
  color: var(--color-gold-bright);
  letter-spacing: 0.05em;
}

.strip-item-divider {
  width: 1px;
  height: 35px;
  background-color: rgba(212, 160, 51, 0.2);
}

/* --- 9. BENEFITS CARDS SECTION --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background-color: var(--bg-cream-card);
  border: 1px solid var(--border-gold-light);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-base);
  box-shadow: var(--card-shadow-hover);
}

.benefit-icon-box {
  color: var(--color-gold-text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: bold;
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.benefit-dot-paw {
  margin-top: auto;
  padding-top: 15px;
  color: var(--border-gold-solid);
  font-size: 0.8rem;
  opacity: 0.5;
}

.payment-methods {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 15px;
}

.payment-badge {
  font-size: 0.55rem;
  font-weight: bold;
  border: 1px solid var(--border-gold-light);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--color-gold-text-dark);
  background-color: var(--bg-cream-primary);
}

/* --- 10. PREMIUM FOOTER --- */
.main-footer {
  background-color: var(--bg-dark-primary);
  background-image: radial-gradient(circle at 10% 90%, rgba(138, 90, 22, 0.1) 0%, rgba(3, 3, 3, 0) 50%);
  border-top: 1px solid var(--border-gold-light);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  max-width: 220px;
}

.brand-title {
  font-size: 1.25rem;
  color: var(--color-gold-bright);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}

.brand-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted-light);
}

.footer-col-title {
  font-size: 1rem;
  color: var(--color-gold-bright);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold-base);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  letter-spacing: 0.05em;
}

.footer-link-item:hover {
  color: var(--color-gold-bright);
  padding-left: 5px;
}

.footer-link-item.gold-text {
  color: var(--color-gold-base);
  font-weight: bold;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--color-gold-base);
}

.contact-text-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.7rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-val {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.contact-val:hover {
  color: var(--color-gold-bright);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 51, 0.2);
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  border-color: var(--color-gold-base);
  color: var(--color-gold-bright);
  background-color: rgba(212, 160, 51, 0.05);
  transform: translateY(-2px);
}

/* Footer help Box */
.help-box {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-gold-light);
  padding: 20px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.help-paw {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.1rem;
  color: var(--color-gold-base);
  opacity: 0.3;
}

.help-title {
  font-size: 0.9rem;
  color: var(--color-gold-bright);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.help-text {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-bottom: 14px;
}

/* Footer Bottom Strip & Trust Row */
.footer-bottom-strip {
  border-top: 1px solid rgba(212, 160, 51, 0.15);
  background-color: #020202;
  padding: 30px 24px;
  text-align: center;
}

.trust-bottom-row {
  max-width: 1280px;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
}

.trust-bottom-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bottom-icon {
  color: var(--color-gold-base);
}

.trust-bottom-separator {
  color: rgba(212, 160, 51, 0.2);
}

.footer-copyright {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-muted-light);
  opacity: 0.7;
}

/* --- RESPONSIVE LAYOUT & MEDIA QUERIES --- */

/* Large screens (up to 1200px) */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Screens (up to 992px) */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0; /* Reset desktop padding */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    height: 480px;
    margin-top: 20px;
  }

  .hero-showcase-container {
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  
  .hero-showcase-frame {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none !important;
  }

  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-connector {
    display: none;
  }
  
  .includes-strip {
    flex-direction: column;
    align-items: center;
    padding: 24px;
    text-align: center;
  }
  
  .strip-divider {
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-base), transparent);
  }
  
  .strip-items-row {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .strip-item-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(212, 160, 51, 0.2);
  }
}

/* Small Tablets / Hamburger Menu trigger (up to 768px) */
@media (max-width: 768px) {
  .main-header {
    position: sticky;
    top: 0;
    background-color: rgba(3, 3, 3, 0.96);
    border-bottom-color: rgba(212, 160, 51, 0.22);
  }

  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
  }

  body.auraland-home-shell .hero-section {
    padding-top: 36px;
  }

  body.auraland-subpage-shell main {
    padding-top: 112px;
  }

  .header-container {
    padding: 10px 16px;
    gap: 10px;
  }

  .logo-wrapper {
    flex-shrink: 0;
  }

  .brand-logo-img {
    height: 54px;
    width: 54px;
    max-width: 54px;
    max-height: 54px;
  }

  .desktop-nav {
    display: none;
  }
  
  .header-actions {
    gap: 8px;
  }

  .action-icon-link {
    width: 36px;
    height: 36px;
  }

  .action-icon-link svg {
    width: 20px;
    height: 20px;
  }

  .header-cta-link {
    padding: 8px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    min-height: 36px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 51, 0.18);
    background: rgba(212, 160, 51, 0.05);
    flex-shrink: 0;
  }

  .mobile-menu-toggle .bar {
    width: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2rem;
  }

  .mobile-nav-overlay {
    top: 62px;
    padding: 24px 20px 28px;
  }

  .mobile-nav-links {
    gap: 18px;
  }

  .mobile-nav-item {
    font-size: 1rem;
  }

  .hero-section {
    padding-top: 140px;
    padding-bottom: 32px;
  }

  .hero-container {
    gap: 18px;
    padding: 0 16px;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-label-wrapper {
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
  }

  .elegant-divider {
    gap: 10px;
    margin: 12px 0;
  }

  .elegant-divider .line {
    width: 52px;
  }

  .hero-description {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .hero-cta-wrapper {
    margin-bottom: 60px;
  }

  .hero-cta-wrapper .btn {
    width: min(100%, 320px);
    padding: 12px 18px;
  }

  .hero-visual {
    height: auto;
    min-height: 0;
    margin-top: 28px;
  }

  .glow-backdrop {
    width: 320px;
    height: 320px;
  }

  .hero-showcase-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    align-items: stretch;
    height: auto;
  }

  .hero-showcase-frame {
    position: relative;
    width: min(80vw, 300px);
    height: auto;
    padding: 9px;
    transform: none !important;
    animation: none !important;
  }

  .frame-left,
  .frame-right {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .frame-inner {
    height: auto;
    aspect-ratio: 31 / 44;
    padding-bottom: 34px;
  }

  .showcase-caption {
    height: 34px;
    font-size: 0.75rem;
  }

  .hero-trust-strip {
    margin-top: 40px;
    padding: 18px 0 10px;
  }

  .trust-container {
    justify-content: center;
    gap: 14px 18px;
  }

  .trust-item {
    flex: 1 1 160px;
    max-width: 260px;
    justify-content: center;
  }

  .trust-icon-svg {
    width: 28px;
    height: 28px;
  }

  .trust-title {
    font-size: 0.82rem;
  }

  .trust-desc {
    font-size: 0.75rem;
  }

  .section-cream {
    padding: 60px 0;
  }

  #productos {
    padding-top: 124px;
    padding-bottom: 86px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-img-wrapper {
    height: 220px;
  }

  .product-info {
    padding: 18px 18px 20px;
  }

  .product-name {
    font-size: 1.05rem;
  }

  .product-price {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }

  .product-short-description {
    font-size: 0.84rem;
    margin-bottom: 14px;
    min-height: auto;
  }

  .card-cta {
    padding: 11px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .footer-container {
    gap: 24px;
    padding: 0 16px 48px;
  }

  .main-footer {
    padding-top: 56px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .footer-logo-img {
    max-width: 180px;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-details li {
    justify-content: center;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-strip {
    padding: 22px 16px calc(26px + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    bottom: 18px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .scroll-reveal {
    transform: translateY(28px) scale(0.98);
    filter: blur(2px);
  }

  .scroll-reveal.revealed {
    transform: translateY(0) scale(1);
  }
}

/* Mobile Screens (up to 480px) */
@media (max-width: 480px) {
  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
  }

  .header-container {
    padding: 8px 12px;
    gap: 8px;
  }

  .brand-logo-img {
    height: 46px;
    width: 46px;
    max-width: 46px;
    max-height: 46px;
  }

  .header-actions {
    gap: 6px;
  }

  .aura-home-inline-header .action-icon-link#header-account-lnk {
    display: none;
  }

  .action-icon-link {
    width: 34px;
    height: 34px;
  }

  .action-icon-link svg {
    width: 18px;
    height: 18px;
  }

  .header-cta-link {
    padding: 6px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    min-height: 34px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle .bar {
    width: 14px;
  }

  .mobile-nav-overlay {
    top: 58px;
    padding: 20px 16px 24px;
  }

  .mobile-nav-links {
    gap: 14px;
  }

  .mobile-nav-item {
    font-size: 0.92rem;
    padding: 8px;
  }

  .hero-section {
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .hero-container {
    padding: 0 14px;
    gap: 24px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-label-wrapper {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.08;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-align: center;
  }

  .hero-description {
    font-size: 0.92rem;
    text-align: center;
  }
  
  .hero-visual {
    height: auto;
    min-height: 0;
    margin-top: 24px;
  }

  .hero-showcase-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    height: auto;
  }

  .hero-showcase-frame {
    width: min(80vw, 290px);
    height: auto;
    padding: 8px;
    transform: none !important;
    animation: none !important;
  }

  .frame-left,
  .frame-right {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .frame-inner {
    height: auto;
    aspect-ratio: 31 / 44;
    padding-bottom: 30px;
  }

  .showcase-caption {
    height: 30px;
    font-size: 0.7rem;
  }
  
  .product-grid, .showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .product-card {
    max-width: 100%;
  }

  .product-img-wrapper {
    height: 190px;
  }

  .product-info {
    padding: 16px;
  }

  .product-name {
    font-size: 0.98rem;
  }

  .product-price {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .product-short-description {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .card-cta {
    padding: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 14px 44px;
  }
  
  .trust-bottom-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .trust-bottom-separator {
    display: none;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .footer-col-title {
    font-size: 0.9rem;
  }

  .social-icon-link {
    width: 34px;
    height: 34px;
  }

  .help-box {
    padding: 16px;
  }

  .main-footer {
    padding-top: 48px;
  }

  .footer-logo-img {
    max-width: 160px;
  }

  .footer-bottom-strip {
    padding: 20px 14px calc(34px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Small phones / compact viewport tuning */
@media (max-width: 390px) {
  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
  }

  .header-container {
    padding: 8px 10px;
  }

  .brand-logo-img {
    height: 42px;
    width: 42px;
    max-width: 42px;
    max-height: 42px;
  }

  .action-icon-link,
  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
  }

  .aura-home-inline-header .action-icon-link#header-account-lnk {
    display: none;
  }

  .header-cta-link {
    padding: 6px 8px;
    font-size: 0.52rem;
    min-height: 32px;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 64px;
  }

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

  .hero-cta-wrapper .btn {
    max-width: 100%;
    font-size: 0.72rem;
    padding: 10px 14px;
  }

  .hero-cta-wrapper {
    margin-bottom: 96px;
  }

  .hero-showcase-frame {
    width: min(74vw, 240px);
  }

  .hero-trust-strip {
    margin-top: 56px;
    padding: 18px 0 8px;
  }

  .product-img-wrapper {
    height: 180px;
  }

  .product-info {
    padding: 14px;
  }

  .footer-bottom-strip {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 390px) {
  .main-header {
    position: sticky;
    top: 0;
  }

  .hero-section {
    padding-bottom: 64px;
  }

  .hero-cta-wrapper {
    margin-bottom: 100px;
  }

  .hero-showcase-frame {
    width: min(72vw, 230px);
  }

  .hero-trust-strip {
    margin-top: 58px;
  }

  #productos {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .whatsapp-float {
    bottom: 14px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-outline:hover,
  .product-card:hover,
  .product-card:hover .product-img,
  .hero-showcase-frame:hover,
  .hero-showcase-frame:hover .frame-inner,
  .hero-showcase-frame:hover .frame-inner img {
    transform: none !important;
  }

  .product-card:hover,
  .product-card:hover::before,
  .showcase-card:hover::before {
    box-shadow: inherit;
  }

  .cursor-glow {
    display: none !important;
  }
}

/* =========================================================
AURA FINAL MOBILE CREATIVE OVERRIDE — DO NOT MOVE
Final iPhone layout fix: no overlap, one-card hero, clean flow.
========================================================= */
@media (max-width: 768px) {
  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    z-index: 40 !important;
    padding-bottom: 0 !important;
  }

  .aura-home-inline-header,
  .main-header,
  .hero,
  .hero-section,
  .hero-container,
  .hero-content,
  .hero-visual,
  .hero-showcase-container {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .hero-container {
    display: block !important;
  }

  .hero-content {
    margin-bottom: 80px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 110px !important;
  }

  .hero-visual {
    margin-top: 120px !important;
  }

  .hero-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .hero-showcase-frame {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    animation: none !important;
    width: min(74vw, 280px) !important;
    height: auto !important;
    aspect-ratio: 0.72 !important;
    margin: 0 auto 72px !important;
  }

  .hero-trust-strip {
    position: relative !important;
    margin-top: 120px !important;
    clear: both !important;
  }

  #productos {
    padding-top: 140px !important;
    clear: both !important;
  }

  .main-header {
    padding-bottom: 0 !important;
  }

  .header-container {
    gap: 8px !important;
  }

  .header-cta-link {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    max-width: 210px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .aura-home-inline-header .action-icon-link#header-account-lnk {
    display: none !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
    z-index: 30 !important;
  }
}

@media (max-width: 480px) {
  .hero-showcase-frame.frame-left,
  .showcase-card.secondary,
  .hero-card.secondary {
    display: none !important;
  }

  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    display: block !important;
    position: relative !important;
    transform: none !important;
    width: min(68vw, 245px) !important;
    margin: 0 auto 96px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 150px !important;
  }

  .hero-visual {
    margin-top: 150px !important;
    padding-bottom: 140px !important;
  }

  .hero-trust-strip {
    margin-top: 150px !important;
    padding-top: 64px !important;
  }

  #productos {
    padding-top: 160px !important;
  }

  .header-cta-link {
    font-size: 0.76rem !important;
    padding: 7px 9px !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
  }
}

@media (max-width: 390px) {
  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    width: min(64vw, 225px) !important;
    margin: 0 auto 110px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 170px !important;
  }

  .hero-trust-strip {
    margin-top: 170px !important;
  }

  #productos {
    padding-top: 170px !important;
  }

  .header-cta-link {
    font-size: 0.72rem !important;
    padding: 6px 8px !important;
    max-width: 196px !important;
  }
}

/* =========================================================
AURA FINAL MOBILE CREATIVE OVERRIDE — DO NOT MOVE
Final iPhone layout fix: no overlap, one-card hero, clean flow.
========================================================= */
@media (max-width: 768px) {
  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    z-index: 40 !important;
    padding-bottom: 0 !important;
  }

  .aura-home-inline-header,
  .main-header,
  .hero,
  .hero-section,
  .hero-container,
  .hero-content,
  .hero-visual,
  .hero-showcase-container {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .hero-container {
    display: block !important;
  }

  .hero-content {
    margin-bottom: 80px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 110px !important;
  }

  .hero-visual {
    margin-top: 120px !important;
  }

  .hero-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .hero-showcase-frame {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    animation: none !important;
    width: min(74vw, 280px) !important;
    height: auto !important;
    aspect-ratio: 0.72 !important;
    margin: 0 auto 72px !important;
  }

  .hero-trust-strip {
    position: relative !important;
    margin-top: 120px !important;
    clear: both !important;
  }

  #productos {
    padding-top: 140px !important;
    clear: both !important;
  }

  .main-header {
    padding-bottom: 0 !important;
  }

  .header-container {
    gap: 8px !important;
  }

  .header-cta-link {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    max-width: 210px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .aura-home-inline-header .action-icon-link#header-account-lnk {
    display: none !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
    z-index: 30 !important;
  }
}

@media (max-width: 480px) {
  .hero-showcase-frame.frame-left,
  .showcase-card.secondary,
  .hero-card.secondary {
    display: none !important;
  }

  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    display: block !important;
    position: relative !important;
    transform: none !important;
    width: min(68vw, 245px) !important;
    margin: 0 auto 96px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 150px !important;
  }

  .hero-visual {
    margin-top: 150px !important;
    padding-bottom: 140px !important;
  }

  .hero-trust-strip {
    margin-top: 150px !important;
    padding-top: 64px !important;
  }

  #productos {
    padding-top: 160px !important;
  }

  .header-cta-link {
    font-size: 0.76rem !important;
    padding: 7px 9px !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
  }
}

@media (max-width: 390px) {
  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    width: min(64vw, 225px) !important;
    margin: 0 auto 110px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 170px !important;
  }

  .hero-trust-strip {
    margin-top: 170px !important;
  }

  #productos {
    padding-top: 170px !important;
  }

  .header-cta-link {
    font-size: 0.72rem !important;
    padding: 6px 8px !important;
    max-width: 196px !important;
  }
}

/* --- 6. ADVANCED INTERACTIVE LAYOUTS & TIMELINES --- */

/* "¿Cómo funciona?" SVG Line and Flow Container */
.process-flow-container {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.process-svg-line-desktop {
  position: absolute;
  top: 45px; /* Centered with the 90px height step-icon-circle */
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

.process-svg-line-desktop path {
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
  transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 992px) {
  .process-svg-line-desktop {
    display: none;
  }
}

@media (min-width: 993px) {
  .process-connector {
    display: none; /* Dotted line is replaced by SVG on desktop */
  }
}

/* Card hover 3D preserve-3d and transition setup */
.product-card, .showcase-card, .size-card, .benefit-card {
  position: relative;
  overflow: visible; /* Required to let 3D layers physically float outside the box! */
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  backface-visibility: hidden;
  z-index: 5; /* Sit on top of fixed viewport fireflies */
}

/* Cursor-Tracking Glass Shine Spotlight Overlay */
.product-card::before, .showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle 120px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before, .showcase-card:hover::before {
  opacity: 1;
}

/* Card hover glow and border color */
.product-card:hover {
  border-color: rgba(242, 199, 107, 0.6);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(242, 199, 107, 0.15);
}

/* 3D Parallax POP-OUT Depth Values (Popping child elements out of the card container) */
.product-img-wrapper {
  transform-style: preserve-3d;
  transform: translateZ(0px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-img {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-info {
  transform: translateZ(0px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-cta {
  transform: translateZ(0px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-triggered depth activation */
.product-card:hover .product-img-wrapper {
  transform: translateZ(28px);
}

.product-card:hover .product-img {
  transform: scale(1.08); /* SLight zoom inside container */
}

.product-card:hover .product-info {
  transform: translateZ(48px);
}

.product-card:hover .card-cta {
  background: linear-gradient(135deg, var(--color-gold-base) 0%, var(--color-gold-bright) 100%) !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 
    0 10px 25px rgba(242, 199, 107, 0.8),
    0 0 35px rgba(242, 199, 107, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transform: translateZ(68px) scale(1.03);
  animation: none; /* Pause pulsing on hover */
}

.card-cta:hover {
  background: linear-gradient(135deg, var(--color-gold-base) 0%, var(--color-gold-bright) 100%) !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 
    0 10px 25px rgba(242, 199, 107, 0.9),
    0 0 45px rgba(242, 199, 107, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  transform: translateZ(75px) scale(1.06) !important;
  animation: none !important;
}

/* Custom Header Active Indicators */
.desktop-nav ul li a {
  position: relative;
  transition: color 0.3s ease;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-bright), var(--color-gold-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Gold Crown Icon text adjustment */
.hero-label-crown {
  font-size: 0.95rem;
  margin-left: 3px;
  display: inline-block;
  animation: pulse-crown 2.5s infinite alternate;
}

@keyframes pulse-crown {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(242, 199, 107, 0.3)); }
  100% { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 8px rgba(242, 199, 107, 0.8)); }
}

/* Primary Button Pulse & Auto-Shine animations */
@keyframes pulse-btn-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(242, 199, 107, 0.55), var(--gold-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(242, 199, 107, 0), var(--gold-glow-hover);
    transform: scale(1.035);
  }
}

@keyframes btn-auto-shine {
  0%, 50% { left: -150%; }
  65%, 100% { left: 150%; }
}

/* Floating Viewport Rising Fireflies Animations */
@keyframes firefly-rise-fixed {
  0% { transform: translateY(110vh) translateX(0); }
  100% { transform: translateY(-110vh) translateX(var(--drift-x, 35px)); }
}

@keyframes firefly-flash {
  0%, 100% { opacity: 0; }
  35%, 65% { opacity: 0.95; }
}

/* Custom Dark Overrides for Premium Collection Section */
#productos {
  background-color: #030303 !important; /* Luxury deep black */
  background-image: radial-gradient(circle at 50% 30%, rgba(138, 90, 22, 0.15) 0%, rgba(3, 3, 3, 0) 70%) !important;
  border-top: 1px solid rgba(212, 160, 51, 0.15);
  border-bottom: 1px solid rgba(212, 160, 51, 0.15);
  padding-top: 100px;
  padding-bottom: 100px;
}

#productos .section-title {
  color: #ffffff !important;
}

#productos .section-subtitle {
  color: var(--color-gold-bright) !important;
}

#productos .elegant-divider .line {
  background: linear-gradient(90deg, transparent, rgba(212, 160, 51, 0.5), transparent) !important;
}

#productos .elegant-divider .paw-icon {
  fill: url(#gold-gradient) !important;
}

#productos .elegant-divider .paw-icon path {
  fill: url(#gold-gradient) !important;
}

/* Make product card text lighter for black background contrast */
#productos .product-name {
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 0.05em;
}

#productos .product-price {
  color: var(--color-gold-bright) !important;
}

/* Style adjustment for the glass cards over black */
#productos .product-card {
  background: rgba(255, 255, 255, 0.03) !important; /* Deep translucent glass */
  border-color: rgba(212, 160, 51, 0.25) !important;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    var(--card-shadow);
}

#productos .product-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(242, 199, 107, 0.7) !important;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(242, 199, 107, 0.25) !important;
}

/* Colombia Pride Text badge styling */
.colombia-pride {
  color: var(--color-gold-bright) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 
    0 4px 15px rgba(37, 211, 102, 0.4),
    0 0 30px rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.6),
    0 0 45px rgba(37, 211, 102, 0.4);
  background-color: #20ba5a;
}

.whatsapp-icon {
  fill: #ffffff;
  transition: transform 0.3s ease;
  display: block;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: rotate(15deg);
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* =========================================================
AURA FINAL MOBILE CREATIVE OVERRIDE — DO NOT MOVE
Final iPhone layout fix: no overlap, one-card hero, clean flow.
========================================================= */
@media (max-width: 768px) {
  body.home .aura-home-inline-header {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    z-index: 40 !important;
    padding-bottom: 0 !important;
  }

  .aura-home-inline-header,
  .main-header,
  .hero,
  .hero-section,
  .hero-container,
  .hero-content,
  .hero-visual,
  .hero-showcase-container {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .hero-container {
    display: block !important;
  }

  .hero-content {
    margin-bottom: 80px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 110px !important;
  }

  .hero-visual {
    margin-top: 120px !important;
  }

  .hero-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .hero-showcase-frame {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    animation: none !important;
    width: min(74vw, 280px) !important;
    height: auto !important;
    aspect-ratio: 0.72 !important;
    margin: 0 auto 72px !important;
  }

  .hero-trust-strip {
    position: relative !important;
    margin-top: 120px !important;
    clear: both !important;
  }

  #productos {
    padding-top: 140px !important;
    clear: both !important;
  }

  .main-header {
    padding-bottom: 0 !important;
  }

  .header-container {
    gap: 8px !important;
  }

  .header-cta-link {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    max-width: 210px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .aura-home-inline-header .action-icon-link#header-account-lnk {
    display: none !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
    z-index: 30 !important;
  }
}

@media (max-width: 480px) {
  .hero-showcase-frame.frame-left,
  .showcase-card.secondary,
  .hero-card.secondary {
    display: none !important;
  }

  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    display: block !important;
    position: relative !important;
    transform: none !important;
    width: min(68vw, 245px) !important;
    margin: 0 auto 96px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 150px !important;
  }

  .hero-visual {
    margin-top: 150px !important;
    padding-bottom: 140px !important;
  }

  .hero-trust-strip {
    margin-top: 150px !important;
    padding-top: 64px !important;
  }

  #productos {
    padding-top: 160px !important;
  }

  .header-cta-link {
    font-size: 0.76rem !important;
    padding: 7px 9px !important;
  }

  .whatsapp-float,
  .floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    right: 12px !important;
    bottom: 96px !important;
  }
}

@media (max-width: 390px) {
  .hero-showcase-frame.frame-right,
  .showcase-card.primary,
  .hero-card.primary {
    width: min(64vw, 225px) !important;
    margin: 0 auto 110px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 170px !important;
  }

  .hero-trust-strip {
    margin-top: 170px !important;
  }

  #productos {
    padding-top: 170px !important;
  }

  .header-cta-link {
    font-size: 0.72rem !important;
    padding: 6px 8px !important;
    max-width: 196px !important;
  }
}

/* AURA FINAL TRUST STRIP GRID HOTFIX */
body.home .aura-trust-final {
  width: 100%;
  max-width: 1180px;
  margin: 28px auto 34px;
  padding: 0 22px;
  box-sizing: border-box;
}

body.home .aura-trust-final__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

body.home .aura-trust-final__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  min-height: 150px !important;
  padding: 20px 16px 18px !important;
  border: 1px solid rgba(212, 160, 50, 0.35) !important;
  border-radius: 22px !important;
  background: rgba(12, 8, 3, 0.76) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

body.home .aura-trust-final__icon-wrap {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 12px !important;
  overflow: hidden !important;
  flex: 0 0 68px !important;
}

body.home .aura-trust-final__icon-img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  flex: 0 0 auto !important;
}

body.home .aura-trust-final__title {
  display: block !important;
  margin: 0 0 7px !important;
  color: #f5c45a !important;
  font-size: 0.82rem !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

body.home .aura-trust-final__text {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

/* AURA PRODUCT TYPOGRAPHY POLISH */
#productos .product-name {
  font-family: var(--font-sans) !important;
  font-size: clamp(1.02rem, 1vw, 1.14rem) !important;
  line-height: 1.24 !important;
  letter-spacing: 0.04em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

#productos .product-price,
#productos .price,
#productos .amount,
#productos .woocommerce-Price-amount,
#productos .woocommerce div.product p.price,
#productos .woocommerce div.product span.price,
#productos .woocommerce ul.products li.product .price {
  font-family: var(--font-sans) !important;
  font-size: clamp(1.08rem, 1.12vw, 1.32rem) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#productos .product-card .product-info {
  padding-top: 22px;
  padding-bottom: 22px;
}

#productos .product-short-description {
  line-height: 1.52;
}

/* AURA PROCESS FINAL REDESIGN */
.aura-process-final {
  position: relative;
  overflow: hidden;
  padding: 98px 0 108px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 199, 107, 0.09) 0, rgba(242, 199, 107, 0) 34%),
    radial-gradient(circle at 80% 0%, rgba(212, 160, 51, 0.06) 0, rgba(212, 160, 51, 0) 28%),
    linear-gradient(180deg, #050403 0%, #090603 100%);
  border-top: 1px solid rgba(212, 160, 51, 0.15);
  border-bottom: 1px solid rgba(212, 160, 51, 0.12);
}

.aura-process-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 130, 0.12), transparent 45%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.aura-process-final .container {
  position: relative;
  z-index: 1;
}

.aura-process-final__header {
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}

.aura-process-final__eyebrow {
  margin: 0 0 10px;
  color: var(--color-gold-bright);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.aura-process-final__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.aura-process-final__subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

.aura-process-final__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.aura-process-final__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px 20px;
  min-height: 310px;
  border-radius: 18px;
  border: 1px solid rgba(214, 160, 51, 0.22);
  background: linear-gradient(180deg, rgba(17, 12, 7, 0.92), rgba(8, 6, 3, 0.96));
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 224, 145, 0.05);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.aura-process-final__step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(242, 199, 107, 0.08), transparent 38%);
  pointer-events: none;
}

.aura-process-final__step:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 199, 107, 0.34);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 224, 145, 0.08);
}

.aura-process-final__number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-bright) 100%);
  color: #110b04;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.aura-process-final__icon {
  width: 108px;
  height: 108px;
  margin: 18px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  position: relative;
}

.aura-process-final__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aura-process-final__step-title {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.aura-process-final__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.83);
}

@media (max-width: 1200px) {
  .aura-process-final__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .aura-process-final {
    padding: 86px 0 92px;
  }

  .aura-process-final__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aura-process-final {
    padding: 74px 0 82px;
  }

  .aura-process-final__header {
    margin-bottom: 26px;
  }

  .aura-process-final__title {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .aura-process-final__subtitle {
    font-size: 0.95rem;
  }

  .aura-process-final__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aura-process-final__step {
    min-height: 0;
    padding: 18px 14px 18px;
  }

  .aura-process-final__icon {
    width: 86px;
    height: 86px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .aura-process-final__step-title {
    font-size: 0.98rem;
  }

  .aura-process-final__text {
    font-size: 0.89rem;
    line-height: 1.52;
  }
}

@media (max-width: 480px) {
  #productos .product-name {
    font-size: 1rem !important;
  }

  #productos .product-price,
  #productos .price,
  #productos .amount,
  #productos .woocommerce-Price-amount,
  #productos .woocommerce div.product p.price,
  #productos .woocommerce div.product span.price,
  #productos .woocommerce ul.products li.product .price {
    font-size: 1rem !important;
  }

  .aura-process-final__step {
    padding: 16px 12px 16px;
  }

  .aura-process-final__icon {
    width: 80px;
    height: 80px;
  }

  .aura-process-final__title {
    font-size: 1.8rem;
  }
}

/* AURA PROCESS SECTION VISUAL HOTFIX */
body.home .aura-process-final {
  position: relative !important;
  background: linear-gradient(180deg, #050403 0%, #090603 100%) !important;
  padding: 80px 0 90px !important;
  border-top: 1px solid rgba(212, 160, 50, 0.15) !important;
  border-bottom: 1px solid rgba(212, 160, 50, 0.15) !important;
  overflow: hidden !important;
}

body.home .aura-process-final::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 130, 0.12), transparent 45%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%) !important;
  pointer-events: none !important;
}

body.home .aura-process-final__inner {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 22px !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

body.home .aura-process-final__header {
  max-width: 800px !important;
  margin: 0 auto 48px !important;
  text-align: center !important;
}

body.home .aura-process-final__eyebrow {
  display: block !important;
  margin: 0 0 12px !important;
  color: #f5c45a !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-family: var(--font-sans) !important;
}

body.home .aura-process-final__title {
  display: block !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  font-family: var(--font-serif) !important;
}

body.home .aura-process-final__subtitle {
  display: block !important;
  margin: 14px auto 0 !important;
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  font-family: var(--font-sans) !important;
}

body.home .aura-process-final__grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

body.home .aura-process-final__step {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  padding: 20px 14px 16px !important;
  min-height: 380px !important;
  border: 1px solid rgba(212, 160, 50, 0.22) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(17, 12, 7, 0.92), rgba(8, 6, 3, 0.96)) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

body.home .aura-process-final__step:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(242, 199, 107, 0.45) !important;
}

body.home .aura-process-final__number {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #b8860b 0%, #f5c45a 100%) !important;
  color: #110b04 !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  z-index: 3 !important;
  font-family: var(--font-sans) !important;
  line-height: 1 !important;
}

body.home .aura-process-final__icon {
  width: 190px !important;
  height: 190px !important;
  max-width: 190px !important;
  max-height: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 12px auto 20px !important;
  position: relative !important;
}

body.home .aura-process-final__icon-img {
  width: 170px !important;
  height: 170px !important;
  max-width: 170px !important;
  max-height: 170px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  animation: sequential-spin 10s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  transform-style: preserve-3d !important;
  backface-visibility: visible !important;
}

body.home .aura-process-final__step-title {
  display: block !important;
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  font-family: var(--font-sans) !important;
}

body.home .aura-process-final__step-text {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  font-family: var(--font-sans) !important;
}

/* Sequential Spin Delays */
body.home .aura-process-final__grid article:nth-child(1) .aura-process-final__icon-img {
  animation-delay: 0s !important;
}
body.home .aura-process-final__grid article:nth-child(2) .aura-process-final__icon-img {
  animation-delay: 2s !important;
}
body.home .aura-process-final__grid article:nth-child(3) .aura-process-final__icon-img {
  animation-delay: 4s !important;
}
body.home .aura-process-final__grid article:nth-child(4) .aura-process-final__icon-img {
  animation-delay: 6s !important;
}
body.home .aura-process-final__grid article:nth-child(5) .aura-process-final__icon-img {
  animation-delay: 8s !important;
}

/* Keyframes for Sequential Rotation */
@keyframes sequential-spin {
  0% {
    transform: rotateY(0deg);
  }
  15% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Contrast Overrides for Light Sections (Cream Background) */
body.home .section-cream .section-title {
  color: #2a2217 !important; /* Luxury dark brown */
}

body.home .section-cream .section-subtitle {
  color: #8a5a16 !important; /* Dark gold text */
}

body.auraland-home-shell .section-cream .section-title,
body.auraland-home-shell .section-cream .section-subtitle,
.section-cream .section-title,
.section-cream .section-subtitle {
  color: #1a150e !important;
}

body.home .section-cream:not(#productos) .section-header {
  background: transparent !important;
}

body.home .section-cream:not(#productos) .section-header .section-title {
  color: #1a150e !important;
  font-weight: 800 !important;
}

body.home .section-cream:not(#productos) .section-header .section-subtitle {
  color: #8a5a16 !important;
}

body.home .section-cream:not(#productos) .section-header .elegant-divider.dark .line {
  background: linear-gradient(90deg, transparent, rgba(138, 90, 22, 0.75), transparent) !important;
}

body.home .section-cream:not(#productos),
body.auraland-home-shell .section-cream:not(#productos) {
  background:
    radial-gradient(circle at top, rgba(255, 250, 240, 0.88), rgba(255, 247, 236, 0.72) 58%, rgba(255, 247, 236, 0.58) 100%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  backdrop-filter: blur(18px) saturate(118%);
  border-top: 1px solid rgba(212, 160, 51, 0.16);
  border-bottom: 1px solid rgba(212, 160, 51, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

body.home .section-cream:not(#productos) .container,
body.auraland-home-shell .section-cream:not(#productos) .container {
  position: relative;
  z-index: 1;
}

body.home .section-cream,
body.auraland-home-shell .section-cream {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(255, 247, 236, 0.58)),
    rgba(255, 247, 236, 0.48);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.aura-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.aura-gallery-card {
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.15), rgba(255, 244, 226, 0.08)),
    rgba(8, 6, 4, 0.22);
  border: 1px solid rgba(212, 160, 51, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.aura-gallery-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.aura-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  transition: transform 0.45s ease;
}

.aura-gallery-card:hover .aura-gallery-img {
  transform: scale(1.04);
}

/* Sizes and testimonials titles stay premium and legible on cream sections */
body.home .section-cream:not(#productos) .section-title,
body.home .section-cream:not(#productos) .size-name {
  color: #1a150e !important;
}

body.home #resenas .testimonials-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home #resenas .testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.34), rgba(255, 244, 226, 0.18)),
    rgba(8, 6, 4, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid rgba(212, 160, 51, 0.2);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.home #resenas .testimonial-quote {
  font-size: 1.02rem;
}

body.home .section-cream:not(#productos) .size-card {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(255, 244, 226, 0.14)) !important;
  border: 1px solid rgba(212, 160, 51, 0.22) !important;
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 18px 44px rgba(42, 34, 23, 0.12) !important;
  border-radius: 24px !important;
}

body.home .section-cream:not(#productos) .size-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 199, 107, 0.22) 0%, rgba(242, 199, 107, 0.1) 48%, rgba(242, 199, 107, 0.03) 72%),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(212, 160, 51, 0.24);
  color: var(--color-gold-text-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

body.home .section-cream:not(#productos) .size-price {
  color: #8a5a16 !important;
  font-size: 1.34rem !important;
  letter-spacing: 0.03em;
}

body.home .section-cream:not(#productos):not(#resenas) .sizes-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.home .section-cream:not(#productos):not(#resenas) .size-card {
  min-height: 140px;
}

/* Includes strip copy polish */
.strip-section {
  background:
    radial-gradient(circle at top, rgba(242, 199, 107, 0.08), rgba(3, 3, 3, 0) 42%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.98) 0%, rgba(5, 4, 2, 0.98) 100%);
}

.includes-strip {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.09), rgba(255, 244, 224, 0.04)),
    rgba(8, 6, 4, 0.6);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.strip-main-title {
  font-size: 1.68rem;
  color: var(--color-gold-bright);
}

.strip-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.strip-subtitle {
  font-size: 0.84rem;
  line-height: 1.35;
  color: #f3e6c7;
}

.strip-text {
  gap: 4px;
}

.strip-item {
  align-items: flex-start;
}

.strip-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.strip-items-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.strip-item {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 244, 224, 0.04));
  border: 1px solid rgba(212, 160, 51, 0.18);
  border-radius: 18px;
  padding: 16px 18px;
  min-height: 112px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.strip-divider,
.strip-item-divider {
  display: none;
}

.strip-label-col {
  padding-right: 10px;
}

@media (max-width: 1180px) {
  .strip-items-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .strip-items-row {
    grid-template-columns: 1fr;
  }

  .strip-main-title {
    white-space: normal;
    text-align: center;
  }
}

/* Benefits cards: a bit larger and more commercial */
.benefit-card {
  padding: 36px 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.28), rgba(255, 244, 226, 0.14)),
    rgba(8, 6, 4, 0.12);
  border: 1px solid rgba(212, 160, 51, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  border-radius: 24px;
}

.benefit-icon-box {
  margin-bottom: 18px;
  color: var(--color-gold-text-dark);
}

.benefit-title {
  font-size: 1.28rem;
  line-height: 1.18;
}

.benefit-desc {
  font-size: 0.98rem;
  line-height: 1.65;
}

.benefit-card svg {
  width: 48px;
  height: 48px;
}

.payment-methods {
  flex-wrap: wrap;
  justify-content: center;
}

.payment-badge {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .aura-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aura-gallery-grid {
    grid-template-columns: 1fr;
  }
}

body.home .section-cream:not(#productos) .sizes-container {
  gap: 22px;
}

body.home .section-cream:not(#productos) .size-name {
  font-size: 1.08rem;
}

body.home .section-cream:not(#productos) .size-dimension {
  font-size: 0.82rem;
}

.trust-bottom-row {
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.trust-bottom-item {
  font-weight: 700;
}

.trust-bottom-icon {
  font-size: 1rem;
}

.footer-copyright {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.colombia-pride {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  body.home .section-cream:not(#productos) .size-card {
    padding: 20px;
  }

  .strip-item {
    min-height: 0;
  }

  .aura-gallery-grid {
    gap: 18px;
    margin-top: 28px;
  }

  .footer-bottom-strip {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 1024px) {
  body.home #resenas .testimonials-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .section-cream:not(#productos):not(#resenas) .sizes-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.home #resenas .testimonials-container {
    grid-template-columns: 1fr;
  }

  body.home .section-cream:not(#productos):not(#resenas) .sizes-container {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   WOOCOMMERCE SHOP PAGE — PREMIUM OVERRIDES
   Aura Colombia 3D /tienda/
   ========================================= */

/* Product grid container */
body.post-type-archive-product.woocommerce .site-main,
body.woocommerce-post-type-archive-product .site-main,
.woocommerce.post-type-archive-product .site-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* GRID — 3 columns desktop, 2 tablet, 1 mobile */
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.archive.woocommerce ul.products,
.woocommerce ul.products.columns-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: 32px !important;
  align-items: stretch !important;
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
}

/* Individual product card — flex column, full height */
.woocommerce ul.products li.product {
  background: linear-gradient(145deg, rgba(19, 13, 7, 0.95), rgba(8, 5, 2, 0.98)) !important;
  border: 1.5px solid rgba(212, 160, 51, 0.3) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 18px rgba(212, 160, 51, 0.07) !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  float: none !important;
  clear: none !important;
  height: 100% !important;
  min-height: 0 !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(242, 199, 107, 0.75) !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.55), 0 0 35px rgba(212, 160, 51, 0.2) !important;
}

/* Product image — fixed height uniform */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              filter 0.4s ease !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.06) !important;
  filter: brightness(1.08) !important;
}

/* Gradient overlay on image bottom */
.woocommerce ul.products li.product a.woocommerce-loop-product__link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 70px !important;
  background: linear-gradient(to top, rgba(8, 5, 2, 0.75), transparent) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Product info — fills remaining height */
.woocommerce ul.products li.product .woocommerce-loop-product__link:not(a) {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.woocommerce ul.products li.product .product-details {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 0 !important;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #fff8ea !important;
  text-align: center !important;
  padding: 20px 20px 6px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.03em !important;
  margin: 0 !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Price */
.woocommerce ul.products li.product .price {
  color: #f2c76b !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 6px 20px 12px !important;
  letter-spacing: 0.02em !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
  min-height: 42px !important;
}

.woocommerce ul.products li.product .price .amount {
  color: #f2c76b !important;
}

.woocommerce ul.products li.product .price del {
  color: #6e6250 !important;
  font-size: 0.8em !important;
  opacity: 0.65 !important;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: #f2c76b !important;
}

/* Short description */
.woocommerce ul.products li.product .excerpt {
  color: #b3a795 !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
  padding: 0 18px 10px !important;
  margin: 0 !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ===== BUTTON — matching home "CREAR MI RECUERDO" (.btn-primary) ===== */

/* Base button — pill shape, gold gradient, auto-shine, pulse glow */
.woocommerce ul.products li.product .button {
  display: block !important;
  width: calc(100% - 40px) !important;
  margin: auto 20px 20px !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-base) 100%) !important;
  color: #1a150e !important;
  border: 1px solid var(--color-gold-bright) !important;
  border-radius: 999px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  cursor: pointer !important;
  box-shadow: var(--gold-glow) !important;
  animation: pulse-btn-glow 3s infinite ease-in-out !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s ease,
              filter 0.3s ease,
              background 0.3s ease !important;
  position: relative !important;
  overflow: visible !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  z-index: 10 !important;
}

/* Auto-shine sweep effect */
.woocommerce ul.products li.product .button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -150% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.65), transparent) !important;
  transform: skewX(-25deg) !important;
  animation: btn-auto-shine 4s ease-in-out infinite !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Hover state — elevated, brighter, no pulse */
.woocommerce ul.products li.product .button:hover {
  background: linear-gradient(135deg, var(--color-gold-base) 0%, var(--color-gold-bright) 100%) !important;
  box-shadow: 0 0 25px rgba(242, 199, 107, 0.8), var(--gold-glow-hover) !important;
  transform: translateY(-2px) scale(1.04) !important;
  animation: none !important;
}

.woocommerce ul.products li.product .button:hover::before {
  animation: none !important;
  left: 150% !important;
  transition: 0.45s !important;
}

/* Sale badge */
.woocommerce span.onsale,
.woocommerce ul.products li.product span.onsale {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-base)) !important;
  color: #1a150e !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
  border-radius: 10px !important;
  padding: 5px 12px !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1 !important;
  box-shadow: 0 2px 10px rgba(212, 160, 51, 0.4) !important;
  border: 1px solid var(--color-gold-bright) !important;
}

/* Star rating */
.woocommerce .star-rating {
  color: var(--color-gold-bright) !important;
  font-size: 0.9rem !important;
}

/* Result count and ordering */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering select {
  color: #b3a795 !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  background: rgba(19, 13, 7, 0.85) !important;
  border: 1px solid rgba(212, 160, 51, 0.25) !important;
  border-radius: 10px !important;
  padding: 8px 14px !important;
}

.woocommerce .woocommerce-ordering select {
  cursor: pointer !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: 1px solid rgba(212, 160, 51, 0.2) !important;
  border-radius: 14px !important;
  background: rgba(8, 5, 2, 0.92) !important;
  padding: 10px !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 2px !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  color: #fff8ea !important;
  background: transparent !important;
  border-radius: 10px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 600 !important;
  min-width: 42px !important;
  height: 42px !important;
  line-height: 42px !important;
  padding: 0 12px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li .current {
  background: rgba(212, 160, 51, 0.25) !important;
  color: var(--color-gold-bright) !important;
}

/* Remove default WooCommerce underlines */
.woocommerce ul.products li.product a {
  text-decoration: none !important;
  box-shadow: none !important;
}

/* ===== WOOCOMMERCE 3×2 GRID FIX — Disable clearfix pseudo-elements ===== */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

/* ===== WOOCOMMERCE 3×2 GRID FIX — Product card reset (clear float/grid legacy) ===== */
.woocommerce ul.products li.product {
  float: none !important;
  clear: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  body.post-type-archive-product.woocommerce .site-main,
  body.woocommerce-post-type-archive-product .site-main {
    padding: 32px 20px 60px !important;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px !important;
  }

  .woocommerce ul.products li.product a img {
    /* aspect-ratio: 1/1 handled by base rule */
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.95rem !important;
    padding: 16px 16px 6px !important;
    min-height: 46px !important;
  }

  .woocommerce ul.products li.product .price {
    font-size: 1.05rem !important;
    padding: 5px 16px 10px !important;
    min-height: 38px !important;
  }

  .woocommerce ul.products li.product .button {
    font-size: 0.75rem !important;
    padding: 12px 16px !important;
    margin: auto 16px 16px !important;
    width: calc(100% - 32px) !important;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  body.post-type-archive-product.woocommerce .site-main,
  body.woocommerce-post-type-archive-product .site-main {
    padding: 24px 20px 60px !important;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  .woocommerce ul.products li.product a img {
    /* aspect-ratio: 1/1 handled by base rule */
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem !important;
    padding: 18px 20px 6px !important;
    min-height: 48px !important;
    letter-spacing: 0.03em !important;
  }

  .woocommerce ul.products li.product .price {
    font-size: 1.1rem !important;
    padding: 6px 20px 14px !important;
    min-height: 40px !important;
  }

  .woocommerce ul.products li.product .excerpt {
    font-size: 0.88rem !important;
    padding: 0 20px 12px !important;
    min-height: 36px !important;
    display: flex !important;
  }

  .woocommerce ul.products li.product .button {
    font-size: 0.85rem !important;
    padding: 15px 28px !important;
    margin: auto 24px 22px !important;
    width: calc(100% - 48px) !important;
    letter-spacing: 0.1em !important;
  }

  .woocommerce ul.products li.product .excerpt {
    display: none !important;
  }

  .woocommerce ul.products li.product .button {
    font-size: 0.68rem !important;
    padding: 10px 10px !important;
    margin: auto 10px 12px !important;
    width: calc(100% - 20px) !important;
    letter-spacing: 0.08em !important;
  }
}

/* ===== RESPONSIVE — MOBILE SMALL ===== */
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .woocommerce ul.products li.product a img {
    /* aspect-ratio: 1/1 handled by base rule */
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.95rem !important;
    padding: 16px 16px 6px !important;
    min-height: 44px !important;
  }

  .woocommerce ul.products li.product .price {
    font-size: 1.05rem !important;
    padding: 5px 16px 10px !important;
    min-height: 38px !important;
  }

  .woocommerce ul.products li.product .button {
    font-size: 0.78rem !important;
    padding: 13px 20px !important;
    margin: auto 16px 16px !important;
    width: calc(100% - 32px) !important;
  }
}

/* ===== WOOCOMMERCE MESSAGE BUTTON HIDE ===== */
body.post-type-archive-product .woocommerce-message .button.wc-forward {
  display: none !important;
}

@media (max-width: 1024px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.archive.woocommerce ul.products,
  .woocommerce ul.products.columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.archive.woocommerce ul.products,
  .woocommerce ul.products.columns-3 {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 480px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.archive.woocommerce ul.products,
  .woocommerce ul.products.columns-3 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* ===== WOOCOMMERCE SHOP PAGE — FINAL VISUAL PULISH ===== */
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main {
  width: 100% !important;
  max-width: none !important;
}

body.woocommerce-shop .content-area,
body.post-type-archive-product .content-area {
  width: 100% !important;
  max-width: none !important;
}

body.woocommerce-shop .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  float: none !important;
  margin-bottom: 24px !important;
}

body.woocommerce-shop .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title,
body.archive.woocommerce .woocommerce-products-header__title,
body.woocommerce-shop h1.page-title,
body.post-type-archive-product h1.page-title,
body.archive.woocommerce h1.page-title {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}

body.woocommerce-shop #sidebar,
body.archive.woocommerce #sidebar {
  display: none !important;
}

body.woocommerce-shop #primary,
body.archive.woocommerce #primary {
  width: 100% !important;
  float: none !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

body.woocommerce-shop ul.products,
body.archive.woocommerce ul.products {
  clear: both !important;
}

body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.woocommerce-shop .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering {
  float: none !important;
  clear: none !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100% !important;
  vertical-align: middle !important;
  margin: 0 10px 18px 0 !important;
}

body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count {
  padding: 8px 14px !important;
  border-radius: 10px !important;
}

body.woocommerce-shop .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select {
  margin: 0 !important;
}

body.woocommerce-shop .woocommerce,
body.post-type-archive-product .woocommerce {
  text-align: center !important;
}

body.woocommerce-shop #secondary,
body.post-type-archive-product #secondary,
body.woocommerce-shop .widget-area,
body.post-type-archive-product .widget-area,
body.woocommerce-shop .site-main > aside,
body.post-type-archive-product .site-main > aside,
body.archive.woocommerce .site-main > aside,
body.woocommerce-shop .site-main > .widget-area,
body.post-type-archive-product .site-main > .widget-area,
body.archive.woocommerce .site-main > .widget-area,
body.woocommerce-shop .widget-area aside.widget,
body.post-type-archive-product .widget-area aside.widget,
body.woocommerce-shop aside.widget,
body.post-type-archive-product aside.widget,
body.woocommerce-shop .wp-block-search,
body.post-type-archive-product .wp-block-search,
body.woocommerce-shop .widget_pages,
body.post-type-archive-product .widget_pages,
body.woocommerce-shop .widget_archive,
body.post-type-archive-product .widget_archive,
body.woocommerce-shop .widget_categories,
body.post-type-archive-product .widget_categories,
body.woocommerce-shop .site-main .widget,
body.post-type-archive-product .site-main .widget,
body.archive.woocommerce .site-main .widget {
  display: none !important;
}

@media (max-width: 768px) {
  body.woocommerce-shop .woocommerce-result-count,
  body.post-type-archive-product .woocommerce-result-count,
  body.woocommerce-shop .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-ordering {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  body.woocommerce-shop .woocommerce-ordering select,
  body.post-type-archive-product .woocommerce-ordering select {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* AURA HOME ARTWORKS + PRODUCTS + INCLUDES REBUILD */
.section-copy {
  margin: 12px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.aura-artworks-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 199, 107, 0.13) 0%, rgba(242, 199, 107, 0) 32%),
    radial-gradient(circle at 82% 0%, rgba(212, 160, 51, 0.08) 0%, rgba(212, 160, 51, 0) 30%),
    linear-gradient(180deg, #080604 0%, #0e0905 100%);
  border-top: 1px solid rgba(212, 160, 51, 0.15);
  border-bottom: 1px solid rgba(212, 160, 51, 0.12);
}

.aura-artworks-section .section-subtitle {
  color: var(--color-gold-bright);
}

.aura-artworks-section .section-title {
  color: #ffffff;
  font-weight: 800;
}

.aura-artworks-section .section-copy {
  color: rgba(255, 255, 255, 0.8);
}

.aura-artworks-section .container,
#productos .container,
.strip-section .container {
  position: relative;
  z-index: 1;
}

.aura-artworks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.aura-artwork-card {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(212, 160, 51, 0.18);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.aura-artwork-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 199, 107, 0.34);
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(242, 199, 107, 0.08);
}

.aura-artwork-media {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aura-artwork-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
}

#productos {
  background:
    radial-gradient(circle at 50% 30%, rgba(138, 90, 22, 0.18) 0%, rgba(3, 3, 3, 0) 70%),
    linear-gradient(180deg, #050403 0%, #090603 100%) !important;
  border-top: 1px solid rgba(212, 160, 51, 0.15);
  border-bottom: 1px solid rgba(212, 160, 51, 0.15);
  padding-top: 96px;
  padding-bottom: 100px;
}

#productos .section-title {
  color: #ffffff !important;
}

#productos .section-subtitle {
  color: var(--color-gold-bright) !important;
}

#productos .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

#productos .aura-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

#productos .aura-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035)),
    rgba(8, 6, 4, 0.4) !important;
  border: 1px solid rgba(212, 160, 51, 0.2) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    var(--card-shadow);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

#productos .aura-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 199, 107, 0.48) !important;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.52),
    0 0 28px rgba(242, 199, 107, 0.12);
}

#productos .aura-product-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#productos .aura-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  transition: transform 0.35s ease;
}

#productos .aura-product-card:hover .aura-product-img {
  transform: scale(1.03);
}

#productos .aura-product-info {
  padding: 18px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#productos .product-dimension {
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-gold-bright);
}

#productos .product-name {
  font-family: var(--font-sans) !important;
  font-size: clamp(1.02rem, 1vw, 1.16rem) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  overflow-wrap: anywhere;
}

#productos .product-price {
  font-family: var(--font-sans) !important;
  font-size: clamp(1.12rem, 1.12vw, 1.34rem) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 !important;
}

#productos .product-short-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 2.8em;
  overflow-wrap: anywhere;
}

#productos .product-buy-btn {
  margin-top: 4px;
  width: 100%;
  max-width: 228px;
}

.strip-section {
  background: linear-gradient(180deg, #0b0805 0%, #050403 100%);
  padding: 54px 0;
  position: relative;
}

.includes-panel {
  background:
    linear-gradient(180deg, rgba(18, 13, 8, 0.9), rgba(7, 5, 3, 0.94)),
    rgba(9, 6, 3, 0.8);
  border: 1px solid rgba(212, 160, 51, 0.24);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.includes-panel__eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}

.strip-main-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.includes-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.include-card {
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(212, 160, 51, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  overflow-wrap: anywhere;
}

.include-icon {
  color: var(--color-gold-bright);
  margin-bottom: 12px;
}

.include-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.include-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

body.home .section-cream:not(#productos),
body.auraland-home-shell .section-cream:not(#productos),
body.home .section-cream.no-divider {
  background:
    radial-gradient(circle at top, rgba(255, 250, 240, 0.7), rgba(255, 247, 236, 0.48) 62%, rgba(255, 247, 236, 0.34) 100%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  border-top: 1px solid rgba(212, 160, 51, 0.16);
  border-bottom: 1px solid rgba(212, 160, 51, 0.16);
}

body.home .benefits-grid {
  gap: 18px;
}

body.home .benefit-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(212, 160, 51, 0.18);
  color: #ffffff;
}

body.home .benefit-title {
  color: #ffffff;
}

body.home .benefit-desc {
  color: rgba(255, 255, 255, 0.8);
}

body.home .benefit-icon-box {
  color: var(--color-gold-bright);
}

body.home .payment-methods {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1100px) {
  .aura-artworks-grid,
  #productos .aura-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .aura-artworks-section {
    padding: 78px 0 84px;
  }

  .aura-artworks-grid,
  #productos .aura-products-grid,
  .includes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #productos {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .includes-panel {
    padding: 22px 16px;
  }

  .section-copy {
    font-size: 0.95rem;
  }

  #productos .aura-product-info {
    padding: 16px 14px 18px;
  }
}
