:root {
    --bg: #111111;
    --bg-2: #181818;
    --card: #1A1A1A;
    --card-border: rgba(255, 255, 255, 0.06);
    --yellow: #F5A623;
    --yellow-2: #FFB940;
    --yellow-glow: rgba(245, 166, 35, 0.15);
    --text: #ffffff;
    --text-2: rgba(255, 255, 255, 0.65);
    --text-3: rgba(255, 255, 255, 0.4);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: transparent;
    color: var(--text);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(17, 17, 17, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--yellow), var(--yellow-2));
    color: var(--bg);
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 10px 20px var(--yellow-glow);
}

.brand__logo {
    height: 130px;
    width: auto;
    display: block;
}

.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: 1rem; letter-spacing: 0.02em; color: var(--text); }
.brand__text small { font-size: 0.75rem; opacity: 0.6; color: var(--text-2); }

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-2);
    transition: color 0.2s;
}

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

.whatsapp-pill {
    text-decoration: none;
    background: var(--yellow);
    color: var(--bg);
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px var(--yellow-glow);
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-pill:hover {
    background: var(--yellow-2);
    transform: translateY(-2px);
}

.whatsapp-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.whatsapp-group .whatsapp-pill {
    padding: 10px 14px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-group .btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.floating-social {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-social__btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.38),
        0 0 18px rgba(255, 255, 255, 0.12);
    filter: saturate(1.16) brightness(1.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-social__btn:hover {
    transform: scale(1.1);
    filter: saturate(1.22) brightness(1.14);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 16px 34px rgba(0, 0, 0, 0.42),
        0 0 26px rgba(255, 255, 255, 0.16);
}

.floating-social__btn--whatsapp {
    background: #25D366;
    width: 56px;
    height: 56px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(37, 211, 102, 0.34),
        0 0 26px rgba(37, 211, 102, 0.2);
}

.floating-social__btn--whatsapp:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 16px 36px rgba(37, 211, 102, 0.48),
        0 0 32px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp { display: none; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 32px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
    min-height: 78vh;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--yellow);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.hero__copy h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 10ch;
    color: var(--text);
}

.hero__text {
    margin-top: 18px;
    max-width: 52ch;
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--text-2);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
    background: var(--yellow);
    color: var(--bg);
    box-shadow: 0 18px 30px var(--yellow-glow);
}

.btn--primary:hover {
    background: var(--yellow-2);
    box-shadow: 0 18px 36px rgba(245, 166, 35, 0.25);
}

.about#mayoristas .whatsapp-group {
    gap: 12px;
    flex-wrap: wrap;
}

.about#mayoristas .whatsapp-group .btn--primary {
    min-height: 56px;
    padding: 0 20px;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(245, 166, 35, 0.32);
}

.about#mayoristas .whatsapp-group .btn--primary:hover {
    box-shadow: 0 22px 42px rgba(245, 166, 35, 0.42);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn--full { width: 100%; }

.hero__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero__chips span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-2);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero__visual {
    display: flex;
    justify-content: center;
    min-height: 100px;
}

.mascot-stage {
    position: relative;
    width: min(100%, 620px);
    height: 620px;
    animation: float 5s ease-in-out infinite;
}

.mascot-stage::before,
.mascot-stage::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.mascot-stage::before {
    inset: 4% 5% 8%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 210, 112, 0.34), rgba(245, 166, 35, 0.16) 34%, rgba(245, 166, 35, 0.05) 56%, transparent 74%);
    filter: blur(18px);
    opacity: 0.95;
}

.mascot-stage::after {
    left: 18%;
    right: 18%;
    bottom: 7%;
    height: 18%;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.22), rgba(0, 0, 0, 0.24) 48%, transparent 72%);
    filter: blur(18px);
    opacity: 0.78;
}

.mascot-placeholder {
    width: min(100%, 620px);
    height: 620px;
    flex-shrink: 0;
}

.mascot-stage.mascot-floating {
    margin: 0;
    will-change: left, top, width, height, opacity;
}

.mascot-stage.mascot-floating .mascot-glow {
    inset: 10%;
    filter: blur(10px);
}

.mascot-stage.mascot-floating::before {
    inset: 0;
    filter: blur(12px);
    opacity: 0.76;
}

.mascot-stage.mascot-floating::after {
    left: 16%;
    right: 16%;
    bottom: 4%;
    height: 18%;
    filter: blur(10px);
}

.mascot-canvas {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
}

.mascot-glow {
    position: absolute;
    inset: 6% 8% 8%;
    z-index: 1;
    background:
        radial-gradient(circle at 48% 35%, rgba(255, 238, 184, 0.18), transparent 22%),
        radial-gradient(circle at 52% 50%, rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.1) 42%, transparent 72%);
    filter: blur(22px);
    pointer-events: none;
}

