/**
 * Estilos de la página de inicio (futuro index.html) — Tamarindo Wings.
 * Independiente del menú digital (producto.css). Ruta: inicio/index.css
 */

:root {
    --tw-ink: #1a0f0a;
    --tw-cream: #fff8f0;
    --tw-tamarindo: #5c3d2e;
    --tw-sauce: #c45c26;
    --tw-sauce-dark: #9a3f15;
    --tw-leaf: #1d6f5c;
    --tw-card: #ffffff;
    --tw-muted: #6b5a4e;
    --tw-radius: 18px;
    --tw-shadow: 0 12px 40px rgba(26, 15, 10, 0.12);
}

* {
    box-sizing: border-box;
}

body.tw-landing {
    margin: 0;
    font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
    color: var(--tw-ink);
    background: var(--tw-cream);
    line-height: 1.5;
}

.tw-landing a {
    color: inherit;
}

.tw-preview-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: linear-gradient(90deg, #134e4a, #0d9488);
    color: #ecfeff;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    text-transform: uppercase;
}

/* Sin barra preview en la portada (`index.html`) */
.tw-landing-wrap {
    padding-top: 10px;
}

/* Solo preview-landing-publico.html: hueco para barra superior */
body.tw-home--preview .tw-landing-wrap {
    padding-top: 46px;
}

.tw-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 20px 8px;
}

.tw-brand {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 1.85rem;
    letter-spacing: 0.04em;
    color: var(--tw-tamarindo);
    text-decoration: none;
}

.tw-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--tw-sauce) 0%, var(--tw-sauce-dark) 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(196, 92, 38, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tw-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(196, 92, 38, 0.45);
    color: #fff;
}

.tw-hero {
    position: relative;
    max-width: 1120px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.tw-hero-inner {
    position: relative;
    border-radius: var(--tw-radius);
    overflow: hidden;
    min-height: min(62vh, 560px);
    box-shadow: var(--tw-shadow);
}

.tw-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Plato / disparo retrato tipo Unsplash — encuadrar centro–arriba en banner ancho */
    object-position: center 42%;
    display: block;
    background-color: #2a1810;
}

.tw-hero-overlay {
    position: absolute;
    inset: 0;
    /* Marrón marca + oscuro donde va el texto, toque verde Tamarindo a la derecha */
    background:
        linear-gradient(180deg, rgba(26, 15, 10, 0.12) 0%, transparent 42%, rgba(26, 15, 10, 0.45) 100%),
        linear-gradient(
            108deg,
            rgba(92, 61, 46, 0.9) 0%,
            rgba(26, 15, 10, 0.55) 44%,
            rgba(29, 111, 92, 0.2) 100%
        );
}

.tw-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 5vw, 56px);
    max-width: 540px;
    color: #fff;
}

.tw-hero h1 {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 0 0 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.tw-hero-lead {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    opacity: 0.95;
    margin: 0 0 28px;
    max-width: 38ch;
}

.tw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tw-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f97316 0%, var(--tw-sauce-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    text-decoration: none;
    transition: transform 0.15s ease;
}

.tw-btn-primary:hover {
    transform: scale(1.02);
    color: #fff;
}

.tw-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(6px);
}

.tw-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.tw-services {
    max-width: 1120px;
    margin: -18px auto 44px;
    padding: 0 20px;
}

.tw-services-wrap {
    position: relative;
}

.tw-services-head {
    text-align: center;
    margin: 0 0 22px;
    padding-top: 4px;
}

.tw-services-kicker {
    margin: 0 0 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tw-leaf);
}

.tw-services-head h2 {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: clamp(2rem, 5vw, 2.65rem);
    letter-spacing: 0.035em;
    color: var(--tw-tamarindo);
    margin: 0;
    line-height: 1;
}

/* 4 columnas desktop → 2 tablet → 1 móvil angosto */
.tw-services-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2.5vw, 18px);
}

.tw-services-grid > li {
    margin: 0;
    min-width: 0;
}

