/* ==================== PREMIUM LIGHT & JOYFUL VARIABLES ==================== */
:root {
  --header-height: 5rem;

  /* Colors - Joyful Light Aesthetic (Claro, vibrante y feliz) */
  --bg-color-main: #FFFFFF;      /* Pure Crisp White */
  --bg-color-alt: #FFFBF5;       /* Warm Vanilla Cream */
  --card-bg: rgba(255, 255, 255, 0.85); /* Frosted Glass Light */
  
  --title-color: #2D1A15;        /* Deep Cocoa for contrast */
  --text-color: #55443F;         /* Warm grey-brown for body text */
  --text-color-light: #8E7D77;
  
  /* Accents - Alegres y apetitosos */
  --gold-primary: #FF7B54;       /* Joyful Vibrant Coral/Orange */
  --gold-glow: rgba(255, 123, 84, 0.15); /* Soft Peachy Glow */
  --gold-light: #FFB26B;         /* Bright Tangerine */
  --gold-gradient: linear-gradient(135deg, #FF7B54, #FFB26B);

  /* Fonts */
  --body-font: 'Inter', sans-serif;
  --title-font: 'Cormorant Garamond', serif;
  --alt-font: 'Playfair Display', serif;

  /* Font sizes (Editorial Scale) */
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* Font weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi: 600;
  --font-bold: 700;

  /* Z index */
  --z-tooltip: 10;
  --z-fixed: 100;
  
  /* Transitions */
  --smooth: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.75rem;
    --h3-font-size: 1.5rem;
  }
}

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

html {
  scroll-behavior: smooth;
  background-color: #FFFFFF;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #FFFFFF;
  background-image: radial-gradient(#FFDFCA 2px, transparent 2px);
  background-size: 32px 32px;
  background-attachment: fixed;
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
}

ul { list-style: none; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: var(--body-font);}

/* ==================== LAYOUT UTILITIES ==================== */
.container {
  max-width: 1200px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: 5rem 0 2rem;
}

.center { text-align: center; }

/* Editorial Titles */
.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.section__title span {
  color: var(--gold-primary);
  font-family: var(--alt-font);
  font-style: italic;
  font-weight: 700;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: var(--font-semi);
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* ==================== HEADER (GLASSMORPHISM LIGHT) ==================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: var(--bg-color-main);
  transition: var(--smooth);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.scroll-header {
  background: #FFFFFF !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ==================== LOGO COMPONENT ==================== */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: var(--smooth);
}

.logo__main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__bar {
  width: 3px;
  height: 2rem;
  background-color: #c4b49a;
  display: block;
}

.logo__text {
  font-family: var(--title-font);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--title-color);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo__tagline {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: var(--text-color-light);
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
  font-weight: var(--font-regular);
  white-space: nowrap;
}

.scroll-header .logo {
  transform: scale(0.9);
}

.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.show-overlay {
  opacity: 1;
  visibility: visible;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #FFFFFF;
  padding: 6rem 2rem 2rem;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
}

.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: var(--small-font-size);
  letter-spacing: 1px;
  transition: var(--smooth);
  position: relative;
  font-weight: var(--font-semi);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--gold-primary);
  transition: var(--smooth);
}

.nav__link:hover::after, .active-link::after {
  width: 100%;
  left: 0;
}

.nav__link:hover, .active-link {
  color: var(--gold-primary);
}

.nav__toggle {
  color: var(--title-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  display: block;
}

@media screen and (min-width: 768px) {
  .nav__close { display: none; }
}

/* ==================== HERO NOVEL ==================== */
.hero-novel {
  position: relative;
  overflow: visible;
  background-color: var(--bg-color-alt);
  padding-top: 6rem;
  padding-bottom: 8rem;
  display: flex;
  align-items: center;
  perspective: 1000px;
}

.hero__shape {
  position: absolute;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
  border-radius: 50%;
  animation: float-shapes 15s infinite alternate ease-in-out;
}

.hero__shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold-primary), var(--gold-light)); top: -100px; right: -100px; }
.hero__shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--gold-light), #FFD966); bottom: -50px; left: -50px; animation-delay: -5s; }
.hero__shape-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--gold-primary), #FFADAD); top: 40%; left: 15%; animation-delay: -10s; }

