/* ============================================================
   MOBILE.CSS — El Conta Pizzas
   Responsive completo. Mobile-first.
   Breakpoints:
     xs  → max 400px  (teléfonos pequeños)
     sm  → max 600px  (teléfonos medianos)
     md  → max 768px  (teléfonos grandes / portrait tablet)
     lg  → max 1024px (landscape tablet / laptop pequeño)
   ============================================================ */

/* ============================================================
   RESET MÓVIL GLOBAL
   ============================================================ */
@media (max-width: 768px) {

  /* El cursor personalizado no aplica en touch */
  #cursor-glow,
  #cursor-dot { display: none !important; }

  body { cursor: auto; }
  button { cursor: pointer; }

  /* Ajustes generales de contenedor */
  .container {
    padding-inline: 1.25rem;
  }

  /* Espaciados generales de sección */
  .about,
  .process,
  .menu,
  .specialties,
  .reviews,
  .contact,
  .cta-banner,
  .showcase {
    padding-block: 5rem;
  }

  /* Tipografía sección */
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section-body {
    font-size: 0.95rem;
  }

}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 1.2rem; }
}

@media (max-width: 900px) {

  /* ---- Barra de navegación ---- */
  .nav {
    height: 64px;
  }

  .nav__inner {
    padding-inline: 1.25rem;
  }

  .nav__logo img {
    width: 40px;
    height: 40px;
  }

  /* Nombre de marca visible en mobile */
  .nav__logo-name {
    display: block;
  }

  /* Ocultar links y CTA de escritorio */
  .nav__links,
  .nav__cta { display: none !important; }

  /* ---- Hamburger mejorado ---- */
  .nav__hamburger {
    display: flex !important;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: rgba(201, 150, 12, 0.05);
    gap: 4px;
    padding: 0;
    justify-content: center;
    align-items: center;
    transition: border-color var(--transition-base), background var(--transition-base);
  }

  .nav__hamburger:hover {
    border-color: rgba(201, 150, 12, 0.5);
    background: rgba(201, 150, 12, 0.1);
  }

  .nav__hamburger.active {
    border-color: var(--color-gold);
    background: rgba(201, 150, 12, 0.12);
  }

  .nav__hamburger span {
    width: 18px;
    height: 2px;
  }

  /* ---- Menú mobile ---- */
  .nav__mobile {
    top: 64px;
    padding-inline: 0;
    padding-top: 0;
    gap: 0;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(6, 4, 1, 0.99) 0%, rgba(10, 8, 2, 0.98) 100%);
    transform: translateY(-10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
  }

  .nav__mobile.open {
    transform: translateY(0);
  }

  /* ---- Links de navegación ---- */
  .nav__mobile .nav__link {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: left;
    padding: 1.1rem 2rem;
    border-bottom: none;
    color: var(--color-text-muted);
    position: relative;
    transition: color var(--transition-base), background var(--transition-base), padding-left var(--transition-base);
  }

  /* Desactivar el ::after de subrayado del desktop */
  .nav__mobile .nav__link::after {
    display: none;
  }

  /* Barra indicadora izquierda */
  .nav__mobile .nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2px;
    height: 50%;
    background: var(--grad-gold);
    border-radius: 0 2px 2px 0;
    transition: transform var(--transition-base);
  }

  .nav__mobile .nav__link:hover,
  .nav__mobile .nav__link--active {
    color: var(--color-cream);
    background: rgba(201, 150, 12, 0.05);
    padding-left: 2.25rem;
  }

  .nav__mobile .nav__link:hover::before,
  .nav__mobile .nav__link--active::before {
    transform: translateY(-50%) scaleY(1);
  }

  .nav__mobile .nav__link:hover .nav__link-num,
  .nav__mobile .nav__link--active .nav__link-num {
    opacity: 1;
    color: var(--color-gold-light);
  }

  /* Línea divisora sutil entre links */
  .nav__mobile-links .nav__link + .nav__link {
    border-top: 1px solid rgba(201, 150, 12, 0.06);
  }

  /* Ocultar btn viejo heredado del menú anterior */
  .nav__mobile > .btn {
    display: none;
  }

  /* ---- Footer: botón WhatsApp ---- */
  .nav__mobile-footer .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.82rem;
    margin-top: 0;
  }

}

/* ============================================================
   HERO
   ============================================================ */