.mascot-badge {
    position: absolute;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-2);
}

.mascot-badge--top { top: 70px; right: 26px; }
.mascot-badge--bottom { bottom: 42px; left: 24px; }

.stats {
    padding: 14px 0 24px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.stats__grid article {
    padding: 22px 18px;
    text-align: center;
}

.stats__grid article:hover {
    transform: translateY(-3px);
}

.stats__grid strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text);
}

.stats__grid span {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    color: var(--text-2);
}

.how, .products, .about, .contact { padding: 72px 0; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
}

.section-head h2,
.about__grid h2,
.contact__grid h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 12ch;
    color: var(--text);
}

.section-note {
    color: var(--text-2);
    line-height: 1.6;
}

.section-head--split .section-note {
    max-width: 34ch;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--card-border);
}

.how__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    padding: 24px;
}

.step-card::after {
    content: '';
    position: absolute;
    inset: auto -14px -14px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--yellow-glow), transparent 68%);
}

.step-card span:first-of-type {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--bg);
    font-weight: 900;
    margin-bottom: 16px;
}

.step-card h3,
.card__title,
.cart__header h3,
.contact__cards strong {
    color: var(--text);
}

.step-card p {
    line-height: 1.6;
    color: var(--text-2);
}

.products__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
    gap: 22px;
    align-items: start;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.card__media-hover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card:hover .card__media-hover {
    opacity: 1;
}

.card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--yellow);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}

.card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 40%);
}

.card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
}

.card__body {
    padding: 22px;
}

.card__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.card__meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--yellow-glow);
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 700;
}

.card__title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text);
}

.card__ingredients,
.card__weight {
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card__price-before {
    font-size: 0.86rem;
    line-height: 1.05;
    color: #ff5b5b;
    font-weight: 800;
}

.card__price-old {
    color: #ff5b5b;
    text-decoration-thickness: 2px;
    text-decoration-color: #ff5b5b;
    text-decoration-line: line-through;
}

.card__price-now {
    font-size: 0.86rem;
    line-height: 1.05;
    color: var(--text-2);
    font-weight: 800;
}

.card__price-current {
    display: block;
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--yellow);
}

.btn--small {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 16px;
    background: var(--yellow);
    color: var(--bg);
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn--small:hover {
    background: var(--yellow-2);
    transform: translateY(-2px);
}

.cart {
    position: sticky;
    top: 110px;
    padding: 22px;
}

.cart__header {
    margin-bottom: 18px;
}

.cart__header h3 {
    font-size: 1.6rem;
    margin-top: 8px;
    color: var(--text);
}

.cart__empty {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    color: var(--text-2);
}

.cart__items {
    display: grid;
    gap: 12px;
}

.cart__item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart__item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cart__item strong { font-size: 0.98rem; color: var(--text); }
.cart__item small { color: var(--text-2); }

.cart__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.cart__controls button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--bg);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}

.cart__controls button:hover {
    background: var(--yellow-2);
}

.cart__controls span { min-width: 22px; text-align: center; font-weight: 800; color: var(--text); }

.cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    color: var(--text);
}

.cart__total strong {
    color: var(--yellow);
}

