/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --bg-main: #0D0D0D;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --bg-surface: #111111;
  --gold: #F5B041;
  --gold-light: #F8C471;
  --gold-dark: #D4AC0D;
  --red: #E74C3C;
  --red-dark: #C0392B;
  --white: #FFFFFF;
  --text-primary: #F0F0F0;
  --text-secondary: #9A9A9A;
  --text-muted: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 166, 35, 0.3);
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --gold-gradient: linear-gradient(135deg, #F5A623 0%, #FFD166 50%, #F5A623 100%);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --nav-height: 70px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

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

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal:nth-child(5) {
  transition-delay: 0.4s;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ===========================
   SECTION LABELS
=========================== */
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(245, 166, 35, 0.08);
}

.section-title {
  margin-bottom: 48px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  transition: var(--transition);
}

.cart-btn:hover {
  background: rgba(245, 166, 35, 0.2);
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

.cart-count.show {
  opacity: 1;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.92) 0%,
      rgba(13, 13, 13, 0.75) 50%,
      rgba(13, 13, 13, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(245, 166, 35, 0.7));
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===========================
   NOSOTROS
=========================== */
.nosotros {
  background: var(--bg-main);
  text-align: center;
}

.nosotros-text {
  max-width: 680px;
  margin: 0 auto 64px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--text-secondary);
}

.nosotros-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.nosotros-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nosotros-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.nosotros-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 166, 35, 0.15);
}

.nosotros-card>* {
  position: relative;
  z-index: 1;
}

.nc-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.nosotros-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}

.nosotros-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   MENU SECTION
=========================== */
.menu {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
  text-align: center;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

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

.tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 48px rgba(245, 166, 35, 0.12), 0 4px 16px rgba(0, 0, 0, 0.5);
}

.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #1a1a1a;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-main);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-badge.hot {
  background: var(--red);
  color: #fff;
  border-color: var(--red-dark);
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-info h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.add-to-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--gold-gradient);
  color: #000;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
  flex-shrink: 0;
  text-transform: uppercase;
}

.add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.add-to-cart:active {
  transform: scale(0.97);
}

/* ===========================
   CTA BAND
=========================== */
.cta-band {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1200 50%, #0D0D0D 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245, 166, 35, 0.08), transparent);
  pointer-events: none;
}

.cta-band-content {
  position: relative;
}

.cta-band-content h2 {
  margin-bottom: 16px;
}

.cta-band-content p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ===========================
   CONTACTO
=========================== */
.contacto {
  background: var(--bg-surface);
  text-align: center;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contacto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
  text-align: center;
}

.contacto-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.cc-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contacto-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contacto-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cc-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cc-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  transition: color 0.2s;
}

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

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

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

/* ===========================
   CART DRAWER
=========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height para móviles */
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.cart-header h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-body::-webkit-scrollbar {
  width: 4px;
}

.cart-body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.cart-empty {
  text-align: center;
  padding: 60px 24px;
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.cart-empty span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: cartItemIn 0.3s ease;
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 700;
}

.qty-btn:hover {
  background: rgba(245, 166, 35, 0.25);
  transform: scale(1.1);
}

.qty-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}

.remove-item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
  border: 1px solid rgba(230, 57, 70, 0.2);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.remove-item:hover {
  background: rgba(230, 57, 70, 0.25);
  transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
}

.cart-order-type {
  margin-bottom: 4px;
}

.cart-order-type label,
.cart-notes label,
.cart-address label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.order-type-tabs {
  display: flex;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-top: 4px;
}

.type-btn {
  flex: 1;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}

.type-btn.active {
  background: var(--bg-card);
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cart-notes textarea,
.cart-address input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 10px 14px;
  resize: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}

.cart-notes textarea:focus,
.cart-address input:focus {
  outline: none;
  border-color: var(--border-gold);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cart-total-row span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cart-total-row strong {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cart-whatsapp-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
}

.cart-clear-btn {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
  padding: 4px;
}

.cart-clear-btn:hover {
  color: var(--red);
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   MOBILE MENU
=========================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    z-index: -1;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-logo span {
    display: none;
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + 10px);
    padding-bottom: 80px;
  }

  .hero-badge {
    margin-bottom: 16px;
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .hero-title {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 16px;
    width: 50%;
    min-width: auto;
  }

  .stats-container {
    gap: 0;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .category-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .section-title {
    margin-bottom: 32px;
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: 100%;
  }

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

  .cart-footer {
    padding: 16px 16px max(24px, env(safe-area-inset-bottom));
  }
}

/* ===========================
   SCROLLBAR GLOBAL
=========================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-wa:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .floating-wa svg {
    width: 28px;
    height: 28px;
  }
}