/* ========================================
   Google Fonts
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  --primary: #E49B2A;
  --primary-dark: #B9751F;
  --cream: #F4E7D3;
  --black: #0B0B0B;
  --dark-gray: #1A1A1A;
  --border-gray: #2A2A2A;
  --white: #FFFFFF;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg-section: #FAFAFA;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 20px rgba(228,155,42,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

section {
  padding: 4.5rem 0;
}

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

/* ========================================
   Age Verification Modal
   ======================================== */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.age-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-modal-overlay.hidden .age-modal {
  transform: scale(0.9);
}

.age-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228,155,42,0.15), rgba(228,155,42,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(228,155,42,0.2);
}

.age-modal__icon svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
  stroke: var(--primary);
}

.age-modal__brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.age-modal__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.age-modal__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.age-modal__buttons {
  display: flex;
  gap: 0.75rem;
}

.age-modal__buttons .btn {
  flex: 1;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(228,155,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark-gray);
  border: 2px solid #E0E0E0;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(228,155,42,0.05);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: #F0F0F0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.header__logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 1px;
}

.header__nav a:hover {
  color: var(--black);
}

.header__nav a:hover::after {
  width: 100%;
}

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

.header__cta {
  display: none;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--dark-gray);
  transition: background var(--transition);
}

.header__menu-btn:hover {
  background: #F5F5F5;
}

.header__menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #F0F0F0;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: #F9F9F9;
  color: var(--black);
}

.mobile-menu .btn {
  margin: 0.75rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}

/* ========================================
   Banner Carousel
   ======================================== */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0;
  max-width: 1920px;
  margin: 0 auto;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  color: var(--dark-gray);
  border: 1px solid rgba(0,0,0,0.05);
}

.carousel__arrow:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.05);
}

.carousel__arrow svg {
  width: 20px;
  height: 20px;
}

.carousel__arrow--prev { left: 1rem; }
.carousel__arrow--next { right: 1rem; }

.carousel__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.carousel__dot.active {
  background: var(--primary);
  border-color: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* ========================================
   Benefits
   ======================================== */
.benefits {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid #F0F0F0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #F0F0F0;
  background: var(--white);
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: rgba(228,155,42,0.3);
  box-shadow: 0 4px 16px rgba(228,155,42,0.08);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(228,155,42,0.12), rgba(228,155,42,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(228,155,42,0.15);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  stroke: var(--primary);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.benefit-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   Categories – "¿Qué podrás encontrar?"
   ======================================== */
.categories {
  background: var(--white);
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #F0F0F0;
  background: var(--white);
  transition: all var(--transition);
  display: block;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(228,155,42,0.15);
  transform: translateY(-4px);
}

.category-card__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

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

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

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.6), transparent 60%);
  pointer-events: none;
}

.category-card__body {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.category-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.category-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: color var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.category-card:hover .category-card__arrow {
  color: var(--primary);
}

/* ========================================
   Catalog CTA
   ======================================== */
.catalog-cta {
  background: linear-gradient(135deg, var(--cream) 0%, #F0D9B5 50%, rgba(228,155,42,0.2) 100%);
  position: relative;
  overflow: hidden;
}

.catalog-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,155,42,0.15), transparent 70%);
  pointer-events: none;
}

.catalog-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,155,42,0.1), transparent 70%);
  pointer-events: none;
}

.catalog-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .catalog-cta__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-cta__card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.catalog-cta__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  border-color: rgba(228, 155, 42, 0.3);
}

.catalog-cta__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-cta__icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  stroke: var(--primary);
}

.catalog-cta__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.catalog-cta__text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.catalog-cta__card .btn {
  width: 100%;
}

/* ========================================
   Instagram Section
   ======================================== */
.instagram {
  background: var(--white);
}

.instagram__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.instagram__header svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.instagram__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

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

.instagram__item:hover img {
  transform: scale(1.08);
}

.instagram__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__item:hover .instagram__item-overlay {
  opacity: 1;
}

.instagram__item-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.instagram__follow {
  text-align: center;
  margin-top: 2rem;
}

.instagram__follow .btn {
  gap: 0.6rem;
}

/* ========================================
   Map / Location
   ======================================== */
