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

:root {
    --ret-bg: #f6f1e8;
    --ret-bg-soft: #fffaf2;
    --ret-bg-dark: #101114;
    --ret-surface: #ffffff;
    --ret-surface-soft: rgba(255, 255, 255, 0.78);
    --ret-text: #121417;
    --ret-text-soft: #5f6774;
    --ret-text-inverse: #f8f4ec;
    --ret-line: rgba(17, 20, 24, 0.1);
    --ret-line-dark: rgba(255, 255, 255, 0.12);
    --ret-accent: #efb935;
    --ret-accent-strong: #ff7a18;
    --ret-danger: #d11f3e;
    --ret-success: #167c52;
    --ret-radius-lg: 28px;
    --ret-radius-md: 18px;
    --ret-radius-sm: 12px;
    --ret-shadow-lg: 0 28px 80px rgba(16, 17, 20, 0.14);
    --ret-shadow-md: 0 18px 46px rgba(16, 17, 20, 0.1);
    --ret-container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: var(--ret-text);
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

.ret-quick-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 12px 14px 0;
}

.ret-quick-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: var(--ret-container);
    margin: 0 auto;
    padding: 14px 18px;
    border: 1px solid rgba(17, 20, 24, 0.08);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(16, 17, 20, 0.08);
}

.ret-quick-nav__brand,
.ret-quick-nav__link,
.ret-quick-nav__cart {
    text-decoration: none;
}

.ret-quick-nav__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 190px;
    color: var(--ret-text);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ret-quick-nav__logo {
    display: block;
    width: auto !important;
    max-inline-size: 190px;
    max-width: 190px;
    height: 42px;
    max-height: 42px;
    flex: 0 0 auto;
    object-fit: contain;
}

.woocommerce-page .ret-quick-nav__brand {
    min-width: 170px;
}

.woocommerce-page .ret-quick-nav__logo {
    max-inline-size: 155px;
    max-width: 155px;
    height: 30px;
    max-height: 30px;
}

.ret-quick-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.ret-quick-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--ret-text-soft);
    font-size: 14px;
    font-weight: 700;
}

.ret-quick-nav__link.is-current,
.ret-quick-nav__link:hover {
    background: #181b22;
    color: var(--ret-text-inverse);
}

.ret-quick-nav__link[href*="checkout"],
.ret-quick-nav__link[href*="finalizar"],
.ret-quick-nav__link[href*="pagar"] {
    display: none !important;
}

.ret-quick-nav__cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px 0 16px;
    border-radius: 999px;
    background: #181b22;
    color: var(--ret-text-inverse);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.ret-quick-nav__cart strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ret-accent) 0%, var(--ret-accent-strong) 100%);
    color: #1a1208;
}

.wp-block-navigation a[href*="/scanner"],
.wp-block-navigation a[href*="/mi-cuenta"],
.wp-block-page-list a[href*="/scanner"],
.wp-block-page-list a[href*="/mi-cuenta"] {
    display: none !important;
}

.ret-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 44px;
    height: auto !important;
    max-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ret-accent) 0%, var(--ret-accent-strong) 100%);
    color: #18130a !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 1 !important;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 34px rgba(255, 122, 24, 0.22);
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ret-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(255, 122, 24, 0.28);
}

.ret-button-secondary,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background: #1d2027 !important;
    color: var(--ret-text-inverse) !important;
    box-shadow: none;
}

.ret-kicker,
.ret-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ret-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 800;
}

.ret-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    min-width: 0;
}

.ret-box,
.ret-card {
    min-width: 0;
    border: 1px solid var(--ret-line);
    border-radius: var(--ret-radius-lg);
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-md);
}

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

.ret-section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.ret-section-heading .ret-button {
    min-height: 42px;
    max-height: 42px;
    padding: 0 16px;
}

.ret-card--event {
    overflow: hidden;
}

.ret-card-image {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(239, 185, 53, 0.18), rgba(255, 122, 24, 0.12)),
        #e8dfd1;
}

.ret-card-image img,
.ret-event-flyer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ret-card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.28), transparent 40%),
        radial-gradient(circle at bottom left, rgba(239, 185, 53, 0.2), transparent 35%),
        #181a1f;
}

.ret-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 220px;
}

.ret-card__meta {
    margin: 0 0 8px;
    color: var(--ret-accent-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ret-card h3,
.ret-card h4,
.ret-box h3 {
    margin: 0 0 10px;
}

.ret-card h3 a,
.ret-card h4 a {
    color: var(--ret-text);
    text-decoration: none;
}

.ret-card__venue {
    margin: 0;
    color: var(--ret-text-soft);
    line-height: 1.6;
}

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

.ret-card__price,
.ret-price-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: #15181f;
    color: var(--ret-text-inverse);
    font-weight: 800;
    justify-self: start;
}

.ret-card__footer .ret-button {
    flex: 0 0 auto;
    width: auto;
    min-width: 148px;
    min-height: 42px;
    max-height: 42px;
    padding: 0 18px;
    align-self: center;
}

.ret-home {
    max-width: var(--ret-container);
    margin: 0 auto;
    padding: 18px 18px 72px;
}

.ret-home__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 380px);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.3), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(239, 185, 53, 0.22), transparent 24%),
        linear-gradient(135deg, #121317 0%, #0b0c0e 100%);
    color: var(--ret-text-inverse);
    box-shadow: var(--ret-shadow-lg);
    overflow: hidden;
}

