@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Logo Color Palette */
  --bg-primary: #0A0D10; /* Dark slate charcoal from logo bg */
  --bg-secondary: #12161A; /* Slightly lighter charcoal for cards/sections */
  --bg-tertiary: #1B2026; /* Highlight backgrounds */
  
  --gold-main: #C5A059; /* Champagne gold from logo monogram */
  --gold-light: #E8C887; /* Light gold for highlights */
  --gold-dark: #A37E3B; /* Deep bronze gold for shadows/borders */
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
  
  --text-light: #FFFFFF;
  --text-muted: #A0AEC0;
  --text-dark: #0A0D10;
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --border-subtle: rgba(197, 160, 89, 0.15);
  --border-active: rgba(197, 160, 89, 0.4);
  --shadow-gold: rgba(197, 160, 89, 0.08);
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: var(--gold-main);
  color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-main);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ===== REVEAL ANIMATIONS ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

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

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 13, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 13, 16, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-fast);
}

.nav-logo span {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

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

.nav-cta .btn-nav {
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  border: 1px solid var(--gold-main);
  background: transparent;
  color: var(--gold-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.nav-cta .btn-nav:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
  border-color: transparent;
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--gold-main);
  transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background: radial-gradient(circle at 75% 45%, rgba(197, 160, 89, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

/* Background grid & animations */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border-subtle) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 35%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 75%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0.8; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold-main);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 2rem;
  background: rgba(197, 160, 89, 0.05);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span.italic-gold {
  font-style: italic;
  font-weight: 500;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.35);
}

.btn-outline {
  border: 1px solid var(--gold-main);
  background: transparent;
  color: var(--gold-main);
}

.btn-outline:hover {
  background: rgba(197, 160, 89, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}

/* Hero Image Showcase */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.showcase-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(18, 22, 26, 0.8) 0%, rgba(10, 13, 16, 0.9) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: var(--transition-smooth);
}

.showcase-frame:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-active);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: floatBadge 6s ease-in-out infinite alternate;
}

.showcase-badge .badge-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.showcase-badge .badge-desc {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== BRAND MARQUEE ===== */
.marquee {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  gap: 5rem;
}

.marquee-item {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5rem;
  white-space: nowrap;
}

.marquee-item span.separator {
  color: var(--gold-main);
  font-size: 1.2rem;
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-main);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.section-title span.italic-gold {
  font-style: italic;
  font-weight: 400;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ===== PRODUCTS / CATALOG ===== */
.catalog {
  background-color: var(--bg-primary);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(197, 160, 89, 0.05);
}

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

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  overflow: hidden;
  background: linear-gradient(180deg, #111418 0%, var(--bg-secondary) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 1rem;
}

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

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-main);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

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

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-light);
}

.btn-buy {
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.btn-buy:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.btn-buy svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-frame {
  position: relative;
  width: 90%;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-primary);
  padding: 1.2rem;
}

.about-frame::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-main);
  z-index: -1;
  transition: var(--transition-smooth);
}

.about-frame:hover::after {
  top: 0.8rem;
  left: 0.8rem;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-content h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.8rem;
}

.about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-main);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* ===== BENEFITS / DIFFERENTIALS ===== */
.benefits {
  background-color: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-main);
  background: rgba(197, 160, 89, 0.03);
  color: var(--gold-main);
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.benefit-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-content h2 span.italic-gold {
  font-style: italic;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.cta-content .btn {
  padding: 1.2rem 3.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-primary);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 320px;
}

.footer-links-col h4,
.footer-contact h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

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

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-main);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-main);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
  font-weight: 300;
}

.footer-developer a {
  color: var(--gold-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-developer a:hover {
  color: var(--gold-light);
}

/* ===== CATALOG TABS ===== */
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--gold-light);
}

.tab-btn.active {
  color: var(--gold-main);
  border-bottom: 2px solid var(--gold-main);
}

.catalog-pane {
  display: none;
}

.catalog-pane.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* ===== DECANT SECTION ===== */
.decants {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.decant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.decant-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.decant-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.decant-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2/1;
  overflow: hidden;
  background: linear-gradient(180deg, #111418 0%, var(--bg-secondary) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.decant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.decant-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
}

.decant-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.decant-brand {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-main);
  margin-bottom: 0.4rem;
}

.decant-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.decant-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

/* Decant pricing options list */
.decant-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.decant-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1.2rem;
  transition: var(--transition-fast);
}

.decant-option:hover {
  border-color: var(--border-active);
  background: rgba(197, 160, 89, 0.03);
}

.decant-size-info {
  display: flex;
  flex-direction: column;
}

.decant-size {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
}

.decant-sprays {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.decant-price-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.decant-price-val {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.btn-decant-buy {
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-decant-buy:hover {
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
  transform: translateY(-1px);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: floatWhatsAppPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

@keyframes floatWhatsAppPulse {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(197, 160, 89, 0.3), 0 0 25px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-showcase {
    order: -1;
  }
  .showcase-frame {
    max-width: 320px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-media {
    order: -1;
  }
  .about-frame {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  
  /* Navigation mobile menu */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    gap: 2rem;
    z-index: 1005;
    transition: var(--transition-smooth);
    box-shadow: -15px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Blur overlay behind menu */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
  }
  
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .nav-cta .btn-nav {
    display: block;
    width: 100%;
  }
  
  /* Hamburger menu animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Footer layout */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-brand, .footer-links-col, .footer-contact {
    text-align: center;
    align-items: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .contact-item {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Floating whatsapp positioning for smaller viewports */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