.location {
  background: #FDFBF7;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.location__address-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid #F0F0F0;
  box-shadow: var(--shadow-sm);
}

.location__address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.location__address-item:last-child {
  margin-bottom: 0;
}

.location__address-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location__address-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.location__address-value {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.location__reference {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #F0F0F0;
  box-shadow: var(--shadow-md);
  min-height: 300px;
}

.location__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

.location__cta {
  margin-top: 1.25rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #F0F0F0;
  text-align: center;
  transition: all var(--transition);
  display: block;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,155,42,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(228,155,42,0.12);
  transform: translateY(-4px);
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
}

.contact-card--whatsapp .contact-card__icon {
  background: #DCF8C6;
  color: #25D366;
}

.contact-card--whatsapp:hover .contact-card__icon {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.contact-card--phone .contact-card__icon {
  background: rgba(228,155,42,0.12);
  color: var(--primary);
}

.contact-card--phone:hover .contact-card__icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.contact-card--email .contact-card__icon {
  background: #E8EAF6;
  color: #5C6BC0;
}

.contact-card--email:hover .contact-card__icon {
  background: #5C6BC0;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92,107,192,0.3);
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.contact-card__value {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.contact-card__hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  color: #AAAAAA;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}

.footer__brand-logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #888;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(228,155,42,0.08);
}

.footer__social a svg {
  width: 20px;
  height: 20px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: #888;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: #888;
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: wa-pulse 2s infinite;
}

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

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

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   Responsive – Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  /* height set dynamically by height: auto */

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

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

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

  .location__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .location__map-wrap {
    min-height: 100%;
  }

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

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .header__logo-text {
    display: flex;
  }
}

/* ========================================
   Responsive – Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  section {
    padding: 5.5rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  /* height set dynamically by height: auto */

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

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

  .catalog-cta__title {
    font-size: 2.5rem;
  }

  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ========================================
   Small phones (< 380px)
   ======================================== */
@media (max-width: 380px) {
  .age-modal {
    padding: 2rem 1.25rem;
  }

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

  /* height set dynamically by height: auto */

  .carousel__arrow {
    width: 36px;
    height: 36px;
  }

  .carousel__arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   Additional Project Styles (New Requirements)
   ======================================== */

/* Disabled Button Style */
.btn-disabled {
  background: #E5E7EB !important;
  color: #9CA3AF !important;
  border: 1px solid #D1D5DB !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Featured Card style for "¿Eres Botillero?" */
.catalog-cta__card--featured {
  background: linear-gradient(135deg, var(--black) 0%, #1A1A1A 100%) !important;
  border: 1px solid var(--border-gray) !important;
  box-shadow: var(--shadow-lg) !important;
}

.catalog-cta__card--featured .catalog-cta__title {
  color: var(--primary) !important;
}

.catalog-cta__card--featured .catalog-cta__text {
  color: #D1D5DB !important;
  opacity: 0.9;
}

.catalog-cta__card--featured .catalog-cta__icon {
  background: rgba(228, 155, 42, 0.15) !important;
  border-color: rgba(228, 155, 42, 0.3) !important;
}

.catalog-cta__card--featured .catalog-cta__icon svg {
  color: var(--primary) !important;
  stroke: var(--primary) !important;
}

/* Brands Carousel Section (Below Banners) */
.brands-section {
  background: #F4F4F4; /* Light grey background as in the screenshot */
  padding: 1.25rem 0;  /* Thinner height strip as in the screenshot */
  border-bottom: 1px solid #E5E7EB;
  border-top: 1px solid #E5E7EB;
}

.brands-container {
  position: relative;
}

.brands-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-slider::before,
.brands-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brands-slider::before {
  left: 0;
  background: linear-gradient(to right, #F4F4F4, transparent);
}

.brands-slider::after {
  right: 0;
  background: linear-gradient(to left, #F4F4F4, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  min-width: 130px;
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
  text-align: center;
  transition: color var(--transition);
}

.brand-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.brand-item:hover {
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .brand-item {
    min-width: 160px;
    font-size: 1.25rem;
  }
  .brand-item img {
    max-height: 42px;
    max-width: 150px;
  }
  .brands-track {
    gap: 3.5rem;
  }
  .brands-section {
    padding: 1.5rem 0;
  }
}
