/* =====================================================
   KING ICE GOLD — Sistema de Diseño Premium
   Inspirado en Reyes Joyeros
   ===================================================== */

/* ==================== FONTS ==================== */
@font-face {
  font-family: 'Brilliant Cut Pro';
  src: url('../fonts/Brilliant-Cut-Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==================== VARIABLES ==================== */
:root {
  /* Colores principales */
  --color-primary: #D4AF37;
  --color-primary-dark: #B8960C;
  --color-primary-light: #E8C547;
  --color-primary-glow: rgba(212, 175, 55, 0.25);

  /* Fondos */
  --color-bg-dark: #0A0A0A;
  --color-bg-light: #FFFFFF;
  --color-bg-gray: #F6F7F8;
  --color-bg-card: #111111;
  --color-bg-elevated: #1A1A1A;

  /* Texto */
  --color-text-light: #FFFFFF;
  --color-text-dark: #1e1e1e;
  --color-text-body: #4b5157;
  --color-text-muted: #737880;
  --color-text-subtle: #9A9EA4;

  /* Estados */
  --color-success: #2ECC71;
  --color-warning: #F39C12;
  --color-error: #E74C3C;
  --color-info: #3498DB;

  /* Tipografía */
  --font-primary: 'M PLUS 2', 'Segoe UI', sans-serif;
  --font-heading: 'Brilliant Cut Pro', 'M PLUS 2', 'Segoe UI', sans-serif;
  --font-body: 'M PLUS 2', 'Segoe UI', sans-serif;

  /* Espaciado */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Bordes */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 50%;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);
  --shadow-gold-intense: 0 8px 40px rgba(212, 175, 55, 0.35);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Transiciones */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
  --z-flyer: 999999;
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
}

/* ==================== TIPOGRAFÍA ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

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

.text-white {
  color: var(--color-text-light);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-tracking {
  letter-spacing: 0.2em;
}

/* ==================== LAYOUT ==================== */
.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-4xl) 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

/* ==================== TOP BAR ==================== */
.top-bar {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #151515 100%);
  color: var(--color-text-subtle);
  padding: 10px 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.top-bar-spacer {
  /* empty right column for grid balance */
}

.top-bar-message {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.top-bar-message svg {
  color: var(--color-primary);
}

.top-bar-links {
  display: flex;
  align-items: center;
}

.top-bar a {
  color: var(--color-text-subtle);
  transition: color var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar a:hover {
  color: var(--color-primary);
}

/* ==================== HEADER ==================== */
.header {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.logo:hover img {
  opacity: 0.85;
}

.nav-main {
  display: flex;
  gap: var(--spacing-2xl);
}

.nav-left {
  justify-self: start;
}

.nav-main a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-body);
  position: relative;
  padding-bottom: 6px;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width var(--transition-normal);
}

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

.nav-main a:hover {
  color: var(--color-text-dark);
}

/* Categories Nav */
.nav-categories {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.nav-categories ul {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  flex-wrap: wrap;
}

.nav-categories a {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-normal);
}

.nav-categories a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-categories a:hover {
  color: var(--color-text-dark);
}

.nav-categories a:hover::after {
  width: 100%;
}

.header-icons,
.header-right {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  justify-self: end;
}

.lang-selector {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-normal);
  user-select: none;
}

.lang-selector:hover {
  color: var(--color-text-dark);
}

.lang-selector svg {
  opacity: 0.6;
}

.header-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
  transition: all var(--transition-normal);
  position: relative;
}

.header-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.header-icon:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--color-primary-glow);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

