/* ==========================================================================
   ICON PERFUMES X - LUXURY E-COMMERCE DESIGN SYSTEM
   Author: Google DeepMind Antigravity Pair Programmer
   Brand: icon perfumes x
   Theme: Obsidian & Metallic Gold Luxury
   Zero Emojis - Cámara de Comercio Strict Compliance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --gold-primary: #DDBB00;
  --gold-light: #FCE14C;
  --gold-dark: #A58B00;
  --gold-gradient: linear-gradient(135deg, #FFF089 0%, #DDBB00 50%, #9C8200 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #F5D329 50%, #B89B00 100%);
  --gold-glow: 0 0 25px rgba(221, 187, 0, 0.28);
  --gold-border: rgba(221, 187, 0, 0.22);
  --gold-border-bright: rgba(221, 187, 0, 0.55);
  --gold-bg-subtle: rgba(221, 187, 0, 0.06);
  --gold-bg-hover: rgba(221, 187, 0, 0.12);

  --bg-dark: #070707;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --bg-elevated: #222222;
  --bg-glass: rgba(18, 18, 18, 0.82);

  --text-main: #FFFFFF;
  --text-secondary: #D4D4D8;
  --text-muted: #8E8E93;
  --text-gold: #DDBB00;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(221, 187, 0, 0.6);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(221, 187, 0, 0.15);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------- RESET & BASE ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* ---------------- TYPOGRAPHY & UTILITIES ---------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(221, 187, 0, 0.25);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 24px rgba(221, 187, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-border-bright);
}

.btn-gold-outline:hover {
  background: var(--gold-bg-hover);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* ---------------- ANNOUNCEMENT BAR ---------------- */
.announcement-bar {
  background: #000000;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--gold-primary);
  text-align: center;
  font-weight: 500;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.announcement-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.announcement-links {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.announcement-links a:hover {
  color: var(--gold-primary);
}

/* ---------------- HEADER / NAVBAR ---------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.brand-logo-text span {
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icon-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  border-color: var(--gold-border-bright);
  color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold-primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.mobile-toggle {
  display: none;
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  position: relative;
  padding: 70px 0 50px;
  background: radial-gradient(circle at 80% 20%, rgba(221, 187, 0, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(221, 187, 0, 0.05) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border-bright);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 10;
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 30;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.hero-img-wrap {
  width: 100%;
  height: 310px;
  background: radial-gradient(circle at center, rgba(221, 187, 0, 0.12) 0%, rgba(18, 18, 20, 0.9) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-top: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-img-wrap img {
  max-height: 90%;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.75));
  transition: transform 0.4s ease;
}

.hero-visual-card:hover .hero-img-wrap img {
  transform: scale(1.05);
}

.hero-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hero-card-category {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-align: right;
}

.hero-card-wholesale {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: right;
}

/* ---------------- VALUE PROPOSITIONS BAR ---------------- */
.value-props-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prop-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.prop-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prop-content h4 {
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.prop-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------------- SPOTLIGHT FLAGSHIP: ROME EXTRADOSE ---------------- */
.spotlight-section {
  background: radial-gradient(circle at 50% 50%, rgba(221, 187, 0, 0.08) 0%, transparent 70%),
              var(--bg-dark);
  position: relative;
}

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 45px;
  align-items: center;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--gold-primary);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.spotlight-image-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(221, 187, 0, 0.15) 0%, rgba(18, 18, 20, 0.95) 75%);
  padding: 45px 20px 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  min-height: 380px;
}

.spotlight-image-side img {
  max-height: 350px;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.85));
  transition: transform 0.4s ease;
}

.spotlight-image-side:hover img {
  transform: scale(1.04);
}

.spotlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 30;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.spotlight-info-side {
  display: flex;
  flex-direction: column;
}