.tw-service-card {
    height: 100%;
    margin: 0;
    padding: clamp(18px, 3vw, 22px);
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 252, 248, 0.98) 100%
    );
    border-radius: var(--tw-radius);
    border: 1px solid rgba(92, 61, 46, 0.11);
    box-shadow:
        0 4px 20px rgba(26, 15, 10, 0.06),
        0 14px 40px rgba(26, 15, 10, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tw-service-card:focus-within,
.tw-service-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 28px rgba(26, 15, 10, 0.08),
        0 20px 52px rgba(29, 111, 92, 0.08);
}

.tw-service-ico {
    flex-shrink: 0;
    width: clamp(46px, 10vw, 52px);
    height: clamp(46px, 10vw, 52px);
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75), transparent 55%),
        linear-gradient(145deg, rgba(29, 111, 92, 0.16), rgba(196, 92, 38, 0.12));
    color: var(--tw-leaf);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.tw-services-grid > li:nth-child(even) .tw-service-ico {
    color: var(--tw-sauce);
}

.tw-service-title {
    margin: 0 0 8px;
    font-size: clamp(1.02rem, 2.8vw, 1.12rem);
    font-weight: 800;
    color: var(--tw-tamarindo);
    letter-spacing: 0.01em;
}

.tw-service-desc {
    margin: 0;
    font-size: clamp(0.84rem, 2.6vw, 0.92rem);
    color: var(--tw-muted);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .tw-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .tw-service-card:hover,
    .tw-service-card:focus-within {
        transform: none;
    }
}

.tw-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 20px 48px;
}

.tw-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.tw-section-head h2 {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0.03em;
    color: var(--tw-tamarindo);
    margin: 0 0 8px;
}

.tw-section-head p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--tw-muted);
    font-size: 1.02rem;
}

.tw-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* Carrusel horizontal solo en móvil (Lo más pedido) */
.tw-product-carousel {
    position: relative;
}

.tw-product-card {
    background: var(--tw-card);
    border-radius: var(--tw-radius);
    overflow: hidden;
    box-shadow: var(--tw-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.tw-product-card:hover {
    transform: translateY(-4px);
}

.tw-product-card figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ede4dc;
}

.tw-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tw-product-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tw-product-body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: var(--tw-tamarindo);
}

.tw-product-body p {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: var(--tw-muted);
    flex: 1;
}

.tw-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tw-sauce);
}

/* Hamburguesas — mismo grid que destacados; toque ámbar marca */
.tw-section--burgers {
    padding-top: 28px;
    background: linear-gradient(180deg, rgba(196, 92, 38, 0.06), transparent 50%);
}

.tw-section--burgers .tw-section-head h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tw-section--burgers .tw-section-head h2 .fa-burger {
    color: var(--tw-sauce);
}

.tw-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
    justify-content: center;
}

.tw-loc-card {
    background: var(--tw-card);
    border-radius: var(--tw-radius);
    padding: 22px 24px;
    box-shadow: var(--tw-shadow);
    border: 1px solid rgba(92, 61, 46, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bloque elegir sucursal: mismo anillo que el resto, centrado sin margin inline roto */
#elegir-sucursal.tw-section--sucursal {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px clamp(18px, 4vw, 28px) 52px;
    background: linear-gradient(180deg, transparent, rgba(29, 111, 92, 0.06));
    border-radius: var(--tw-radius);
    box-sizing: border-box;
    width: min(1120px, calc(100% - 40px));
}

#elegir-sucursal.tw-section--sucursal .tw-section-head {
    text-align: center;
}

/* Tarjetas: texto alineado al centro para parecer una columna estable */
#elegir-sucursal.tw-section--sucursal .tw-loc-card {
    text-align: center;
    align-items: center;
}

#elegir-sucursal.tw-section--sucursal .tw-loc-card h3 {
    justify-content: center;
}

#elegir-sucursal.tw-section--sucursal .tw-loc-meta {
    text-align: center;
}

#elegir-sucursal.tw-section--sucursal .tw-loc-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tw-loc-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--tw-tamarindo);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tw-loc-card h3 i {
    color: var(--tw-leaf);
}

.tw-loc-meta {
    font-size: 0.9rem;
    color: var(--tw-muted);
    margin: 0;
}

.tw-loc-actions {
    margin-top: auto;
    padding-top: 8px;
}

.tw-loc-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--tw-sauce);
    text-decoration: none;
}