.ret-home__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ret-home__copy h1 {
    margin: 16px 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.ret-home__lead {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(248, 244, 236, 0.82);
}

.ret-home__actions,
.ret-home__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ret-home__trust {
    margin-top: 24px;
}

.ret-home__trust span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ret-line-dark);
    font-size: 13px;
    font-weight: 700;
}

.ret-home__panel-card {
    max-width: 380px;
    margin-left: auto;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ret-line-dark);
    backdrop-filter: blur(14px);
}

.ret-home__panel-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.ret-home__panel-card ol {
    margin: 0;
    padding-left: 18px;
    color: rgba(248, 244, 236, 0.84);
    line-height: 1.65;
}

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

.ret-home__benefit {
    padding: 24px;
    border-radius: 28px;
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-md);
    border: 1px solid var(--ret-line);
}

.ret-home__benefit h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.ret-home__benefit p {
    margin: 0;
    color: var(--ret-text-soft);
    line-height: 1.7;
}

.ret-home__events {
    margin-top: 40px;
}

.ret-events-page {
    max-width: var(--ret-container);
    width: min(calc(100vw - 24px), var(--ret-container));
    margin: 0 auto;
    padding: 18px 18px 64px;
}

.ret-page-shell {
    background:
        radial-gradient(circle at top, rgba(255, 122, 24, 0.22), transparent 32%),
        radial-gradient(circle at 20% 20%, rgba(255, 207, 74, 0.14), transparent 18%),
        linear-gradient(180deg, #111319 0%, #09090b 100%);
    color: var(--ret-text-inverse);
    margin: 0 calc(50% - 50vw);
    padding: 0;
}

.ret-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.ret-hero__backdrop,
.ret-hero__overlay {
    position: absolute;
    inset: 0;
}

.ret-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ret-hero__overlay {
    background:
        linear-gradient(90deg, rgba(8, 9, 12, 0.9) 0%, rgba(8, 9, 12, 0.64) 45%, rgba(8, 9, 12, 0.86) 100%),
        linear-gradient(180deg, rgba(8, 9, 12, 0.08) 0%, rgba(8, 9, 12, 0.88) 100%);
}

.ret-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
    gap: 32px;
    max-width: var(--ret-container);
    margin: 0 auto;
    padding: 40px 24px 56px;
    align-items: start;
}

.ret-hero__brand {
    grid-column: 1 / -1;
}

.ret-hero__logo {
    display: block;
    max-height: 68px;
    width: auto;
}

.ret-hero__titlemark {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}

.ret-event-detail {
    color: var(--ret-text-inverse);
}

.ret-event-title {
    margin: 10px 0 18px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 800;
    text-transform: uppercase;
}

.ret-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.ret-meta-pill {
    min-width: 180px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ret-meta-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}

.ret-lead {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ret-content--event {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.ret-ticket-types {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--ret-line-dark);
}

.ret-ticket-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ret-ticket-types li {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ret-line-dark);
}

.ret-buy-panel {
    position: sticky;
    top: 28px;
    border-radius: var(--ret-radius-lg);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ret-text);
    box-shadow: var(--ret-shadow-lg);
    overflow: hidden;
}

.ret-buy-panel .product {
    margin: 0;
    padding: 24px;
}

.ret-buy-panel .woocommerce-product-gallery,
.ret-buy-panel .woocommerce-tabs,
.ret-buy-panel .product_meta,
.ret-buy-panel .related,
.ret-buy-panel .upsells,
.ret-buy-panel .woocommerce-breadcrumb,
.ret-buy-panel h1.product_title,
.ret-buy-panel .price,
.ret-buy-panel .woocommerce-product-details__short-description {
    display: none !important;
}

.ret-buy-panel .summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.ret-event-inline-summary {
    margin: 18px 0 14px;
}

.ret-inline-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(239, 185, 53, 0.16);
    color: #805006;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ret-inline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.ret-inline-pills li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(17, 20, 24, 0.05);
    color: var(--ret-text-soft);
    font-size: 14px;
}

.woocommerce-page {
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.07), transparent 26%),
        radial-gradient(circle at left top, rgba(239, 185, 53, 0.08), transparent 24%),
        var(--ret-bg);
}

.woocommerce-page .wp-site-blocks,
.woocommerce-page .site-content,
.woocommerce-page .site-main {
    background: transparent;
}

.woocommerce-cart .wp-block-post-title,
.woocommerce-checkout .wp-block-post-title,
.woocommerce-account .wp-block-post-title,
.page .wp-block-post-title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title,
.page .entry-title,
.page .wp-block-query-title,
.page .wp-block-heading.is-style-ret-page-title,
.woocommerce-page .site-title,
.woocommerce-cart .wp-block-site-title,
.woocommerce-checkout .wp-block-site-title,
.woocommerce-account .wp-block-site-title,
.woocommerce-page .wp-block-site-title,
.woocommerce-page .wp-block-site-title a {
    display: none !important;
}