@keyframes float-shapes {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(30px, 50px) scale(1.1) rotate(5deg); }
  100% { transform: translate(-20px, 20px) scale(1) rotate(-5deg); }
}

.hero__ingredient {
  position: absolute;
  z-index: 5;
  background-image: url('img/gourmet_atoms.webp');
  background-repeat: no-repeat;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  pointer-events: none;
  animation: float-gourmet 8s infinite ease-in-out;
  border-radius: 50%;
}

.ingredient-strawberry { width: 150px; height: 150px; background-size: 350%; background-position: 12% 28%; top: 15%; left: 5%; animation-duration: 9s; }
.ingredient-cheese { width: 120px; height: 120px; background-size: 450%; background-position: 40% 65%; bottom: 15%; left: 20%; animation-duration: 7s; animation-delay: -2s; }
.ingredient-grape { width: 100px; height: 100px; background-size: 450%; background-position: 68% 55%; top: 45%; right: 15%; animation-duration: 6s; animation-delay: -4s; }
.ingredient-basil { width: 160px; height: 160px; background-size: 300%; background-position: 90% 15%; top: 10%; right: 10%; animation-duration: 10s; animation-delay: -1s; }

@keyframes float-gourmet {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
  66% { transform: translateY(10px) rotate(-5deg) scale(0.95); }
}

.hero__sparkle {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px white, 0 0 20px 5px var(--gold-primary);
  opacity: 0;
  z-index: 2;
  animation: sparkle-blink 4s infinite ease-in-out;
}

.sparkle-1 { width: 4px; height: 4px; top: 20%; left: 30%; animation-delay: 0s; }
.sparkle-2 { width: 6px; height: 6px; bottom: 30%; right: 25%; animation-delay: 1.5s; }
.sparkle-3 { width: 3px; height: 3px; top: 10%; right: 40%; animation-delay: 3s; }

@keyframes sparkle-blink {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* Logo Sticker Styling */
.hero__sticker {
  position: fixed;
  top: 2px;
  left: 2rem;
  width: 170px;
  height: 170px;
  background: #FFF;
  border-radius: 50%;
  border: 4px solid #FFF;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero__sticker:hover {
  transform: rotate(-8deg) scale(1.05);
}

.hero__sticker-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .hero__sticker {
    width: 100px;
    height: 100px;
    top: 5px;
    left: 1rem;
  }
}

.hero__container {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.hero__images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero__title {
  text-align: center;
  font-family: var(--alt-font);
  font-size: var(--biggest-font-size);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--title-color);
  font-weight: 700;
}

.hero__title-accent {
  font-family: var(--title-font);
  font-size: 1.4em;
  color: #FF7B54;
  display: block;
  letter-spacing: 2px;
  text-shadow: 0 5px 20px rgba(255, 123, 84, 0.3);
  margin: 0.5rem 0;
  text-transform: capitalize;
}

.hero__description {
  text-align: center;
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: 2.5rem;
  font-weight: var(--font-medium);
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 4px solid #FFF;
}

.hero__slider-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 3s ease-out;
}

.hero__slider-img.active { opacity: 1; transform: scale(1); }
.hero__slider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1)); }

@media screen and (max-width: 968px) { .hero__slider { height: 400px; } }
@media screen and (max-width: 768px) {
  .hero__title { font-size: 2.5rem; }
  .hero__slider { height: 350px; }
  .hero__glass-card { height: auto; padding: 2rem; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-primary);
  color: #FFFFFF;
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  transition: var(--smooth);
  box-shadow: 0 10px 30px rgba(255, 123, 84, 0.3);
}

.button:hover {
  transform: translateY(-5px);
  background: var(--gold-light);
  box-shadow: 0 15px 40px rgba(255, 123, 84, 0.4);
}