.tw-loc-actions a:hover {
    text-decoration: underline;
}

/* —— Pie global (landing/borrador) —— */
.tw-site-footer {
    margin-top: 0;
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, #2e211a 0%, #1b120e 72%, #15100c 100%);
    color: rgba(243, 234, 224, 0.88);
    padding: clamp(36px, 6vw, 48px) clamp(18px, 4vw, 28px) 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tw-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.tw-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 34px);
    align-items: start;
}

.tw-footer-brand-col .tw-footer-kicker {
    margin: 0 0 10px;
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.95);
}

.tw-footer-brand-col .tw-footer-kicker i {
    color: var(--tw-sauce);
    margin-right: 8px;
    vertical-align: -0.05em;
}

.tw-footer-brand-col .tw-footer-desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.47;
    color: rgba(243, 234, 224, 0.66);
}

.tw-footer-heading {
    display: block;
    margin: 0 0 11px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}

.tw-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tw-footer-nav a {
    font-size: 0.93rem;
    font-weight: 600;
    color: rgba(255, 247, 240, 0.88);
    text-decoration: none;
}

.tw-footer-nav a:hover {
    color: rgba(174, 220, 204, 0.98);
}

.tw-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tw-footer-contact-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 247, 240, 0.92);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.tw-footer-contact-link i {
    color: var(--tw-sauce);
    width: 1.05em;
    text-align: center;
}

.tw-footer-contact-link:hover {
    text-decoration: underline;
}

.tw-footer-contact-link--wa i {
    color: #25d366;
}

a.tw-footer-contact-muted-link {
    text-decoration: none;
    cursor: pointer;
}

a.tw-footer-contact-muted-link:hover {
    color: rgba(243, 234, 224, 0.9);
    text-decoration: underline;
}

.tw-footer-contact-muted {
    font-size: 0.86rem;
    color: rgba(243, 234, 224, 0.52);
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.tw-footer-contact-muted i {
    color: rgba(196, 92, 38, 0.55);
}

.tw-footer-social {
    display: flex;
    gap: 12px;
    margin-top: clamp(22px, 4vw, 28px);
    flex-wrap: wrap;
}

.tw-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tw-footer-social a:hover {
    background: rgba(196, 92, 38, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.tw-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 26px 0 20px;
}

.tw-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    justify-content: center;
}

.tw-footer-legal a {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
}

.tw-footer-legal a:hover {
    color: rgba(243, 234, 224, 0.95);
    text-decoration: underline;
}

.tw-footer-bottom {
    margin-top: 18px;
    text-align: center;
}

.tw-footer-copy {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.76);
}

.tw-footer-micro {
    margin: 0 auto;
    max-width: 52rem;
    font-size: 0.78rem;
    line-height: 1.52;
    color: rgba(243, 234, 224, 0.48);
}

@media (max-width: 860px) {
    .tw-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tw-footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}

@media (max-width: 640px) {
    .tw-site-footer {
        padding-bottom: 30px;
    }

    .tw-footer-nav ul {
        flex-direction: column;
    }
}

/* Buscar colonia → sucursal (panel en #elegir-sucursal) */
.tw-colonia-buscar-trigger {
    display: inline;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: none;
    border-bottom: 2px solid rgba(196, 92, 38, 0.45);
    background: transparent;
    color: var(--tw-sauce);
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
}

.tw-colonia-buscar-trigger:hover {
    border-bottom-color: var(--tw-sauce);
    color: var(--tw-sauce-dark);
}

.tw-colonia-buscar-trigger:focus-visible {
    outline: 2px solid var(--tw-leaf);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Aire entre el párrafo (“toca aquí”) y el panel desplegable */
#elegir-sucursal .tw-section-head > p {
    margin-bottom: 0;
}

.tw-colonia-panel {
    max-width: 560px;
    margin: clamp(16px, 2.8vw, 22px) auto 26px;
    padding: clamp(14px, 3vw, 18px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(92, 61, 46, 0.14);
    border-radius: calc(var(--tw-radius) - 2px);
    box-shadow: 0 8px 30px rgba(26, 15, 10, 0.07);
}

#elegir-sucursal .tw-section-head .tw-colonia-panel {
    margin-left: auto;
    margin-right: auto;
}