@media (max-width: 1024px) {

  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 80px;
  }

  .hero__parallax-bg {
    inset: -10%;
    background-position: center center;
  }

  .hero__content {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 6rem;
    gap: 1.5rem;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__eyebrow {
    justify-content: center;
    font-size: 0.68rem !important;
    margin-bottom: 0.3rem !important;
  }

  .hero__title {
    font-size: 3.2rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1 !important;
  }

  .hero__subtitle {
    font-size: 0.93rem;
    margin-bottom: 1.8rem;
    padding-inline: 0.5rem;
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .hero__chef { display: none !important; }

  .hero__scroll {
    bottom: 4.5rem;
  }

  .hero__stats-inner {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__stat-number { font-size: 1.4rem; }
  .hero__stat-label { font-size: 0.58rem; }

}

@media (max-width: 480px) {

  .hero {
    padding-top: 60px;
  }

  .hero__eyebrow {
    font-size: 0.62rem !important;
    margin-bottom: 0.25rem !important;
  }

  .hero__title {
    font-size: 2.6rem !important;
    line-height: 1 !important;
    margin-bottom: 0.7rem !important;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .hero__stats {
    padding-block: 0.6rem;
  }

  .hero__stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.2rem;
    justify-items: center;
  }

  .hero__stat-number { font-size: 1.3rem; }
  .hero__stat-label { font-size: 0.55rem; }

}

/* ============================================================
   NOSOTROS
   ============================================================ */
@media (max-width: 900px) {

  .about__grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .about__img-wrap {
    order: 1;
  }

  .about__text {
    order: 2;
  }

  .about__img-frame img {
    height: 380px;
    object-position: top center;
  }

  .about__text .section-header {
    text-align: center;
  }

  .about__text .gold-divider {
    margin-inline: auto;
  }

  .about__body {
    font-size: 0.95rem;
    text-align: center;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about__feature {
    background: rgba(201,150,12,0.04);
    border: 1px solid rgba(201,150,12,0.15);
    border-radius: 12px;
    padding: 1rem;
  }

  .about__badge {
    bottom: 1rem;
    right: 1rem;
  }

}

@media (max-width: 480px) {

  .about__img-frame img {
    height: 300px;
  }

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

}

/* ============================================================
   PROCESO (TIMELINE)
   ============================================================ */
@media (max-width: 768px) {

  .process__timeline::before {
    left: 25px;
    transform: none;
  }

  .process__step {
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  /* Resetear orden para todos los pasos */
  .process__step .process__step-dot       { order: 1 !important; }
  .process__step .process__step-content   { order: 2 !important; text-align: left !important; }
  .process__step .process__step-void      { display: none !important; }

  .process__step-dot-inner {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .process__step-content {
    padding-left: 1.25rem;
    padding-right: 0;
  }

  .process__step-num {
    font-size: 0.65rem;
  }

  .process__step-title {
    font-size: 1rem;
  }

  .process__step-desc {
    font-size: 0.85rem;
    line-height: 1.65;
  }

}

/* ============================================================
   SHOWCASE
   ============================================================ */
@media (max-width: 768px) {

  .showcase {
    padding-block: 3rem 2rem;
  }

  .showcase__strip {
    gap: 10px;
    padding-inline: max(1.25rem, calc((100vw - 180px) / 2));
    padding-bottom: 1rem;
    justify-content: flex-start;
    scroll-behavior: smooth;
  }

  .showcase__item {
    width: 180px;
    height: 180px;
  }

  .showcase__item--deco {
    font-size: 3.5rem;
  }

  .showcase__item-label {
    font-size: 0.6rem;
    padding: 0.4rem 0.6rem;
  }

}

@media (max-width: 400px) {

  .showcase__item {
    width: 155px;
    height: 155px;
  }

}

/* ============================================================
   MENÚ
   ============================================================ */
@media (max-width: 900px) {

  .menu__tabs {
    gap: 0.4rem;
    flex-wrap: nowrap;          /* Fila horizontal, sin salto de línea */
    justify-content: flex-start;
    padding-inline: 1.25rem;
    padding-bottom: 0.5rem;
  }

  .menu__tab {
    font-size: 0.72rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

}

@media (max-width: 768px) {

  .menu__pizzas {
    grid-template-columns: 1fr;
    gap: 1rem;
    place-items: center start;
  }

  .menu__card {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 65px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
  }

  .menu__card-header {
    grid-row: 1 / 3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .menu__card-num {
    font-size: 0.75rem;
    color: var(--color-text-muted);
  }

  .menu__card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold-light);
  }

  .menu__card-price span {
    font-size: 0.9rem;
  }

  .menu__card-name {
    font-size: 1rem;
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
  }

  .menu__card-desc {
    grid-column: 2;
    grid-row: 2;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
  }

  /* Cards CON FOTO: layout vertical (anula el grid horizontal) */
  .menu__card--photo {
    display: block;
    padding: 0;
    max-width: 100%;
  }

  .menu__card--photo .menu__card-img {
    height: 210px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .menu__card--photo .menu__card-body {
    display: grid;
    grid-template-columns: 65px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.25rem;
  }

  .menu__card--photo .menu__card-header {
    grid-row: 1 / 3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .menu__card--photo .menu__card-name {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .menu__card--photo .menu__card-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .menu__halves {
    grid-template-columns: 1fr !important;
  }

  .menu__item-name {
    font-size: 0.85rem;
  }

  .menu__item-price {
    font-size: 1rem;
  }

}

@media (max-width: 540px) {

  .menu__pizzas {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    place-items: center start;
  }

  .menu__card {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    padding: 1rem;
    width: 100%;
    max-width: 380px;
  }

  .menu__card-header {
    grid-row: 1 / 3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }

  .menu__card-num {
    font-size: 0.7rem;
  }

  .menu__card-price {
    font-size: 1.3rem;
  }

  .menu__card-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.9rem;
  }

  .menu__card-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Cards CON FOTO en pantallas pequeñas */
  .menu__card--photo {
    display: block;
    padding: 0;
    max-width: 100%;
  }

  .menu__card--photo .menu__card-img {
    height: 190px;
  }

  .menu__card--photo .menu__card-body {
    grid-template-columns: 50px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  /* Salsas tags */
  .menu__sauces {
    gap: 0.4rem;
  }

  .menu__sauce-tag {
    font-size: 0.6rem;
    padding: 3px 9px;
  }

}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
@media (max-width: 768px) {

  .specialties__grid {
    grid-template-columns: 1fr !important;
  }

  .spec-card--featured {
    grid-row: span 1 !important;
    min-height: 320px;
  }

  .spec-card {
    min-height: 280px;
  }

  .spec-card__name {
    font-size: 1.6rem;
  }

  .spec-card__desc {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .spec-card__price {
    font-size: 1.5rem;
  }

  .spec-card__content {
    padding: 1.25rem;
  }

}

/* ============================================================
   PROMO STRIP
   ============================================================ */
@media (max-width: 600px) {

  .promo-strip__item {
    font-size: 0.65rem;
    gap: 0.35rem;
  }

  .promo-strip__track {
    gap: 2rem;
  }

}

/* ============================================================
   RESEÑAS
   ============================================================ */
@media (max-width: 768px) {

  .reviews__track-wrap::before,
  .reviews__track-wrap::after {
    width: 60px;
  }

  .review-card {
    width: 280px;
    padding: 1.25rem;
  }

  .review-card__text {
    font-size: 0.85rem;
  }

}

@media (max-width: 480px) {

  .review-card {
    width: 260px;
    padding: 1rem;
  }

  .review-card__text {
    font-size: 0.82rem;
    line-height: 1.65;
  }

}

/* ============================================================
   CTA BANNER
   ============================================================ */
@media (max-width: 768px) {

  .cta-banner {
    padding-block: 4.5rem;
  }

  .cta-banner__title {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .cta-banner__sub {
    font-size: 0.95rem;
    max-width: none;
    padding-inline: 0.5rem;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-banner__hours {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .cta-banner__hour-item {
    font-size: 0.85rem;
  }

}

/* ============================================================
   CONTACTO
   ============================================================ */
@media (max-width: 900px) {

  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  .contact__info-block .section-header {
    text-align: center;
  }

  .contact__info-block .gold-divider {
    margin-inline: auto;
  }

  .contact__body {
    text-align: center;
    max-width: none;
    font-size: 0.95rem;
  }

  .contact__actions {
    align-items: center;
  }

  .contact__action-btn {
    width: 100%;
    max-width: 420px;
  }

  .contact__socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .social-btn {
    font-size: 0.7rem;
    padding: 0.55rem 1rem;
  }

}

@media (max-width: 600px) {

  .contact__map-frame {
    border-width: 1px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 140, 0, 0.08);
  }

  .contact__map-frame iframe {
    height: 300px;
  }

  .contact__action-btn {
    flex-direction: row;
    padding: 0.85rem 1rem;
  }

  .contact__action-value {
    font-size: 1.1rem;
  }

  .contact__socials {
    gap: 0.4rem;
  }

  .social-btn span {
    display: none; /* Ocultar texto, solo icono en muy pequeño */
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
  }

  .social-btn {
    padding: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
  }

}

/* ============================================================
   FOOTER
   ============================================================ */
@media (max-width: 900px) {

  .footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__brand img {
    margin-inline: auto;
  }

  .footer__brand-desc {
    max-width: none;
    font-size: 0.82rem;
  }

}

@media (max-width: 600px) {

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

  .footer__links {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .footer__copy {
    font-size: 0.72rem;
  }

  .footer__social-row {
    justify-content: center;
  }

}

/* ============================================================
   BOTONES FLOTANTES
   ============================================================ */
@media (max-width: 768px) {

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  /* El back-to-top se reposiciona debajo del WA en móvil */
  .back-to-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

}

/* ============================================================
   AJUSTES EXTRA PARA TELÉFONOS MUY PEQUEÑOS (< 400px)
   ============================================================ */
@media (max-width: 400px) {

  .container {
    padding-inline: 1rem;
  }

  .btn {
    font-size: 0.75rem;
    padding: 0.8rem 1.5rem;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .section-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    padding-inline: 0;
  }

  .hero__stats-inner {
    gap: 0.5rem 1rem;
  }

  .hero__stat-number {
    font-size: 1.25rem;
  }

  .review-card {
    width: 240px;
  }

  .menu__tab {
    font-size: 0.65rem;
    padding: 0.5rem 0.75rem;
  }

  .spec-card__name {
    font-size: 1.4rem;
  }

  .cta-banner__title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .footer__brand-name {
    font-size: 1.25rem;
  }

}

/* ============================================================
   SAFE AREAS (notch / home bar en iOS)
   ============================================================ */
@supports (padding: env(safe-area-inset-bottom)) {

  .nav {
    padding-top: env(safe-area-inset-top);
  }

  .nav__mobile {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .wa-float {
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }

  .back-to-top {
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
  }

}

/* ============================================================
   LANDSCAPE MÓVIL (altura reducida)
   ============================================================ */
@media (max-width: 900px) and (orientation: landscape) {

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .hero__stats {
    position: static;
    margin-top: 1.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats-inner {
    gap: 2rem;
  }

}

/* ============================================================
   TABLET — AJUSTES 768px – 1024px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero__content {
    gap: 3rem;
  }

  .hero__chef {
    display: none !important;
  }

  .hero__chef-img-wrap {
    width: 300px;
  }

  .hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .about__grid {
    gap: 3rem;
  }

  .about__img-frame img {
    height: 480px;
  }

  .menu__pizzas {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

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

  .spec-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }

  .contact__grid {
    gap: 3rem;
  }

  .contact__map-frame iframe {
    height: 340px;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .process__step-content {
    padding-inline: var(--space-sm);
  }

}

/* ============================================================
   PRINT — por si alguien imprime el menú
   ============================================================ */
@media print {

  .nav,
  .hero__scroll,
  .wa-float,
  .back-to-top,
  .cursor-glow,
  #cursor-dot,
  .promo-strip,
  .cta-banner,
  .reviews,
  .showcase,
  .process,
  .specialties,
  .contact {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    cursor: auto;
  }

  .menu {
    padding: 2cm;
  }

  .menu__card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .menu__card-name { color: black; }
  .menu__card-price { color: #333; }
  .menu__card-desc { color: #555; }

}

/* ============================================================
   INDICADORES DE SWIPE — Tab dots móvil
   ============================================================ */
.menu__tab-dots {
  display: none;
}

@media (max-width: 768px) {

  /* Mostrar indicadores de posición bajo las tabs */
  .menu__tab-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -0.75rem;
    margin-bottom: var(--space-md);
  }

  .menu__tab-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--transition-base);
    cursor: pointer;
  }

  .menu__tab-dot.active {
    background: var(--color-gold);
    width: 16px;
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(201,150,12,0.5);
  }

  /* Swipe hint arrow en el menú */
  .menu__swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    opacity: 0.7;
    animation: hintFade 3s ease-in-out 2s forwards;
  }

  .menu__swipe-hint.hidden {
    display: none;
  }

  @keyframes hintFade {
    0%   { opacity: 0.7; }
    70%  { opacity: 0.7; }
    100% { opacity: 0; pointer-events: none; }
  }

  /* Swipe arrows animadas */
  .menu__swipe-hint::before,
  .menu__swipe-hint::after {
    content: '‹';
    color: var(--color-gold);
    font-size: 1rem;
    animation: arrowPulse 1.2s ease-in-out infinite alternate;
  }

  .menu__swipe-hint::after {
    content: '›';
    animation-delay: 0.3s;
  }

  @keyframes arrowPulse {
    from { opacity: 0.3; transform: translateX(0); }
    to   { opacity: 1;   transform: translateX(3px); }
  }

}

/* ============================================================
   DELIVERY SERVICE - MOBILE
   ============================================================ */
@media (max-width: 768px) {

  .delivery-service {
    padding-block: 3rem;
  }

  .delivery__features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .delivery__feature {
    padding: var(--space-md);
  }

  .delivery__feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }

  .delivery__feature-title {
    font-size: 1.1rem;
  }

  .delivery__feature-desc {
    font-size: 0.9rem;
  }

  .delivery__cta {
    margin-top: var(--space-lg);
  }

}