.about {
    margin: 0 20px;
    border-radius: 32px;
    background: var(--card);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.about__grid,
.contact__grid,
.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.about__grid p {
    color: var(--text-2);
    line-height: 1.6;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact__cards article {
    padding: 20px;
}

.contact__cards span {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact__cards strong {
    display: block;
    margin-top: 8px;
    font-size: 1.05rem;
    color: var(--text);
}

.footer {
    padding: 28px 0 40px;
}

.footer__grid {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid > div:first-child strong {
    color: var(--text);
}

.footer__grid > div:first-child p {
    color: var(--text-2);
    margin-top: 6px;
}

.preparacion__grid .reveal-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preparacion__label {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.preparacion__title {
    font-size: 1.2rem;
    color: var(--text-2);
    font-weight: 400;
}

.preparacion__right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.preparacion__img {
    width: 240px;
    height: auto;
    border-radius: 16px;
    flex-shrink: 0;
    object-fit: cover;
}

.contact-location__video {
    width: 100%;
    max-width: 520px;
    display: block;
    margin-top: 14px;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.preparacion__content {
    flex: 1;
}

.footer__grid > div:last-child {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.footer a {
    text-decoration: none;
    font-weight: 700;
    color: var(--text-2);
    transition: color 0.2s;
}

.footer a:hover { color: var(--yellow); }

/* ── price toggle ── */
.price-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    padding: 6px;
    width: fit-content;
    margin-bottom: 28px;
}

.price-toggle__option {
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    color: var(--text-2);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    user-select: none;
    letter-spacing: 0.02em;
}

.price-toggle__option.active {
    background: var(--yellow);
    color: var(--bg);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.price-toggle__option[data-mode="mayorista"] {
    color: #ff7d7d;
    border: 1px solid rgba(255, 91, 91, 0.24);
    background: rgba(255, 91, 91, 0.14);
}

.price-toggle__option.active {
    background: var(--yellow);
    color: var(--bg);
}

.price-toggle__option[data-mode="mayorista"].active {
    background: linear-gradient(145deg, #ff5b5b, #ff2f2f);
    color: var(--bg);
    box-shadow: 0 10px 28px rgba(255, 91, 91, 0.38), 0 0 18px rgba(255, 91, 91, 0.16);
}

/* ── privacy section styles ── */
.privacy__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy__content article h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--yellow);
}

.privacy__content article p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ── order modal ── */
body.modal-open {
    overflow: hidden;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.order-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.order-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(10px);
}

.order-sheet {
    position: relative;
    width: min(680px, 100%);
    max-height: min(88vh, 760px);
    overflow: auto;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 166, 35, 0.14), transparent 32%),
        linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 174, 33, 0.32);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 166, 35, 0.12);
    transform: translateY(22px) scale(0.98);
    transition: transform 0.25s ease;
}

.order-modal.is-open .order-sheet {
    transform: translateY(0) scale(1);
}

.order-sheet h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    color: var(--text);
}

.order-sheet__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.order-form {
    display: grid;
    gap: 14px;
}

.order-form label,
.order-form__group {
    display: grid;
    gap: 8px;
}

.order-form span {
    color: var(--text);
    font-weight: 800;
    font-size: 0.92rem;
}

.order-form small {
    color: var(--yellow);
    font-size: 0.78rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.order-form textarea {
    min-height: 92px;
    padding-top: 12px;
    resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: rgba(245, 166, 35, 0.8);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
    background: rgba(255, 255, 255, 0.11);
}

.order-form select option {
    color: #111;
}

.order-form__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.order-form__row em {
    color: var(--text-2);
    font-style: normal;
    font-weight: 700;
    font-size: 0.86rem;
}

.order-form__summary {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.22);
    color: var(--text-2);
    line-height: 1.5;
}

.order-form__summary strong,
.order-form__summary b {
    color: var(--yellow);
}

/* ── reveal animations ── */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-up { transform: translateY(70px); }

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── premium card base ── */
.card,
.stats__card,
.step-card,
.cart,
.contact__cards article {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.95), rgba(12, 12, 12, 0.98));
    border: 1px solid rgba(255, 174, 33, 0.18);
    border-radius: 18px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before,
.stats__card::before,
.step-card::before,
.cart::before,
.contact__cards article::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 60%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 174, 33, 0.18), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.card:hover,
.stats__card:hover,
.step-card:hover,
.cart:hover,
.contact__cards article:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(255, 174, 33, 0.45);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 28px rgba(255, 174, 33, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card:hover::before,
.stats__card:hover::before,
.step-card:hover::before,
.cart:hover::before,
.contact__cards article:hover::before {
    left: 150%;
}

.card:hover .card__media {
    transform: scale(1.06);
    filter: brightness(1.08) contrast(1.05);
}

.card .card__media {
    transition: transform 0.45s ease, filter 0.45s ease;
}

/* ── video de fondo ── */
.bg-video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.sound-toggle {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 300;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s;
}

.sound-toggle:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: var(--yellow);
}

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

@media (max-width: 1100px) {
    .hero__inner,
    .products__layout,
    .about__grid,
    .contact__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

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

    .how__grid,
    .grid {
        grid-template-columns: 1fr;
    }

    .cart { position: static; }
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .topbar__inner { min-height: 76px; }
}