.woocommerce-page .entry-content,
.woocommerce-page .wp-block-post-content,
.woocommerce-page .wp-block-post-content.is-layout-flow,
.woocommerce-page .wp-block-post-content.is-layout-constrained,
.woocommerce-page .is-layout-constrained > :where(.woocommerce) {
    max-width: none !important;
}

.woocommerce-page .woocommerce,
.woocommerce-page .entry-content > .woocommerce,
.woocommerce-page .wp-block-post-content > .woocommerce {
    width: min(calc(100vw - 36px), var(--ret-container));
    max-width: var(--ret-container);
    margin: 0 auto;
    padding: 14px 18px 72px;
}

.woocommerce-page .page-title,
.woocommerce-page .entry-title,
.woocommerce-page .woocommerce-products-header__title.page-title {
    display: none !important;
}

.ret-page-home :where(.wp-block-post-title, .entry-title, .page-title),
.ret-page-events :where(.wp-block-post-title, .entry-title, .page-title, .woocommerce-products-header__title),
.ret-page-cart :where(.wp-block-post-title, .entry-title, .page-title),
.ret-page-checkout :where(.wp-block-post-title, .entry-title, .page-title),
.ret-page-ticket-lookup :where(.wp-block-post-title, .entry-title, .page-title),
.ret-page-events main > h1:first-child,
.ret-page-events .wp-site-blocks > h1:first-child {
    display: none !important;
}

.ret-page-events .entry-content > .ret-events-page:first-child,
.ret-page-events .wp-block-post-content > .ret-events-page:first-child {
    margin-top: 0;
}

.woocommerce .woocommerce-notices-wrapper,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.wc-block-components-notice-banner {
    border: 0;
    border-radius: 18px;
    box-shadow: var(--ret-shadow-md);
}

.woocommerce .woocommerce-message {
    background: #eff7f1;
}

.woocommerce .woocommerce-error {
    background: #fff0f2;
}

.woocommerce .woocommerce-info {
    background: #f6f2e8;
}

.wc-block-components-notice-banner {
    margin: 0 0 18px !important;
    padding: 16px 18px !important;
    border: 0 !important;
    background: #eff7f1 !important;
    color: var(--ret-text) !important;
}

.wc-block-components-notice-banner.is-error {
    background: #fff0f2 !important;
}

.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-default {
    background: #f6f2e8 !important;
}

.single-product .woocommerce-breadcrumb,
.woocommerce-shop .woocommerce-breadcrumb,
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb,
.woocommerce-shop .woocommerce-result-count,
.woocommerce-shop .woocommerce-ordering,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-result-count,
.tax-product_cat .woocommerce-ordering,
.woocommerce-products-header {
    display: none !important;
}

.single-product .woocommerce-notices-wrapper,
.woocommerce-shop .woocommerce-notices-wrapper,
.post-type-archive-product .woocommerce-notices-wrapper,
.tax-product_cat .woocommerce-notices-wrapper {
    width: min(calc(100vw - 28px), var(--ret-container));
    max-width: var(--ret-container);
    margin: 16px auto 0;
    padding: 0;
}

.woocommerce .woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 16px 18px;
    overflow: hidden;
    color: var(--ret-text);
    line-height: 1.45;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.wc-block-components-notice-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 1.45;
}

.woocommerce .woocommerce-message > *,
.woocommerce .woocommerce-info > *,
.woocommerce .woocommerce-error > *,
.wc-block-components-notice-banner__content {
    min-width: 0;
}

.woocommerce .woocommerce-message::before {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin: 0;
}

.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
}

.wc-block-components-notice-banner > svg {
    width: 24px;
    height: 24px;
    margin: 2px 0 0 !important;
    flex: 0 0 auto;
}

.wc-block-components-notice-banner__content {
    display: grid;
    gap: 10px;
}

.wc-block-components-notice-banner__content > * {
    margin: 0;
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-message a.button.wc-forward,
.wc-block-components-notice-banner .wc-forward,
.wc-block-components-notice-banner .wc-block-components-button,
.wc-block-components-notice-banner a.button {
    order: 3;
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 38px;
    max-height: 38px;
    margin: 0 0 0 auto;
    padding: 0 14px;
    white-space: nowrap;
}

.wc-block-components-notice-banner a {
    overflow-wrap: anywhere;
}

.ret-shop-intro {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 0 0 26px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--ret-line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 86% 8%, rgba(255, 122, 24, 0.2), transparent 28%),
        radial-gradient(circle at 12% 0%, rgba(239, 185, 53, 0.18), transparent 24%),
        linear-gradient(135deg, #15171d 0%, #0c0d10 100%);
    color: var(--ret-text-inverse);
    box-shadow: var(--ret-shadow-lg);
}

.ret-shop-intro h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.ret-shop-intro p {
    max-width: 620px;
    margin: 0;
    color: rgba(248, 244, 236, 0.78);
    font-size: 17px;
    line-height: 1.6;
}

.ret-shop-intro__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.ret-shop-intro__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 244, 236, 0.86);
    font-size: 13px;
    font-weight: 800;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0;
    width: 100%;
    min-width: 0;
}