/* ==================== FILTERS & PRODUCTS ==================== */
.filters__container { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.filter__btn {
  background: #FFF; color: var(--text-color); font-size: var(--small-font-size); letter-spacing: 1px; text-transform: uppercase;
  padding: 0.8rem 2rem; border-radius: 50px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: var(--smooth); font-weight: var(--font-bold);
}
.filter__btn:hover, .active-filter { background: var(--gold-primary); color: #FFF; border-color: var(--gold-primary); box-shadow: 0 10px 20px var(--gold-glow); transform: translateY(-3px); }

/* ==================== ABOUT ==================== */
.about__container {
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  cursor: default;
}

.about__description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about__signature {
  font-family: var(--alt-font);
  font-size: 2rem;
  color: var(--gold-primary);
  font-style: italic;
  margin-top: 1rem;
}

/* ==================== CONTACT ==================== */
.contacto__container {
  grid-template-columns: 1fr;
  background-image: radial-gradient(#FFDFCA 2px, transparent 2px), linear-gradient(145deg, #FFFFFF, #FFF5F0);
  background-size: 32px 32px, 100% 100%;
  border: 1px solid rgba(255, 123, 84, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 4rem 2rem;
  border-radius: 20px;
  gap: 3rem;
}

.contacto__social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contacto__social {
    flex-direction: row;
    justify-content: center;
  }
}

.social__link {
  display: inline-flex;
  align-items: center;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: var(--font-medium);
  transition: var(--smooth);
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  width: fit-content;
}

.social__link i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--gold-primary);
  transition: var(--smooth);
}

.social__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.social__link.whatsapp:hover { color: #25D366; }
.social__link.whatsapp:hover i { color: #25D366; }
.social__link.instagram:hover { color: #E4405F; }
.social__link.instagram:hover i { color: #E4405F; }
.social__link.tiktok:hover { color: #000000; }
.social__link.tiktok:hover i { color: #000000; }
.social__link.facebook:hover { color: #1877F2; }
.social__link.facebook:hover i { color: #1877F2; }

.info__item { 
  display: flex; 
  align-items: center; 
  margin-bottom: 1.5rem; 
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: var(--smooth);
}

.info__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info__item i { 
  font-size: 1.2rem; 
  margin-right: 1.2rem; 
  color: var(--gold-primary); 
  background: var(--gold-glow);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.contacto__map-wrapper { background: #FFF; padding: 10px; border-radius: 16px; border: 1px solid rgba(255, 123, 84, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.06); margin-top: 1.5rem; transition: var(--smooth); }
.contacto__map { width: 100%; height: 250px; border-radius: 12px; border: none; display: block; }

.products__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.product__card { background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.03); padding: 1.5rem; border-radius: 20px; transition: var(--smooth); box-shadow: 0 10px 30px rgba(0,0,0,0.03); overflow: hidden; }
.product__card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(255, 123, 84, 0.1); border-color: rgba(255, 123, 84, 0.1); }
.product__img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; margin-bottom: 1.5rem; transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.product__card:hover .product__img { transform: scale(1.05); }
.product__title { font-size: var(--h3-font-size); margin-bottom: 0.5rem; color: var(--title-color); }
.product__info { font-size: var(--small-font-size); color: var(--text-color-light); margin-bottom: 1.5rem; }
.product__amount { display: block; font-weight: var(--font-bold); color: var(--gold-light); font-size: var(--smaller-font-size); text-transform: uppercase; margin-bottom: 0.5rem; }
.product__tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; flex: 1; }
.tier-option { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.4rem; cursor: pointer; transition: all 0.3s ease; background: transparent; }
.tier-option:hover .tier-price { background: var(--gold-glow); color: var(--gold-primary); }
.tier-option.active .tier-price { background: var(--gold-primary); color: #FFFFFF !important; box-shadow: 0 4px 10px var(--gold-glow); }
.tier-qty { font-size: 0.65rem; font-weight: var(--font-bold); color: var(--text-color-light); text-transform: uppercase; margin-bottom: 0.3rem; transition: var(--smooth); }
.tier-price { font-family: var(--title-font); font-size: 1rem; font-weight: var(--font-bold); color: #000; padding: 0.4rem 0.8rem; border-radius: 10px; transition: all 0.3s ease; }
.product__tiers-wrapper { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.product__data-container { flex: 1; display: flex; flex-direction: column; }
.product__price { display: flex; align-items: center; gap: 0.5rem; }
.product__price span { font-family: var(--title-font); font-size: 1.25rem; font-weight: var(--font-bold); color: #000; }
.button--small { background: var(--bg-color-alt); color: var(--gold-primary); border: 1px solid rgba(255,123,84, 0.2); padding: 0.5rem; border-radius: 50%; width: 40px; height: 40px; display: inline-flex; justify-content: center; align-items: center; transition: var(--smooth); }
.button--small:hover { background: var(--gold-primary); color: #FFF; box-shadow: 0 10px 20px var(--gold-glow); transform: scale(1.05); }
.product__img, .tablas__img, .tortas img {
  cursor: pointer !important;
}

.product__card.hide-product {
  display: none;
}

.about__img, .hero__img, .hero__slider-img {
  cursor: default !important;
}
.tablas__container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.tablas__img { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transition: var(--smooth); }
.tablas__img:hover { transform: scale(1.02); }
.tablas__name { font-size: var(--h2-font-size); margin-bottom: 1rem; }
.tablas__list li { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1rem; }
.tablas__list li i { color: var(--gold-primary); margin-right: 1rem; font-size: 1.2rem; }

.contacto__container { grid-template-columns: 1fr; border: none; padding: 4rem 2rem; border-radius: 20px; gap: 3rem; }
/* ==================== FOOTER ==================== */
.footer { 
    padding: 3rem 0 2rem; 
    border-top: 1px solid rgba(255, 123, 84, 0.1); 
    background-color: #FFFFFF;
    background-image: radial-gradient(#FFDFCA 2px, transparent 2px);
    background-size: 32px 32px;
}

.footer__content { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    text-align: center; 
}

.footer__logo { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 1.5rem; 
}

.footer__mascot-container {
    width: 200px !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative !important;
    margin: 0 auto;
    pointer-events: none;
    animation: mascot-float 4s infinite ease-in-out;
}

.footer__mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(255, 123, 84, 0.15));
}

.footer__brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__description {
    margin-top: 0.5rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-weight: var(--font-medium);
}

.footer__links h4 { font-family: var(--title-font); margin-bottom: 1rem; color: var(--title-color); }
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { color: var(--text-color); transition: var(--smooth); }
.footer__links a:hover { color: var(--gold-primary); }

.footer__copy { 
    margin-top: 3rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(0,0,0,0.05); 
    text-align: center; 
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

@keyframes mascot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== FLOATING ==================== */
.floating-socials { position: fixed; top: 50%; right: 1rem; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.8rem; z-index: var(--z-fixed); }
.social-float { width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.25rem; background: #FFF; box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--title-color); transition: var(--smooth); }
.social-float.whatsapp { width: 55px; height: 55px; font-size: 1.8rem; background: #25D366; color: #fff; }
.social-float.facebook { background: #1877F2; color: #fff; }
.social-float.tiktok { background: #000000; color: #fff; }
.social-float.instagram { background: #E4405F; color: #fff; }
.social-float:hover { transform: scale(1.1) rotate(5deg); background: var(--gold-primary); color: #FFF; }

.scrollup { position: fixed; right: 1.5rem; bottom: -5rem; background: #FFF; box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--gold-primary); padding: 0.5rem 0.75rem; border-radius: 50%; width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; z-index: var(--z-fixed); transition: var(--smooth); }
.scrollup:hover { background: var(--gold-primary); color: #FFF; transform: translateY(-5px); }
.show-scroll { bottom: 8rem; }

.toast__container { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 1rem; z-index: var(--z-fixed); }
.toast { background: #FFFFFF; border-left: 5px solid var(--gold-primary); color: var(--text-color); padding: 1rem 1.5rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1rem; font-weight: var(--font-medium); animation: slide-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
@keyframes slide-in { from { transform: translateX(-100%) scale(0.9); opacity: 0; } to { transform: translateX(0) scale(1); opacity: 1; } }
@keyframes slide-out { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-100%); opacity: 0; } }

.cart-icon { position: fixed; bottom: 2rem; left: 2rem; padding: 0.6rem 1rem; background: #FFF; border-radius: 50px; display: flex; align-items: center; gap: 0.7rem; cursor: pointer; z-index: 10000; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--gold-glow); }
.cart-icon:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 40px var(--gold-glow); }
.cart-sidebar { 
  position: fixed; 
  top: 0; 
  right: -100%; 
  width: 100%; 
  max-width: 400px; 
  height: 100%; 
  background: #FFF; 
  z-index: 1000; 
  box-shadow: -10px 0 30px rgba(0,0,0,0.05); 
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1); 
  display: flex; 
  flex-direction: column; 
}
.cart-sidebar.active { right: 0; }

.cart-whatsapp-btn {
  width: 100%;
  background: #25D366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
  gap: 0.75rem;
}

.cart-sidebar__header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar__header h3 {
  font-family: var(--alt-font);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.cart-sidebar__close {
  font-size: 1.5rem;
  color: var(--title-color);
  transition: var(--smooth);
  cursor: pointer;
}

.cart-sidebar__close:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.cart-sidebar__content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.cart-empty-msg {
  text-align: center;
  margin-top: 5rem;
  color: var(--text-color-light);
}

.cart-empty-msg i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.2;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  animation: slide-in 0.3s ease forwards;
}

.cart-item__data {
  flex: 1;
}

.cart-item__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.cart-item__qty {
  font-size: var(--smaller-font-size);
  color: var(--gold-primary);
  font-weight: var(--font-medium);
}

.cart-item__price {
  font-weight: var(--font-bold);
  font-size: var(--small-font-size);
  margin-top: 0.5rem;
}

.cart-item__remove {
  color: #ff4d4d;
  cursor: pointer;
  transition: var(--smooth);
  font-size: 1rem;
}

.cart-item__remove:hover {
  transform: scale(1.2);
}

.cart-sidebar__footer {
  padding: 2rem;
  background: var(--bg-color-alt);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
}

/* ==================== LIGHTBOX MODAL ==================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox__container {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  z-index: 20001;
}

.lightbox__frame {
  position: relative;
  padding: 10px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
  display: block;
}

.lightbox__header {
  color: #FFF;
  font-family: var(--title-font);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.cart-footer-note { font-size: 0.7rem; color: var(--text-color-light); text-align: center; margin-top: 1rem; }

/* ==================== MEDIA QUERIES ==================== */
@media screen and (min-width: 768px) {
  .hero__container { grid-template-columns: 1fr 1.2fr; text-align: left; column-gap: 4rem; }
  .hero__glass-card { align-items: flex-start; padding: 3rem; }
  .nav__overlay { display: none; }
  .nav__menu { position: initial; height: auto; right: initial; width: initial; padding: 0; background: transparent; box-shadow: none; display: block; overflow: visible; }
  .nav__list { flex-direction: row; column-gap: 1.5rem; flex-wrap: nowrap; align-items: center; }
  .nav__link { font-size: 0.75rem; letter-spacing: 1px; }
  .nav__toggle { display: none; }
  .about__container { grid-template-columns: repeat(2, 1fr); align-items: center; }
  .contacto__container { grid-template-columns: repeat(2, 1fr); }
  
  .footer__content { 
    grid-template-columns: repeat(2, 1fr); 
    text-align: left; 
    align-items: center;
  }
  .footer__logo { 
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  .footer__mascot-container {
    width: 280px !important;
    height: auto !important;
    margin: 0;
  }
  .footer__brand-info {
    align-items: flex-start;
    text-align: left;
  }
  .footer__links { 
    justify-self: flex-end; 
    text-align: right; 
  }
  .footer__links ul { align-items: flex-end; }
}
@media screen and (min-width: 1024px) {
  .container { margin-left: auto; margin-right: auto; }
  .scrollup { right: 2rem; }
}