/* ==================== BOTONES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-bg-dark);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-text-light);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-bg-dark);
  border-color: var(--color-text-light);
}

.btn-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}

.btn-dark:hover {
  background-color: transparent;
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.btn-block {
  width: 100%;
}

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .product-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  color: var(--color-text-dark);
}

.carousel-arrow:hover {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow-left {
  left: -8px;
}

.carousel-arrow-right {
  right: -8px;
}

.product-card {
  background-color: var(--color-bg-light);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card>a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width var(--transition-slow);
}

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

.product-card:hover::after {
  width: 100%;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--color-bg-gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-body {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-body .btn {
  margin-top: auto;
}

.product-card-title {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
  line-height: 1.4;
}

.product-card-price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.product-card-price .from {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-subtle);
}

.product-card-price .amount {
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 1rem;
}

/* ==================== PRODUCT PAGE ==================== */
.product-page {
  padding: var(--spacing-2xl) 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.product-gallery {
  position: relative;
}

.product-main-image {
  aspect-ratio: 1;
  background-color: var(--color-bg-gray);
  border-radius: 0;
  overflow: hidden;
}

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

.product-main-image:hover img {
  transform: scale(1.03);
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.product-thumbnail {
  width: 72px;
  height: 72px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
  border-color: var(--color-primary);
}

.product-info {
  padding-top: var(--spacing-md);
}

.product-breadcrumb {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-breadcrumb a:hover {
  color: var(--color-primary);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-md);
}

.product-price-range {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
}

.product-price-range .from {
  color: var(--color-text-subtle);
  text-decoration: line-through;
  margin-right: var(--spacing-sm);
  font-size: 0.95rem;
}

.product-price-range .current {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Product Options */
.product-options {
  margin-bottom: var(--spacing-xl);
}

.product-option {
  margin-bottom: var(--spacing-lg);
}

.product-option-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-body);
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn {
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  font-size: 0.82rem;
  background-color: var(--color-bg-light);
  transition: all var(--transition-normal);
  letter-spacing: 0.04em;
}

.option-btn:hover {
  border-color: var(--color-text-dark);
}

.option-btn.selected {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--spacing-xl);
}

.quantity-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  color: var(--color-text-body);
}