.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 0 22px;
    overflow: hidden;
    border: 1px solid var(--ret-line);
    border-radius: 28px;
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-md);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: var(--ret-text);
    text-decoration: none;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 18px 20px 6px;
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    min-height: 84px;
}

.woocommerce ul.products li.product .price {
    display: block;
    padding: 0 20px;
    color: var(--ret-text);
    font-size: 22px;
    font-weight: 800;
}

.woocommerce ul.products li.product .button {
    width: auto;
    min-width: 148px;
    max-width: calc(100% - 40px);
    margin: auto 20px 0;
    text-align: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    max-height: 42px;
    padding: 0 18px;
}

.single-product .woocommerce div.product {
    max-width: var(--ret-container);
    margin: 0 auto;
    padding: 24px 18px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
}

.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary {
    float: none;
    width: auto;
    margin: 0;
}

.single-product .woocommerce div.product div.images {
    padding: 24px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fef6ea 0%, #ffffff 100%);
    box-shadow: var(--ret-shadow-md);
}

.single-product .woocommerce div.product .summary {
    padding: 28px;
    border-radius: 32px;
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-lg);
}

.single-product .woocommerce div.product .product_title {
    margin: 0 0 12px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
    margin-bottom: 16px;
    color: var(--ret-text);
    font-size: 32px;
    font-weight: 800;
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--ret-text-soft);
    line-height: 1.75;
}

.single-product .woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--ret-line);
}

.single-product .woocommerce .quantity .qty,
.woocommerce-cart .quantity .qty {
    min-height: 50px;
    min-width: 82px;
    border-radius: 14px;
    border: 1px solid var(--ret-line);
    background: #fff;
    text-align: center;
    font-weight: 700;
}

.woocommerce table.shop_table {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-md);
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

.woocommerce table.shop_table thead th {
    padding: 22px 18px;
    background: #181b22;
    color: var(--ret-text-inverse);
    border-color: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    padding: 20px 18px;
    border-color: var(--ret-line);
    vertical-align: middle;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout.woocommerce-checkout,
.woocommerce-account .woocommerce {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.woocommerce-cart .cart-collaterals {
    margin-top: 26px;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .col2-set,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    border-radius: 28px;
    background: var(--ret-surface);
    box-shadow: var(--ret-shadow-md);
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .col2-set {
    padding: 24px;
}

.woocommerce-cart .cart_totals {
    max-width: 520px;
    margin-left: auto;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    font-size: 15px;
}

.woocommerce-cart button[name="update_cart"],
.woocommerce-cart input[name="update_cart"] {
    display: none !important;
}

.woocommerce-cart .product-remove a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(209, 31, 62, 0.08);
    color: var(--ret-danger) !important;
    font-weight: 800;
}

.woocommerce-cart td.product-thumbnail img {
    width: 92px;
    border-radius: 18px;
}

.woocommerce-checkout form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 420px);
    gap: 36px;
    align-items: start;
    width: 100%;
}

.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout > h3,
.woocommerce-checkout > p {
    grid-column: 1 / -1;
}

.woocommerce-checkout #customer_details {
    grid-column: 1;
    min-width: 0;
}

.woocommerce-checkout .col2-set {
    margin: 0;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
}

.woocommerce-checkout .col2-set .col-2 {
    margin-top: 18px;
}

.woocommerce-checkout #order_review_heading {
    display: none;
}

.woocommerce-checkout #order_review {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    max-width: none;
    align-self: start;
    position: sticky;
    top: 24px;
}

.woocommerce-checkout #order_review::before {
    content: 'Tu pedido';
    display: block;
    margin-bottom: 18px;
    padding: 0 4px;
    color: var(--ret-text-soft);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout #payment {
    width: 100%;
}

.woocommerce-checkout #payment {
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
}

.woocommerce-checkout #payment div.payment_box {
    margin: 14px 0 0 !important;
    padding: 18px 20px !important;
    border-radius: 18px !important;
    background: rgba(17, 20, 24, 0.06) !important;
    color: var(--ret-text-soft);
}

.woocommerce-checkout #payment .place-order {
    display: grid;
    gap: 16px;
    padding-top: 22px !important;
}

.woocommerce-checkout #payment #place_order {
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    justify-content: center;
}

.woocommerce form .form-row {
    margin: 0 0 16px;
}