.spotlight-subtitle {
  font-size: 0.88rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spotlight-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.spotlight-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.olfactive-pyramid {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.pyramid-header {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pyramid-item {
  display: flex;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.pyramid-item:last-child {
  margin-bottom: 0;
}

.pyramid-label {
  width: 140px;
  font-weight: 600;
  color: var(--text-main);
  flex-shrink: 0;
}

.pyramid-val {
  color: var(--text-secondary);
}

.spotlight-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.spec-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.spotlight-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.price-box-main {
  display: flex;
  flex-direction: column;
}

.price-main-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.price-main-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-box-wholesale {
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.price-wholesale-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.price-wholesale-label {
  font-size: 0.74rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.spotlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------- CATALOG SECTION ---------------- */
.catalog-section {
  background: var(--bg-dark);
}

.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.catalog-search-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px 12px 44px;
  color: var(--text-main);
  font-size: 0.92rem;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--gold-border-bright);
  box-shadow: 0 0 15px rgba(221, 187, 0, 0.15);
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--text-main);
  font-size: 0.92rem;
  cursor: pointer;
  min-width: 180px;
}

.sort-select:focus {
  border-color: var(--gold-border-bright);
}

.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.category-tabs::-webkit-scrollbar {
  height: 4px;
}

.category-tabs::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 4px;
}

.category-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.category-tab:hover {
  border-color: var(--gold-border);
  color: var(--gold-primary);
}

.category-tab.active {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(221, 187, 0, 0.25);
}

/* ---------------- COMPACT PRODUCT CARDS ---------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card-top {
  position: relative;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.product-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.6));
}

.product-card:hover .product-card-img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold-primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-quick-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 3;
}

.product-card:hover .product-quick-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-quick-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.product-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border-subtle);
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.76rem;
}

.stars-list {
  display: flex;
  color: var(--gold-primary);
}

.reviews-count {
  color: var(--text-muted);
}

.product-card-title {
  font-size: 1.05rem;
  margin-bottom: 4px;
  line-height: 1.25;
  color: var(--text-main);
}

.product-card-subtitle {
  font-size: 0.76rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-prices {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-price-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.product-price-wholesale {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.product-price-wholesale span {
  color: var(--text-secondary);
  font-weight: 600;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

/* ---------------- WHOLESALE CALCULATOR SECTION ---------------- */
.wholesale-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.wholesale-card-calc {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-hover);
}

.calc-title {
  font-size: 1.3rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-control-group {
  margin-bottom: 22px;
}

.calc-control-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.calc-range-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.calc-tiers-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.tier-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.tier-btn.active, .tier-btn:hover {
  background: var(--gold-bg-subtle);
  border-color: var(--gold-border-bright);
  color: var(--gold-primary);
}

.calc-results-box {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.calc-result-item {
  display: flex;
  flex-direction: column;
}

.calc-res-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.calc-res-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.calc-res-val.highlight {
  color: var(--gold-primary);
}

.wholesale-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-row h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.benefit-row p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ---------------- GUARANTEES & TRUST SECTION ---------------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.guarantee-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.guarantee-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.guarantee-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------------- FAQ ACCORDION ---------------- */
.faq-section {
  background: var(--bg-surface);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-border-bright);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  user-select: none;
}

.faq-question svg {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------------- CONTACT & ORDER INFO SECTION ---------------- */
.contact-section {
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-details h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.channel-details p, .channel-details a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.channel-details a:hover {
  color: var(--gold-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-main);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-border-bright);
  box-shadow: 0 0 12px rgba(221, 187, 0, 0.15);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* ---------------- FOOTER (STRICTLY NO ADMIN LINK) ---------------- */
.footer {
  background: #040404;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------------- CART DRAWER ---------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 95vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-header h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-drawer-btn:hover {
  color: var(--text-main);
  background: var(--bg-elevated);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  gap: 12px;
}

.cart-empty-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-card, .cart-item, .cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: var(--transition);
  position: relative;
}

.cart-item-card:hover, .cart-item:hover, .cart-item-row:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.cart-item-thumb, .cart-item-img {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(221, 187, 0, 0.08) 0%, rgba(18, 18, 20, 0.9) 75%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-thumb img, .cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.cart-item-content, .cart-item-info, .cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item-name, .cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-delete, .cart-item-remove, .remove-item-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-item-delete:hover, .cart-item-remove:hover, .remove-item-btn:hover {
  color: #ff4d4f;
  background: rgba(255, 77, 79, 0.12);
}

.cart-item-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-unit-price, .cart-item-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.cart-wholesale-tag {
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-item-bottom-row, .cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Stepper: - 1 + */
.cart-stepper, .cart-qty-controls, .qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-step-btn, .cart-qty-btn, .qty-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.cart-step-btn:hover, .cart-qty-btn:hover, .qty-btn:hover {
  background: var(--bg-elevated);
  color: var(--gold-primary);
}

.cart-step-qty, .cart-qty-val, .qty-val {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  min-width: 26px;
  text-align: center;
  user-select: none;
}

.cart-item-subtotal {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.cart-wholesale-banner {
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold-border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--gold-primary);
  margin-bottom: 14px;
  text-align: center;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.cart-total-val {
  color: var(--gold-primary);
}

.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.cart-checkout-form input {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.84rem;
  color: var(--text-main);
}

/* ---------------- QUICK VIEW MODAL ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--text-main);
  border-color: var(--gold-border);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  padding: 30px;
}

.modal-img-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-wrap img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
}

.modal-info-col {
  display: flex;
  flex-direction: column;
}

.modal-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.modal-price-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.modal-price-wholesale {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.modal-specs-list {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.modal-spec-row {
  display: flex;
  margin-bottom: 6px;
}

.modal-spec-row:last-child {
  margin-bottom: 0;
}

.modal-spec-lbl {
  width: 110px;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ---------------- FLOATING WHATSAPP BUTTON ---------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-wa-tooltip {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------------- TOAST NOTIFICATIONS ---------------- */
.toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
  pointer-events: auto;
  animation: slideInToast 0.3s ease forwards;
  max-width: 360px;
}

.toast.toast-error {
  border-left-color: #ff4d4f;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---------------- RESPONSIVE BREAKPOINTS ---------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wholesale-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-bar .container {
    flex-direction: column;
    gap: 4px;
  }
  .announcement-links {
    display: none;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow-card);
    z-index: 1000;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  
  /* STRICT 2-COLUMN GRID ON MOBILE (<768px) */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-card-top {
    height: 155px;
    padding: 10px;
  }
  .product-card-body {
    padding: 10px;
  }
  .product-card-title {
    font-size: 0.9rem;
  }
  .product-card-subtitle {
    font-size: 0.7rem;
  }
  .product-card-desc {
    font-size: 0.74rem;
    -webkit-line-clamp: 2;
  }
  .product-price-main {
    font-size: 0.98rem;
  }
  .product-price-wholesale {
    font-size: 0.68rem;
  }
  .product-card-actions .btn {
    padding: 6px 10px;
    font-size: 0.76rem;
  }
  
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .floating-wa-tooltip {
    display: none;
  }
}


/* ---------------- TESTIMONIALS SECTION ---------------- */
.testimonials-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}


/* ==========================================================================
   PRODUCT CARDS & MEDIA SIZING ENHANCEMENTS (PERFECT UNIFORM GRID)
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Product Card Media Box (Uniform 220px Height) */
.product-card-media, .product-card-top {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(221, 187, 0, 0.09) 0%, rgba(18, 18, 20, 0.8) 75%);
  padding: 16px;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card-media img, .product-card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.75));
  margin: 0 auto;
}