.quantity-btn:hover {
  border-color: var(--color-bg-dark);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.quantity-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: none;
  border-right: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Product Features */
.product-features {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.product-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==================== CART ==================== */
.cart-page {
  padding: var(--spacing-2xl) 0;
  min-height: 60vh;
}

.cart-empty {
  text-align: center;
  padding: var(--spacing-4xl);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--color-text-subtle);
  margin-bottom: var(--spacing-lg);
  stroke-width: 1;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.cart-table td {
  padding: var(--spacing-lg) var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--color-bg-gray);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h4 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.cart-item-options {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.cart-remove {
  color: var(--color-text-subtle);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.cart-remove:hover {
  color: var(--color-error);
}

.cart-summary {
  background-color: var(--color-bg-gray);
  padding: var(--spacing-xl);
  border-radius: 0;
  margin-top: var(--spacing-xl);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.cart-summary-total {
  font-size: 1.15rem;
  font-weight: 600;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ==================== CHECKOUT ==================== */
.checkout-page {
  padding: var(--spacing-2xl) 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-3xl);
}

.checkout-section {
  background-color: var(--color-bg-light);
  padding: var(--spacing-xl);
  border-radius: 0;
  margin-bottom: var(--spacing-xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.checkout-section-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-body);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  font-size: 0.95rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-error {
  font-size: 0.72rem;
  color: var(--color-error);
  margin-top: var(--spacing-xs);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

/* Radio options */
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.radio-option:hover {
  border-color: var(--color-primary);
}

.radio-option.selected {
  border-color: var(--color-primary);
  background-color: rgba(212, 175, 55, 0.04);
}

.radio-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--color-primary);
}

.radio-option-content h4 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.radio-option-content p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Order summary sidebar */
.order-summary {
  background-color: var(--color-bg-gray);
  padding: var(--spacing-xl);
  border-radius: 0;
  position: sticky;
  top: 100px;
}

.order-summary-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
}

.order-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.order-item-image {
  width: 56px;
  height: 56px;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--color-bg-light);
  flex-shrink: 0;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-details {
  flex: 1;
}

.order-item-name {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.order-item-options {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.order-item-price {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: right;
}

.order-totals {
  margin-top: var(--spacing-lg);
}

.order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-size: 0.88rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ==================== CONFIRMATION ==================== */
.confirmation-page {
  padding: var(--spacing-4xl) 0;
  text-align: center;
}

.confirmation-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-success), #27ae60);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
  animation: confirmPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirmPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-icon svg {
  width: 44px;
  height: 44px;
  color: white;
  stroke-width: 2.5;
}

.confirmation-title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-md);
}

.order-number {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-xl);
}

.payment-instructions {
  background-color: var(--color-bg-gray);
  padding: var(--spacing-xl);
  border-radius: 0;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  text-align: left;
  border-left: 3px solid var(--color-primary);
}

.payment-instructions h3 {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.payment-instructions ol {
  list-style: decimal;
  padding-left: var(--spacing-lg);
}

.payment-instructions li {
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #050505 100%);
  color: var(--color-text-light);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-section h4 {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  transition: all var(--transition-normal);
}

.footer-section a:hover {
  color: var(--color-text-light);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  letter-spacing: 0.04em;
  cursor: default;
}

.footer-copyright span {
  cursor: pointer;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
  z-index: var(--z-sticky);
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ==================== FLY CART ANIMATION ==================== */
.rj-fly-cart-flyer {
  position: fixed;
  z-index: var(--z-flyer);
  pointer-events: none;
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  will-change: transform, opacity;
  background: #fff;
}

.rj-fly-cart-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rj-fly-cart-flyer.rj-fly-cart-dot {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(0, 0, 0, 0.08));
}

.rj-fly-cart-pop {
  animation: rjFlyCartPop 320ms ease;
  transform-origin: center;
}

@keyframes rjFlyCartPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rj-fly-cart-flyer {
    display: none !important;
  }

  .rj-fly-cart-pop {
    animation: none !important;
  }

  .hero-content {
    animation: none !important;
  }

  .hero-title {
    animation: none !important;
  }
}

/* ==================== UTILITIES ==================== */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.pt-xl {
  padding-top: var(--spacing-xl);
}

.pb-xl {
  padding-bottom: var(--spacing-xl);
}

/* ==================== LOADER ==================== */
.loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== ALERTS ==================== */
.alert {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 0;
  margin-bottom: var(--spacing-md);
  font-size: 0.88rem;
  border-left: 3px solid;
}

.alert-success {
  background-color: rgba(46, 204, 113, 0.06);
  border-color: var(--color-success);
  color: #1a8a4a;
}

.alert-error {
  background-color: rgba(231, 76, 60, 0.06);
  border-color: var(--color-error);
  color: #c0392b;
}

.alert-info {
  background-color: rgba(212, 175, 55, 0.06);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== CATEGORY CARDS ==================== */
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.category-card-overlay h3 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  color: var(--color-text-light);
}

.page-header h1 {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  font-weight: 300;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.about-story p+p {
  margin-top: var(--spacing-lg);
}

.value-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.value-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.value-card h3 {
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.why-image {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-image span {
  font-size: 5rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.checklist-icon {
  color: var(--color-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item strong {
  display: block;
  margin-bottom: 2px;
}

.checklist-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* CTA Section */
.cta-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.cta-section p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--spacing-xl);
}

/* ==================== CART LAYOUT ==================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--spacing-2xl);
}

.cart-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-xl);
  font-weight: 300;
  letter-spacing: 0.12em;
}

/* ==================== CHECKOUT FOOTER ==================== */
.checkout-footer {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-gray);
  margin-top: var(--spacing-2xl);
}

.checkout-footer p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==================== CONFIRMATION EXTRAS ==================== */
.confirmation-note {
  background: rgba(212, 175, 55, 0.08);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.confirmation-note p {
  margin: 0;
  font-size: 0.9rem;
}

.confirmation-summary {
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  text-align: left;
}

.confirmation-summary-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}

.confirmation-box {
  background: var(--color-bg-gray);
  padding: var(--spacing-lg);
}

.confirmation-box+.confirmation-box {
  margin-top: var(--spacing-lg);
}

.confirmation-actions {
  margin-top: var(--spacing-2xl);
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}

.btn-secondary:hover {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* ==================== HERO ENHANCED ==================== */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.92;
}

.hero-kenburns {
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.1) translateX(-2%);
  }
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.6) 85%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

/* ==================== SECTION TITLE PATTERN ==================== */
.section-title {
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  display: block;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  margin: var(--spacing-md) auto 0;
}

/* Make section-title centered in its parent */
.text-center .section-title,
.text-center.section-title {
  margin-left: auto;
  margin-right: auto;
}

/* ==================== 3D PRODUCT SPHERE ==================== */
.sphere-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #f8f6f0 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.product-sphere {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.sphere-ring {
  position: relative;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  animation: sphereRotate 30s linear infinite;
}

@keyframes sphereRotate {
  from {
    transform: rotateY(0deg) rotateX(-8deg);
  }

  to {
    transform: rotateY(360deg) rotateX(-8deg);
  }
}

.sphere-card {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  margin-left: -65px;
  margin-top: -65px;
  transform:
    translateY(calc((var(--row) - 0.5) * 100px)) rotateY(calc(var(--i) * 72deg + var(--row) * 36deg)) translateZ(260px);
  backface-visibility: hidden;
}

.sphere-card-inner {
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(212, 175, 55, 0.08),
    inset 0 0 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.sphere-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  transition: transform 0.4s ease;
}

.sphere-card:hover .sphere-card-inner {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(212, 175, 55, 0.2);
}

.sphere-card:hover .sphere-card-inner img {
  transform: scale(1.1);
}

/* ==================== INTRO SECTION ==================== */
.intro-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-4xl) 0;
  position: relative;
}

.intro-title {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

.intro-subtitle {
  font-size: 0.85rem;
  color: var(--color-primary);
  letter-spacing: 0.25em;
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

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

/* ==================== CATEGORY CARDS ==================== */
.category-cards-section {
  padding: 0;
  background: #0c0c0c;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.category-card-item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  background: #111;
}

.category-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card-item:hover img {
  transform: scale(1.05);
}

.category-card-item span {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-carousel {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  flex-wrap: wrap;
  padding: var(--spacing-xl) 0;
}

.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  transition: transform var(--transition-normal);
  text-decoration: none;
}

.cat-circle:hover {
  transform: translateY(-4px);
}

.cat-circle-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-full);
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.05);
  transition: all var(--transition-normal);
}