@media (max-width: 700px) {
    body { background: var(--bg); overflow-x: hidden; }
    .container { width: min(100% - 24px, 1180px); }
    .topbar { background: rgba(17, 17, 17, 0.9); }
    .topbar__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px 0 10px;
        min-height: auto;
    }
    .brand { min-width: 0; }
    .brand__logo { width: 118px; height: auto; max-width: 100%; object-fit: contain; }
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 10px;
    }
    .nav a {
        font-size: 0.76rem;
        padding: 4px 0;
    }
    .topbar .whatsapp-group { display: none; }
    .hero { padding: 8px 0 22px; overflow: visible; }
    .hero__inner { min-height: auto; gap: 6px; }
    .hero__visual { order: -1; min-height: 0; margin-top: -4px; }
    .hero .eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        font-size: 0.82rem;
        line-height: 1.2;
        padding: 8px 10px;
    }
    .hero__copy { margin-top: -2px; }
    .hero__copy h1 { font-size: clamp(2.4rem, 14vw, 3.4rem); line-height: 0.92; }
    .hero__text { margin-top: 10px; font-size: 0.9rem; line-height: 1.45; }
    .hero__actions { gap: 7px; margin-top: 16px; }
    .btn { min-height: 36px; padding: 0 11px; font-size: 0.8rem; }
    .hero__actions .btn { flex: 1 1 120px; min-height: 36px; padding: 0 11px; }
    .hero__chips { gap: 7px; margin-top: 14px; }
    .hero__chips span { padding: 7px 9px; font-size: 0.7rem; }
    .mascot-stage { width: min(92vw, 340px); height: 280px; margin: 0 auto; animation: none; }
    .mascot-placeholder { width: min(92vw, 340px); height: 280px; }
    .mascot-stage::before { inset: 4% 6% 8%; filter: blur(16px); opacity: 0.86; }
    .mascot-stage::after { left: 18%; right: 18%; bottom: 5%; height: 16%; filter: blur(12px); }
    .stats__grid,
    .contact__cards { grid-template-columns: 1fr; }
    .section-head { align-items: start; flex-direction: column; }
    .floating-social { right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); gap: 4px; }
    .floating-social__btn { width: 34px; height: 34px; opacity: 0.94; }
    .floating-social__btn svg { width: 17px; height: 17px; }
    .floating-social__btn--whatsapp { width: 40px; height: 40px; }
    .floating-social__btn--whatsapp svg { width: 22px; height: 22px; }
    .bg-video { display: block; }
    .sound-toggle { display: none; }
    .stats { display: none; }
    .preparacion__right { flex-direction: column; }
    .preparacion__img { width: 100%; max-width: 300px; }
    .contact-location__video { max-width: 100%; margin-top: 12px; }
    .order-modal { padding: 10px; align-items: end; }
    .order-sheet { padding: 22px 16px; border-radius: 24px 24px 0 0; max-height: 92vh; }
    .order-form__row { grid-template-columns: 1fr; }
    .order-form__row em { display: none; }
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .price-toggle { margin-bottom: 20px; }
    .price-toggle__option { padding: 9px 16px; font-size: 0.84rem; }
    .card__body { padding: 11px; }
    .card__title { font-size: 0.84rem; margin-bottom: 4px; }
    .card__ingredients,
    .card__weight {
        font-size: 0.66rem;
        line-height: 1.28;
        margin-bottom: 4px;
    }
    .card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        margin-top: 8px;
    }
    .card__price { padding: 7px 8px; border-radius: 12px; }
    .card__price-before { font-size: 0.66rem; }
    .card__price-now { font-size: 0.72rem; }
    .card__price-current { font-size: 0.98rem; }
    .btn--small {
        min-height: 30px;
        padding: 0 8px;
        border-radius: 12px;
        font-size: 0.68rem;
        width: 100%;
    }
    .btn--primary,
    .btn--ghost { font-size: 0.88rem; }
    .order-sheet__close { width: 34px; height: 34px; top: 14px; right: 14px; }
}

@media (max-width: 768px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(55px);
    }
    .reveal-left.is-visible,
    .reveal-right.is-visible {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container { width: min(100% - 18px, 1180px); }
    .brand__logo { width: 104px; }
    .nav a { font-size: 0.7rem; }
    .hero { padding-bottom: 18px; }
    .hero__inner { gap: 4px; }
    .hero__copy h1 { font-size: clamp(2.2rem, 13vw, 3.05rem); }
    .hero__text { font-size: 0.86rem; }
    .hero__actions .btn { flex: 1 1 100%; }
    .hero__chips { gap: 6px; }
    .hero__chips span { padding: 6px 8px; font-size: 0.66rem; }
    .mascot-stage { width: min(94vw, 290px); height: 240px; }
    .mascot-placeholder { width: min(94vw, 290px); height: 240px; }
    .price-toggle { width: 100%; justify-content: space-between; }
    .price-toggle__option {
        flex: 1 1 50%;
        padding: 9px 0;
        text-align: center;
        font-size: 0.8rem;
    }
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }
    .card__body { padding: 10px 10px 12px; }
    .card__title { font-size: 0.8rem; }
    .card__ingredients,
    .card__weight {
        font-size: 0.63rem;
        line-height: 1.26;
    }
    .card__price { padding: 6px 7px; }
    .card__price-now { font-size: 0.68rem; }
    .card__price-current { font-size: 0.9rem; }
    .order-sheet { padding: 20px 14px; }
    .order-sheet__close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-left,
    .reveal-right,
    .reveal-up,
    .card,
    .stats__card,
    .step-card,
    .cart,
    .contact__cards article,
    .privacy__content article {
        transition: none !important;
        transform: none !important;
    }
    .card::before,
    .stats__card::before,
    .step-card::before,
    .cart::before,
    .contact__cards article::before,
    .privacy__content article::before {
        display: none !important;
    }
    .card:hover .card__media {
        transform: none !important;
        filter: none !important;
    }
}