.product-card:hover .product-card-media img,
.product-card:hover .product-card-img {
  transform: scale(1.08);
}

/* Product Badges */
.prod-badge, .product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 30;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Product Card Body */
.product-card-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-label, .product-category-badge {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-title, .product-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.28;
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.product-title:hover, .product-card-title:hover {
  color: var(--gold-primary);
}

.product-subtitle, .product-card-subtitle {
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.25rem;
}

/* Price Box */
.product-price-box, .product-card-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding: 12px 0;
  border-top: 1px dashed var(--border-subtle);
  margin-bottom: 14px;
}

.price-detal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-detal .price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-detal .price-amount, .product-price-main {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.price-mayor {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.price-mayor .price-amount {
  color: var(--text-secondary);
  font-weight: 700;
}

/* Actions Grid (Comprar + Quick View) */
.product-actions-grid {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.product-actions-grid .btn-primary {
  font-size: 0.88rem;
  padding: 9px 12px;
  font-weight: 700;
}

.product-actions-grid .btn-secondary {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating WhatsApp Button Real Icon styling */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background: #20BA5A;
}

.floating-wa-btn svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
}

.btn-whatsapp svg {
  fill: currentColor;
}

/* ==========================================================================
   ENHANCED RESPONSIVE STYLES (MOBILE & TABLET EXCELLENCE)
   ========================================================================== */

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 30px;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero-visual-card {
    padding: 16px;
  }
  .hero-img-wrap {
    height: 240px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .hero-card-badge {
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .hero-card-name {
    font-size: 1.15rem;
  }
  .hero-card-price {
    font-size: 1.15rem;
  }

  .spotlight-card {
    padding: 20px;
    gap: 25px;
  }
  .spotlight-image-side {
    min-height: 260px;
    padding: 35px 15px 15px;
  }
  .spotlight-image-side img {
    max-height: 240px;
  }
  .spotlight-title {
    font-size: 1.6rem;
  }
  .spotlight-actions {
    flex-direction: column;
    gap: 10px;
  }
  .spotlight-actions .btn {
    width: 100%;
  }

  /* STRICT 2-COLUMN PRODUCT GRID ON MOBILE */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .product-card-media, .product-card-top {
    height: 160px !important;
    padding: 10px !important;
  }
  .product-card-body {
    padding: 12px 10px !important;
  }
  .product-title, .product-card-title {
    font-size: 0.88rem !important;
    min-height: 2.3rem !important;
  }
  .product-subtitle, .product-card-subtitle {
    font-size: 0.72rem !important;
    margin-bottom: 8px !important;
  }
  .price-detal .price-amount, .product-price-main {
    font-size: 1rem !important;
  }
  .price-mayor {
    font-size: 0.7rem !important;
  }
  .product-actions-grid {
    grid-template-columns: 1fr 34px !important;
    gap: 6px !important;
  }
  .product-actions-grid .btn-primary {
    font-size: 0.78rem !important;
    padding: 6px 8px !important;
  }

  .catalog-search-row {
    flex-direction: column;
    gap: 10px;
  }
  .search-input-wrap, .sort-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-card-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-card-price, .hero-card-wholesale {
    text-align: left;
  }
  .props-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-specs {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100%;
    max-width: 100vw;
  }
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }
  .floating-wa-btn {
    width: 52px;
    height: 52px;
  }
  .floating-wa-btn svg {
    width: 28px;
    height: 28px;
  }
}