.cat-circle:hover .cat-circle-icon {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.1);
}

.cat-circle-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.cat-circle-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.cat-circle:hover .cat-circle-label {
  color: var(--color-primary);
}

/* Removed duplicate .video-banner styles */

/* ==================== BEFORE / AFTER SLIDER ==================== */
.before-after-section {
  overflow: hidden;
  text-align: center;
}

.before-after-container {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
  user-select: none;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 1;
}

.ba-image {
  width: 100%;
  height: 100%;
}

.ba-placeholder-before,
.ba-placeholder-after {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.ba-placeholder-before {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.ba-placeholder-after {
  background: linear-gradient(135deg, #15130e, #2a2516);
}

.ba-placeholder-before svg,
.ba-placeholder-after svg {
  width: 120px;
  height: 120px;
}

.ba-placeholder-before span,
.ba-placeholder-after span {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ba-label {
  position: absolute;
  top: var(--spacing-md);
  z-index: 5;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text-light);
  padding: 4px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border-radius: 2px;
}

.ba-before .ba-label {
  left: var(--spacing-md);
}

.ba-after .ba-label {
  right: var(--spacing-md);
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  cursor: col-resize;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}

/* ==================== COLLECTION BLOCKS ==================== */
.collection-blocks-section {
  background-color: var(--color-bg-gray);
}

.collection-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.collection-block {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.collection-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-block-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-block:hover .collection-block-bg {
  transform: scale(1.05);
}

.collection-block-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
}

.collection-block-content svg {
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.collection-block-content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  position: relative;
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/newsletter-bg.png') center center / cover no-repeat;
  opacity: 0.3;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.newsletter-content h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.newsletter-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
  font-size: 0.9rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-normal);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary);
}

.newsletter-form .btn {
  border-radius: 0;
  white-space: nowrap;
}

/* ==================== TRUST BADGES ENHANCED ==================== */
.trust-badges-section {
  background-color: var(--color-bg-light);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  text-align: center;
}

.trust-badge {
  padding: var(--spacing-xl);
  transition: transform var(--transition-normal);
}

.trust-badge:hover {
  transform: translateY(-4px);
}

.trust-badge-icon {
  margin-bottom: var(--spacing-lg);
}

.trust-badge-icon svg {
  transition: all var(--transition-normal);
}

.trust-badge:hover .trust-badge-icon svg {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

.trust-badge h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
}

.trust-badge p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==================== FOOTER SOCIAL ==================== */
.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}



/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: var(--z-modal);
  padding: var(--spacing-3xl) var(--spacing-xl);
  transition: left var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  font-size: 2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-normal);
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--color-primary);
}

.mobile-menu nav a {
  display: block;
  padding: var(--spacing-md) 0;
  font-size: 1rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-normal);
}

.mobile-menu nav a:hover {
  color: var(--color-primary);
}

/* ==================== MENU TOGGLE ==================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-body);
  transition: all var(--transition-normal);
}

/* ==================== HERO VIDEO ==================== */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.1) 40%,
      rgba(10, 10, 10, 0.5) 80%,
      rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: var(--spacing-2xl);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* ==================== VIDEO BANNER ==================== */
.video-banner {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.video-banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.video-banner::before {
  display: none;
}

.video-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  max-width: 800px;
  width: 100%;
  padding: 0 var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-banner-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-align: center;
  width: 100%;
}

.video-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-2xl);
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 600px;
}

/* ==================== BEFORE/AFTER SLIDER ==================== */
.before-after-section {
  padding: var(--spacing-4xl) 0;
}