.woocommerce form .form-row label {
    margin-bottom: 8px;
    color: var(--ret-text);
    font-weight: 700;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.ret-scanner input,
.ret-scanner select,
.ret-scanner-access input,
.ret-lookup-form input {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    border: 1px solid var(--ret-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    font-size: 15px;
}

.woocommerce form .form-row textarea {
    min-height: 120px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.ret-scanner input:focus,
.ret-scanner select:focus,
.ret-scanner-access input:focus,
.ret-lookup-form input:focus {
    outline: none;
    border-color: rgba(255, 122, 24, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    font-size: 18px;
}

.woocommerce-checkout .payment_methods {
    border-radius: 18px;
    border: 1px solid var(--ret-line) !important;
    background: var(--ret-bg-soft);
}

.woocommerce-checkout .payment_methods > li {
    padding: 14px 16px !important;
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .woocommerce-privacy-policy-link,
.woocommerce-checkout .mailpoet-newsletter-position-below-checkout-form,
.woocommerce-checkout .mailpoet-paragraph,
.woocommerce-checkout #mailpoet_woocommerce_checkout_optin_field,
.woocommerce-checkout .wc-points-and-rewards-redeem-form,
.woocommerce-checkout label[for*="mailpoet"],
.woocommerce-checkout [class*="mailpoet"],
.woocommerce-checkout [id*="mailpoet"] {
    display: none !important;
}

.woocommerce-account .woocommerce {
    max-width: var(--ret-container);
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--ret-text);
    text-decoration: none;
    font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(239, 185, 53, 0.16);
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 24px;
}

.ret-lookup-form,
.ret-scanner,
.ret-box {
    padding: 24px;
}

.ret-scanner {
    position: relative;
    padding: 0 !important;
    border: 0;
    border-radius: 32px;
    background: #090b0e;
    box-shadow: var(--ret-shadow-lg);
    overflow: hidden;
    min-height: clamp(620px, calc(100dvh - 118px), 940px);
}

body.ret-scanner-mode .ret-scanner {
    min-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
}

.ret-scanner [hidden],
.ret-scanner__modal[hidden] {
    display: none !important;
}

.ret-scanner-access {
    display: grid;
    gap: 18px;
    max-width: 560px;
    margin: 0 auto;
}

.ret-scanner-access__form {
    display: grid;
    gap: 14px;
}

.ret-scanner-access__form .ret-button {
    width: 100%;
}

.ret-scanner__banner {
    margin: 0 0 16px;
    padding: 16px 18px;
    border: 1px solid var(--ret-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ret-shadow-md);
}

.ret-scanner__banner strong {
    display: block;
}

.ret-scanner__banner--success {
    background: #effaf4;
    border-color: rgba(22, 124, 82, 0.2);
}

.ret-scanner__banner--warning {
    background: #fff7e8;
    border-color: rgba(239, 185, 53, 0.34);
}

.ret-scanner__banner--error {
    background: #fff0f2;
    border-color: rgba(209, 31, 62, 0.22);
}

.ret-scanner__viewport {
    position: relative;
    min-height: inherit;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 32%),
        linear-gradient(135deg, #0d0f13 0%, #050608 100%);
}

.ret-scanner__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(239, 185, 53, 0.18);
    color: #f7c14b;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    backdrop-filter: blur(12px);
}

.ret-scanner__logout {
    display: inline-flex;
    margin: 0;
}

.ret-scanner__topbar {
    position: absolute;
    inset: 0 0 auto;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 22px;
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.82) 0%, rgba(6, 7, 10, 0.32) 72%, rgba(6, 7, 10, 0) 100%);
}

.ret-scanner__event-summary {
    display: grid;
    gap: 10px;
    max-width: 520px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(12, 14, 18, 0.52);
    backdrop-filter: blur(18px);
}

.ret-scanner__event-summary strong {
    display: block;
    color: var(--ret-text-inverse);
    font-size: clamp(24px, 4vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.ret-scanner__event-summary [data-role="event-meta"] {
    color: rgba(248, 244, 236, 0.74);
    line-height: 1.6;
}

.ret-scanner__toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    max-width: 520px;
}

.ret-scanner__toolbar .ret-button {
    min-height: 40px;
    max-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    box-shadow: none;
}

.ret-scanner__toolbar .ret-button-secondary {
    background: rgba(12, 14, 18, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--ret-text-inverse) !important;
}

.ret-scanner__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

.ret-scanner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ret-scanner__overlay span {
    width: min(72%, 320px);
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    box-shadow: 0 0 0 999px rgba(8, 10, 12, 0.26);
}

.ret-scanner__camera-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 24px;
    text-align: center;
    color: rgba(248, 244, 236, 0.88);
}

.ret-scanner__camera-placeholder strong {
    font-size: 24px;
}

.ret-scanner__camera-placeholder p {
    max-width: 420px;
    margin: 0 auto;
    color: rgba(248, 244, 236, 0.72);
    line-height: 1.7;
}

.ret-scanner__label {
    display: block;
    font-weight: 800;
}

.ret-scanner__setup {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 9, 12, 0.58);
    backdrop-filter: blur(10px);
}

.ret-scanner__setup-card {
    width: min(100%, 560px);
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--ret-shadow-lg);
}

.ret-scanner__logout--setup .ret-button {
    width: 100%;
}

.ret-scanner__setup-card h3 {
    margin: 0;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.ret-scanner__setup-card p {
    margin: 0;
    color: var(--ret-text-soft);
    line-height: 1.7;
}

.ret-scanner__setup-actions .ret-button {
    width: 100%;
}

.ret-scanner__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.ret-scanner__modal[hidden] {
    display: none !important;
}

.ret-scanner__modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 8, 12, 0.72);
}