.tw-colonia-panel[hidden] {
    display: none !important;
}

.tw-colonia-panel label.tw-colonia-label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--tw-tamarindo);
    margin-bottom: 8px;
}

.tw-colonia-panel .tw-colonia-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(92, 61, 46, 0.22);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--tw-ink);
    box-sizing: border-box;
}

.tw-colonia-panel .tw-colonia-input:focus {
    outline: none;
    border-color: var(--tw-leaf);
    box-shadow: 0 0 0 3px rgba(29, 111, 92, 0.2);
}

.tw-colonia-help {
    min-height: 1.35em;
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--tw-muted);
}

.tw-colonia-resultados {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.tw-colonia-resultados li + li {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(92, 61, 46, 0.1);
}

.tw-colonia-item-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
}

.tw-colonia-item-meta {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--tw-muted);
}

.tw-colonia-item-meta strong {
    color: var(--tw-tamarindo);
    font-weight: 700;
}

.tw-colonia-item-link {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--tw-sauce);
    text-decoration: none;
}

.tw-colonia-item-link .fa-chevron-right {
    font-size: 0.65rem;
    vertical-align: 0.05em;
    opacity: 0.92;
}

.tw-colonia-item-link:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    /* Hero: foto a todo el ancho de la pantalla */
    .tw-hero {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 36px;
    }

    .tw-hero-inner {
        border-radius: 0;
        box-shadow: none;
        min-height: clamp(420px, 58vh, 520px);
    }

    .tw-hero-content {
        padding: clamp(20px, 5vw, 28px) 20px clamp(24px, 6vw, 32px);
        max-width: none;
    }

    .tw-services {
        padding-left: 14px;
        padding-right: 14px;
        margin-bottom: 36px;
    }

    .tw-services-head {
        margin-bottom: 16px;
    }

    .tw-services-grid {
        gap: 12px;
    }

    /* Carrusel “Lo más pedido” — diseño más compacto en pantallas pequeñas */
    #productos-destacados.tw-section {
        padding-top: 12px;
        padding-bottom: 26px;
    }

    #productos-destacados .tw-section-head {
        margin-bottom: 14px;
    }

    #productos-destacados .tw-section-head h2 {
        font-size: clamp(1.6rem, 6.5vw, 2rem);
        margin-bottom: 4px;
    }

    #productos-destacados .tw-section-head p {
        font-size: 0.9rem;
        line-height: 1.38;
        max-width: 34ch;
    }

    #productos-destacados .tw-product-carousel {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        margin-left: -20px;
        margin-right: -20px;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scrollbar-width: thin;
    }

    #productos-destacados .tw-product-carousel::-webkit-scrollbar {
        height: 3px;
    }

    #productos-destacados .tw-product-carousel::-webkit-scrollbar-thumb {
        background: rgba(92, 61, 46, 0.25);
        border-radius: 4px;
    }

    #productos-destacados .tw-product-carousel .tw-product-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: max-content;
        padding: 0 16px 4px;
        margin: 0;
    }

    #productos-destacados .tw-product-carousel .tw-product-card {
        flex: 0 0 min(220px, calc(100vw - 56px));
        max-width: min(220px, calc(100vw - 56px));
        scroll-snap-align: center;
        box-shadow: 0 4px 16px rgba(26, 15, 10, 0.08);
        border-radius: calc(var(--tw-radius) - 2px);
    }

    #productos-destacados .tw-product-carousel .tw-product-card figure {
        aspect-ratio: 3 / 2;
    }

    #productos-destacados .tw-product-carousel .tw-product-card .tw-product-body {
        padding: 10px 12px 12px;
    }

    #productos-destacados .tw-product-carousel .tw-product-card .tw-product-body h3 {
        font-size: 1rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    #productos-destacados .tw-product-carousel .tw-product-card .tw-product-body p {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    #productos-destacados .tw-product-carousel .tw-product-card .tw-price {
        font-size: 1rem;
        font-weight: 800;
    }

    #productos-destacados .tw-product-carousel .tw-product-card:hover {
        transform: none;
    }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
    #productos-destacados .tw-product-carousel {
        scroll-snap-type: none;
    }
}