.before-after-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  cursor: ew-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}

.ba-image {
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.ba-label {
  position: absolute;
  top: var(--spacing-lg);
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-text-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.ba-before .ba-label {
  left: var(--spacing-lg);
}

.ba-after .ba-label {
  right: var(--spacing-lg);
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  appearance: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 8;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--color-primary);
}

.ba-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

/* ==================== COLLECTION BLOCKS ==================== */
.collection-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.collection-block {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.collection-block-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.collection-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-block:hover .collection-block-bg img {
  transform: scale(1.08);
}

.collection-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
  transition: background var(--transition-normal);
}

.collection-block:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.collection-block-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
  width: 100%;
}

.collection-block-content h3 {
  color: var(--color-text-light);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges-section {
  background-color: var(--color-bg-gray);
  padding: var(--spacing-4xl) 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  text-align: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.trust-badge-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-badge h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
}

.trust-badge p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  max-width: 260px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  position: relative;
  padding: var(--spacing-4xl) 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.newsletter-content h2 {
  color: var(--color-text-light);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md);
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-2xl);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-normal);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ==================== SEARCH MODAL ==================== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.search-modal.active {
  display: flex;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.search-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: searchSlideDown 0.3s ease-out;
}

@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  z-index: 3;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition-fast);
}

.search-modal-close:hover {
  color: var(--color-text-dark);
}

.search-modal-input-wrap {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.search-modal-input-wrap svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.search-modal-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--color-text-dark);
  background: transparent;
}

.search-modal-input::placeholder {
  color: var(--color-text-subtle);
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: var(--spacing-sm) 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: 12px 24px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background-color: var(--color-bg-gray);
}

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

.search-result-item .result-info {
  flex: 1;
}

.search-result-item .result-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.search-result-item .result-category {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-result-item .result-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.search-no-results {
  padding: var(--spacing-2xl);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ==================== PARTICLES ==================== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--border-radius-full);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.15;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ==================== 3D PRODUCT GLOBE (Three.js) ==================== */
.sphere-section {
  padding: 40px 0 10px;
  background: #ffffff;
  overflow: hidden;
}

.globe-scene {
  width: 100%;
  max-width: 900px;
  height: 650px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Center logo overlay */
.globe-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.globe-center-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Cards created dynamically by globe.js */
.globe-3d-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-3d-card img.globe-3d-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Logo inside the 3D scene */
.globe-3d-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-3d-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}


/* ==================== MÁS VENDIDOS ==================== */
.bestsellers-section {
  padding: 60px 0 80px;
  background: var(--color-bg-gray, #f6f6f6);
}

.bestsellers-title {
  text-align: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #222;
  margin-bottom: 48px;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.bestseller-card {
  text-align: center;
}

.bestseller-img-link {
  display: block;
  margin-bottom: 20px;
}

.bestseller-img-link img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

.bestseller-info {
  padding: 0 10px;
}

.bestseller-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bestseller-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #555;
}

.price-label {
  font-style: italic;
  color: #888;
  font-size: 0.8rem;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.82rem;
}

.price-current {
  font-weight: 600;
  color: #222;
  font-size: 0.95rem;
}

.bestseller-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 10px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #222;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 10px;
}

.bestseller-btn:hover {
  background: transparent;
  color: #222;
}

.bestseller-wishlist {
  display: block;
  font-size: 0.72rem;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.bestseller-wishlist:hover {
  color: #222;
}

@media (max-width: 640px) {
  .bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==================== INTRO SECTION ==================== */
.intro-section {
  padding: var(--spacing-4xl) 0;
  background: var(--color-bg-light);
}

.intro-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.intro-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-dark);
}

.intro-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--spacing-2xl);
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

/* ==================== CATEGORY CAROUSEL ==================== */
.category-carousel {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  padding: var(--spacing-md) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
  display: none;
}

.category-carousel-item {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.category-carousel-item:hover {
  transform: translateY(-4px);
}

.category-carousel-item img {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.category-carousel-item:hover img {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.category-carousel-item span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-body);
}

/* ==================== SECTION TITLE ==================== */
.section-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  margin: var(--spacing-md) auto 0;
}



/* ==================== SCROLL-TO-TOP ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  border-color: var(--color-primary);
}

/* ==================== WHATSAPP ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all var(--transition-normal);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== SPACING HELPERS ==================== */
.mb-xl {
  margin-bottom: var(--spacing-xl);
}