.ret-scanner__modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    display: grid;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--ret-line);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(8, 10, 12, 0.35);
}

.ret-scanner__modal-card--success {
    background: linear-gradient(180deg, #0f8d58 0%, #0b6f45 100%);
    border-color: rgba(22, 124, 82, 0.3);
    color: #f7fff9;
}

.ret-scanner__modal-card--warning {
    background: linear-gradient(180deg, #f3a81c 0%, #d98809 100%);
    border-color: rgba(239, 185, 53, 0.45);
    color: #2c1600;
}

.ret-scanner__modal-card--error {
    background: linear-gradient(180deg, #d73653 0%, #b1203b 100%);
    border-color: rgba(209, 31, 62, 0.3);
    color: #fff6f8;
}

.ret-scanner__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 20, 24, 0.12);
    color: currentColor;
    font-size: 26px;
    cursor: pointer;
}

.ret-scanner__modal-body {
    display: grid;
    gap: 12px;
}

.ret-scanner__modal-body h3 {
    margin: 0;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.ret-scanner__modal-body p {
    margin: 0;
    color: var(--ret-text-soft);
    line-height: 1.7;
}

.ret-scanner__modal-card--success .ret-scanner__modal-body p,
.ret-scanner__modal-card--error .ret-scanner__modal-body p {
    color: rgba(255, 255, 255, 0.86);
}

.ret-scanner__modal-card--warning .ret-scanner__modal-body p {
    color: rgba(44, 22, 0, 0.78);
}

.ret-scanner__modal-meta {
    display: grid;
    gap: 12px;
}

.ret-scanner__modal-actions .ret-button {
    width: 100%;
}

.ret-scanner__modal-meta .ret-scan-result__meta {
    margin-top: 0;
}

.ret-scanner__modal-meta .ret-scan-result__meta div {
    background: rgba(255, 255, 255, 0.12);
}

.ret-scanner__modal-card--warning .ret-scanner__modal-meta .ret-scan-result__meta div {
    background: rgba(255, 255, 255, 0.26);
}

.ret-scanner__modal-card--success .ret-scan-result__meta dt,
.ret-scanner__modal-card--success .ret-scan-result__meta dd,
.ret-scanner__modal-card--error .ret-scan-result__meta dt,
.ret-scanner__modal-card--error .ret-scan-result__meta dd {
    color: #fff;
}

.ret-scanner__modal-card--warning .ret-scan-result__meta dt,
.ret-scanner__modal-card--warning .ret-scan-result__meta dd {
    color: #2c1600;
}

.ret-scanner__modal-card .ret-button {
    box-shadow: none;
}

.ret-scanner__modal-card--success .ret-button {
    background: #ffffff !important;
    color: #0f7c4d !important;
}

.ret-scanner__modal-card--warning .ret-button {
    background: #1c212b !important;
    color: #fff !important;
}

.ret-scanner__modal-card--error .ret-button {
    background: #ffffff !important;
    color: #b1203b !important;
}

body.ret-scanner-modal-open {
    overflow: hidden;
}

html.ret-scanner-mode,
body.ret-scanner-mode {
    height: 100dvh;
    overflow: hidden;
}

body.ret-scanner-mode .ret-quick-nav,
body.ret-scanner-mode .entry-title,
body.ret-scanner-mode .wp-block-post-title,
body.ret-scanner-mode .wp-block-template-part,
body.ret-scanner-mode footer,
body.ret-scanner-mode .site-footer,
body.ret-scanner-mode .wp-site-blocks > header,
body.ret-scanner-mode .wp-site-blocks > footer {
    display: none !important;
}

body.ret-scanner-mode .wp-site-blocks,
body.ret-scanner-mode main,
body.ret-scanner-mode .entry-content,
body.ret-scanner-mode .post,
body.ret-scanner-mode article,
body.ret-scanner-mode .is-layout-constrained {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ret-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ret-ticket-qr {
    display: block;
    max-width: 180px;
    height: auto;
    background: #fff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.06);
}

.ret-scan-result,
.ret-lookup-message {
    margin-top: 14px;
    color: var(--ret-text);
    font-weight: 700;
}

.ret-scan-result {
    margin-top: 0;
    padding: 18px 20px;
    border: 1px solid var(--ret-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ret-shadow-md);
}

.ret-scan-result strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
}

.ret-scan-result p {
    margin: 0;
    color: var(--ret-text-soft);
    line-height: 1.6;
}

.ret-scan-result--idle,
.ret-scan-result--info {
    background: #fffaf2;
}

.ret-scan-result--success {
    background: #effaf4;
    border-color: rgba(22, 124, 82, 0.2);
}

.ret-scan-result--warning {
    background: #fff7e8;
    border-color: rgba(239, 185, 53, 0.34);
}

.ret-scan-result--error {
    background: #fff0f2;
    border-color: rgba(209, 31, 62, 0.22);
}

.ret-scan-result__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 14px 0 0;
}

.ret-scan-result__meta div {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(17, 20, 24, 0.04);
}

.ret-scan-result__meta dt {
    margin: 0 0 4px;
    color: var(--ret-text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ret-scan-result__meta dd {
    margin: 0;
    color: var(--ret-text);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .ret-home__hero,
    .single-product .woocommerce div.product,
    .woocommerce-checkout form.checkout.woocommerce-checkout,
    .woocommerce-account .woocommerce,
    .ret-hero__inner {
        grid-template-columns: 1fr;
    }

    .ret-buy-panel,
    .woocommerce-checkout #order_review {
        position: static;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
    }
}

@media (max-width: 780px) {
    .ret-quick-nav {
        padding: 8px 8px 0;
    }

    .ret-quick-nav__inner {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px;
        border-radius: 22px;
        width: 100%;
        max-width: 100%;
    }

    .ret-quick-nav__cart span {
        display: none;
    }

    .ret-quick-nav__brand {
        display: flex;
        width: 44px;
        max-width: 44px;
        min-width: 0;
        overflow: hidden;
    }

    .ret-quick-nav__logo {
        width: auto !important;
        max-inline-size: 44px !important;
        max-width: 44px !important;
        height: 24px !important;
        max-height: 24px !important;
        object-fit: contain;
        object-position: left center;
    }

    .woocommerce-page .ret-quick-nav__logo {
        max-inline-size: 42px !important;
        max-width: 42px !important;
        height: 22px !important;
        max-height: 22px !important;
    }

    .ret-quick-nav__links {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 0;
        min-width: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ret-quick-nav__links::-webkit-scrollbar {
        display: none;
    }

    .ret-quick-nav__link {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .ret-quick-nav__cart {
        min-height: 34px;
        padding: 0 8px;
        gap: 0;
    }

    .ret-quick-nav__cart strong {
        min-width: 24px;
        height: 24px;
        padding: 0 7px;
        font-size: 12px;
    }

    .ret-home {
        padding: 12px 12px 52px;
    }

    .ret-home__hero,
    .ret-home__benefits,
    .ret-events-page,
    .woocommerce-page .woocommerce,
    .single-product .woocommerce div.product {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ret-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .products[class*="columns-"] {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    .woocommerce .products[class*="columns-"] li.product {
        float: none !important;
        clear: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .woocommerce-result-count,
    .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
        margin: 0 0 14px !important;
    }

    .woocommerce-ordering select {
        width: 100%;
    }

    .ret-home__hero,
    .single-product .woocommerce div.product,
    .woocommerce-checkout form.checkout.woocommerce-checkout,
    .woocommerce-account .woocommerce,
    .ret-hero__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .ret-home__hero,
    .ret-home__benefits {
        gap: 16px;
    }

    .ret-shop-intro {
        margin-bottom: 20px;
        padding: 24px;
        border-radius: 28px;
    }

    .ret-shop-intro__chips span {
        min-height: 34px;
        font-size: 12px;
    }

    .ret-home__benefits {
        grid-template-columns: 1fr;
    }

    .ret-card__footer,
    .ret-section-heading,
    .ret-home__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ret-card__footer .ret-button,
    .woocommerce ul.products li.product .button {
        width: 100%;
        max-width: none;
        min-width: 0;
        align-self: stretch;
    }

    .ret-home__panel-card {
        max-width: none;
        margin-left: 0;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 0;
        padding-top: 16px;
        font-size: 24px;
    }

    .woocommerce ul.products li.product a img {
        aspect-ratio: 16 / 9;
    }

    .woocommerce .woocommerce-message {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 10px 12px;
        margin-bottom: 16px;
        padding: 14px;
    }

    .woocommerce .woocommerce-message .button,
    .woocommerce .woocommerce-message a.button.wc-forward,
    .wc-block-components-notice-banner .wc-forward,
    .wc-block-components-notice-banner .wc-block-components-button,
    .wc-block-components-notice-banner a.button {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        margin: 2px 0 0 !important;
        justify-self: stretch;
    }

    .woocommerce table.shop_table thead {
        display: none;
    }

    .woocommerce table.shop_table,
    .woocommerce table.shop_table tbody,
    .woocommerce table.shop_table tfoot,
    .woocommerce table.shop_table tr,
    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .woocommerce table.shop_table_responsive tr,
    .woocommerce-page table.shop_table_responsive tr {
        display: grid;
        gap: 8px;
        padding: 12px 0;
    }

    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto);
        gap: 14px;
        align-items: center;
        text-align: right !important;
        padding: 10px 14px;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        float: none;
        text-align: left;
        color: var(--ret-text-soft);
        font-weight: 700;
        min-width: 0;
    }

    .woocommerce-cart table.cart td.product-remove,
    .woocommerce-cart table.cart td.product-thumbnail {
        display: flex !important;
        justify-content: flex-start;
        text-align: left !important;
    }

    .woocommerce-cart table.cart td.product-remove::before,
    .woocommerce-cart table.cart td.product-thumbnail::before,
    .woocommerce-cart table.cart td.actions::before {
        display: none;
    }

    .woocommerce-cart table.cart td.product-name,
    .woocommerce-cart table.cart td.product-price,
    .woocommerce-cart table.cart td.product-quantity,
    .woocommerce-cart table.cart td.product-subtotal {
        grid-template-columns: minmax(90px, 0.65fr) minmax(0, 1fr);
    }

    .woocommerce-cart table.cart td.actions {
        display: block !important;
        padding: 12px 14px 16px;
        text-align: left !important;
    }

    .woocommerce-cart .quantity .qty {
        width: 100%;
        min-width: 76px;
        max-width: 116px;
        justify-self: end;
    }

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review {
        padding: 18px;
    }

    .woocommerce-checkout #order_review_heading {
        font-size: 21px;
    }

    .ret-button,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #respond input#submit {
        min-height: 42px;
        max-height: 48px;
        padding: 0 16px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .ret-quick-nav {
        padding: 10px 10px 0;
    }

    .ret-quick-nav__inner {
        grid-template-columns: 32px minmax(0, 1fr) 52px;
        align-items: center;
        gap: 6px;
        min-height: 72px;
        padding: 10px 12px;
        border-radius: 22px;
    }

    .ret-quick-nav__links {
        justify-content: center;
        overflow: visible;
        flex-wrap: nowrap;
        gap: 4px;
        width: 100%;
        min-width: 0;
    }

    .ret-quick-nav__link {
        min-height: 32px;
        padding: 0 7px;
        font-size: 11px;
    }

    .ret-quick-nav__brand {
        width: 32px;
        max-width: 32px;
    }

    .ret-quick-nav__logo,
    .woocommerce-page .ret-quick-nav__logo {
        max-inline-size: 30px !important;
        max-width: 30px !important;
        height: 22px !important;
        max-height: 22px !important;
    }

    .ret-quick-nav__cart {
        justify-content: center;
        width: 52px;
        min-width: 52px;
        padding: 0;
    }

    .ret-home,
    .ret-events-page,
    .woocommerce-page .woocommerce,
    .single-product .woocommerce div.product {
        width: min(calc(100vw - 16px), var(--ret-container));
        padding-left: 10px;
        padding-right: 10px;
    }

    .ret-home__hero,
    .ret-card,
    .woocommerce-cart .cart_totals,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout .col2-set {
        border-radius: 22px;
    }

    .ret-home__hero {
        padding: 22px;
    }

    .ret-events-page {
        padding-top: 16px;
    }

    .ret-grid {
        gap: 16px;
    }

    .ret-card-image {
        aspect-ratio: 16 / 11;
    }

    .ret-card__body {
        min-height: 0;
        padding: 16px;
    }

    .ret-card__footer {
        gap: 10px;
        padding-top: 8px;
    }

    .ret-card__price,
    .ret-price-badge {
        width: auto;
        justify-content: center;
        padding: 10px 14px;
        font-size: 16px;
    }

    .ret-card__footer .ret-button {
        min-height: 42px;
        max-height: 44px;
    }

    .ret-scanner {
        min-height: calc(100dvh - 24px);
        border-radius: 28px;
    }

    body.ret-scanner-mode .ret-scanner {
        min-height: 100dvh;
        border-radius: 0;
    }

    .ret-scanner__topbar {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .ret-scanner__toolbar {
        justify-content: stretch;
    }

    .ret-scanner__toolbar .ret-button {
        width: auto;
    }

    .ret-scanner__setup {
        padding: 14px;
    }

    .ret-scanner__setup-card,
    .ret-scanner__modal-card {
        padding: 22px;
        border-radius: 24px;
    }

    .ret-scanner__overlay span {
        width: min(74vw, 260px);
        border-radius: 22px;
    }

    .ret-shop-intro {
        padding: 22px;
        border-radius: 24px;
    }

    .ret-shop-intro h1 {
        font-size: clamp(34px, 12vw, 46px);
    }

    .single-product .woocommerce-notices-wrapper,
    .woocommerce-shop .woocommerce-notices-wrapper,
    .post-type-archive-product .woocommerce-notices-wrapper,
    .tax-product_cat .woocommerce-notices-wrapper {
        width: min(calc(100vw - 16px), var(--ret-container));
        margin-top: 12px;
    }

    .ret-home__trust span,
    .ret-inline-pills li {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        padding: 14px 12px;
    }

    .woocommerce-cart .cart_totals {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .woocommerce-cart .cart_totals table,
    .woocommerce-cart .cart_totals tbody,
    .woocommerce-cart .cart_totals tr,
    .woocommerce-cart .cart_totals th,
    .woocommerce-cart .cart_totals td {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .woocommerce-cart .cart_totals tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto);
        gap: 12px;
        align-items: center;
    }

    .woocommerce-cart table.cart td.product-name,
    .woocommerce-cart table.cart td.product-price,
    .woocommerce-cart table.cart td.product-quantity,
    .woocommerce-cart table.cart td.product-subtotal {
        grid-template-columns: minmax(82px, 0.75fr) minmax(0, 1fr);
    }

    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        overflow: hidden;
    }

    .ret-home__copy h1,
    .woocommerce-page .page-title,
    .woocommerce-page .entry-title,
    .woocommerce-page .woocommerce-products-header__title.page-title,
    .single-product .woocommerce div.product .product_title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .ret-event-title {
        font-size: clamp(34px, 11vw, 50px);
    }
}
