:root {
    --wp-primary: #7A1E3A;
    --wp-secondary: #F7E9DF;
    --wp-accent: #D8A45F;
    --wp-background: #FFF8F2;
    --wp-surface: #FFFFFF;
    --wp-text: #2B1B1B;
    --wp-muted: #7C6666;
    --wp-border: rgba(122, 30, 58, 0.16);
    --wp-shadow: 0 18px 50px rgba(53, 29, 29, 0.10);
}

* {
    box-sizing: border-box;
}

body.wp-page {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--wp-background), #fff);
    color: var(--wp-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.wp-header,
.wp-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.wp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}

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

.wp-brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--wp-primary);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.wp-brand-copy {
    display: grid;
    gap: 2px;
}

.wp-brand-copy strong {
    font-size: 1rem;
}

.wp-brand-copy small,
.wp-muted {
    color: var(--wp-muted);
}

.wp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wp-nav a {
    border: 1px solid var(--wp-border);
    border-radius: 999px;
    padding: 9px 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    color: var(--wp-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.wp-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.wp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.wp-hero-copy,
.wp-hero-card,
.wp-panel,
.wp-placeholder,
.wp-contact-strip {
    border: 1px solid var(--wp-border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--wp-shadow);
}

.wp-hero-copy {
    padding: clamp(28px, 5vw, 58px);
}

.wp-eyebrow {
    margin: 0 0 12px;
    color: var(--wp-primary);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.wp-hero h1,
.wp-placeholder h1 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.wp-hero p,
.wp-placeholder p,
.wp-panel p {
    color: var(--wp-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.wp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
}

.wp-btn-primary {
    background: var(--wp-primary);
    color: #fff;
}

.wp-btn-secondary {
    background: var(--wp-secondary);
    color: var(--wp-primary);
    border-color: var(--wp-border);
}

.wp-hero-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wp-hero-card strong {
    font-size: 1.2rem;
    color: var(--wp-primary);
}

.wp-hero-card li {
    margin: 10px 0;
    color: var(--wp-muted);
}

.wp-section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.wp-panel {
    padding: 24px;
}

.wp-panel h2 {
    margin: 0 0 10px;
    color: var(--wp-primary);
}

.wp-contact-strip {
    margin-top: 18px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--wp-primary);
}

.wp-placeholder {
    padding: clamp(28px, 5vw, 56px);
}

.wp-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0 30px;
    color: var(--wp-muted);
    font-size: 0.92rem;
}

@media (max-width: 820px) {
    .wp-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .wp-nav {
        width: 100%;
    }

    .wp-nav a {
        flex: 1 1 auto;
        text-align: center;
    }

    .wp-hero,
    .wp-section-grid {
        grid-template-columns: 1fr;
    }

    .wp-contact-strip,
    .wp-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .wp-header,
    .wp-main,
    .wp-footer {
        width: min(100% - 20px, 1180px);
    }

    .wp-hero-copy,
    .wp-hero-card,
    .wp-panel,
    .wp-placeholder {
        border-radius: 22px;
    }

    .wp-actions {
        flex-direction: column;
    }

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

/* WEB-PAST-03 — web navegable: home, catálogo, PDP */
.wp-section,
.wp-catalog-hero,
.wp-product-detail {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
}

.wp-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, .8fr);
    gap: 24px;
    align-items: stretch;
    padding: 38px;
    background: linear-gradient(135deg, #fff, var(--wp-soft, #fff3f6));
    border: 1px solid rgba(122, 37, 64, .16);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(79, 37, 47, .08);
}

.wp-hero h1,
.wp-catalog-hero h1,
.wp-pdp-info h1 {
    margin: 0;
    font-size: clamp(2.1rem, 6vw, 4.8rem);
    line-height: .95;
    letter-spacing: -.06em;
    color: var(--wp-text, #2d1f23);
}

.wp-hero p,
.wp-catalog-hero p,
.wp-pdp-description {
    color: var(--wp-muted, #7c696e);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 760px;
}

.wp-eyebrow {
    margin: 0 0 12px;
    color: var(--wp-primary, #8a1740);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}

.wp-hero-actions,
.wp-pdp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.wp-hero-card {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(122,37,64,.14);
}

.wp-hero-card span,
.wp-hero-card small {
    color: var(--wp-muted, #7c696e);
}

.wp-hero-card strong {
    font-size: 1.35rem;
    color: var(--wp-primary, #8a1740);
}

.wp-section-head,
.wp-catalog-hero {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
}

.wp-section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--wp-text, #2d1f23);
}

.wp-section-head a {
    color: var(--wp-primary, #8a1740);
    font-weight: 800;
    text-decoration: none;
}

.wp-category-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-chip {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(122,37,64,.16);
    color: var(--wp-primary, #8a1740);
    font-weight: 800;
}

.wp-chip small {
    color: var(--wp-muted, #7c696e);
}

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

.wp-product-card,
.wp-empty-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(122,37,64,.12);
    box-shadow: 0 18px 44px rgba(54, 34, 39, .07);
}

.wp-product-image {
    display: block;
    aspect-ratio: 1 / 1;
    background: #fff4f7;
    overflow: hidden;
}

.wp-product-image img,
.wp-pdp-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-product-body {
    padding: 18px;
}

.wp-product-category,
.wp-product-meta,
.wp-servings {
    color: var(--wp-muted, #7c696e);
    font-size: .82rem;
    margin: 0 0 8px;
}

.wp-product-card h2 {
    margin: 0 0 6px;
    font-size: 1.04rem;
    line-height: 1.25;
}

.wp-product-card h2 a {
    color: var(--wp-text, #2d1f23);
    text-decoration: none;
}

.wp-price-row {
    margin: 16px 0;
    padding: 12px;
    border-radius: 16px;
    background: var(--wp-soft, #fff3f6);
    display: flex;
    justify-content: space-between;
    color: var(--wp-muted, #7c696e);
}

.wp-price-row strong,
.wp-pdp-price strong {
    color: var(--wp-primary, #8a1740);
}

.wp-button-block { width: 100%; justify-content: center; }

.wp-empty-card {
    grid-column: 1 / -1;
    padding: 28px;
}

.wp-product-detail {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

.wp-pdp-gallery,
.wp-pdp-info {
    padding: 22px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(122,37,64,.13);
    box-shadow: 0 18px 50px rgba(54, 34, 39, .07);
}

.wp-pdp-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: #fff4f7;
}

.wp-pdp-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.wp-pdp-thumbs img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(122,37,64,.14);
}

.wp-pdp-price {
    font-size: 1.25rem;
    color: var(--wp-muted, #7c696e);
}

.wp-option-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: var(--wp-soft, #fff3f6);
}

.wp-option-box h2 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.wp-option-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(122,37,64,.12);
}

.wp-option-row:last-child { border-bottom: 0; }

.wp-variety-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wp-variety-list span {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    color: var(--wp-primary, #8a1740);
    font-weight: 700;
}

@media (max-width: 980px) {
    .wp-hero,
    .wp-product-detail {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .wp-hero,
    .wp-catalog-hero,
    .wp-section,
    .wp-product-detail {
        width: min(100% - 20px, 1180px);
    }

    .wp-hero {
        padding: 24px;
        border-radius: 24px;
    }

    .wp-section-head,
    .wp-catalog-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .wp-product-grid {
        grid-template-columns: 1fr;
    }
}
.wp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(122,37,64,.18);
}
.wp-button-primary { background: var(--wp-primary, #8a1740); color: #fff; }
.wp-button-secondary { background: #fff; color: var(--wp-primary, #8a1740); }


/* WEB-PAST-04A — Carro conectado */
.wp-cart-badge {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--wp-primary);
    color: #fff;
    font-size: 0.72rem;
    margin-left: 4px;
}

.wp-purchase-box {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.wp-option-box--selectable {
    background: rgba(255, 255, 255, 0.7);
}

.wp-choice-list {
    display: grid;
    gap: 10px;
}

.wp-choice-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-choice-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--wp-border);
    border-radius: 18px;
    padding: 12px 14px;
    background: #fff;
    cursor: pointer;
}

.wp-choice-card:has(input:checked) {
    border-color: var(--wp-primary);
    box-shadow: 0 0 0 3px rgba(122, 30, 58, 0.08);
}

.wp-choice-card small {
    grid-column: 2 / -1;
    color: var(--wp-muted);
}

.wp-purchase-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.wp-quantity-field {
    display: grid;
    gap: 6px;
    color: var(--wp-muted);
    font-weight: 700;
}

.wp-quantity-field input {
    width: 100px;
    border: 1px solid var(--wp-border);
    border-radius: 16px;
    padding: 12px;
    font: inherit;
    color: var(--wp-text);
}

.wp-form-status {
    min-height: 22px;
    color: var(--wp-muted);
    font-weight: 700;
}

.wp-form-status[data-tone="success"] { color: #047857; }
.wp-form-status[data-tone="error"] { color: #991b1b; }
.wp-form-status[data-tone="loading"] { color: #7c2d12; }

.wp-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.wp-section-head h1 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.wp-cart-page,
.wp-checkout-page {
    padding: clamp(22px, 4vw, 42px);
}

.wp-cart-items {
    display: grid;
    gap: 12px;
}

.wp-cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--wp-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    padding: 14px;
}

.wp-cart-item h2,
.wp-cart-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.wp-cart-item p,
.wp-cart-item small {
    margin: 0;
    color: var(--wp-muted);
}

.wp-cart-item__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.wp-cart-item__actions input {
    width: 74px;
    border: 1px solid var(--wp-border);
    border-radius: 14px;
    padding: 10px;
    font: inherit;
}

.wp-link-button {
    border: 0;
    background: transparent;
    color: var(--wp-primary);
    font-weight: 800;
    cursor: pointer;
}

.wp-cart-summary {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    border: 1px solid var(--wp-border);
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
}

.wp-cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.wp-button-block {
    text-align: center;
}

@media (max-width: 720px) {
    .wp-choice-list--compact {
        grid-template-columns: 1fr;
    }

    .wp-section-head,
    .wp-cart-item,
    .wp-purchase-actions {
        display: grid;
    }

    .wp-cart-item__actions {
        justify-content: start;
    }
}

/* WEB-PAST-04B — checkout steps connected */
.wp-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 1.5rem;
    align-items: start;
}

.wp-checkout-flow {
    display: grid;
    gap: 1rem;
}

.wp-checkout-step {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(122, 30, 58, .14);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 18px 48px rgba(43, 27, 27, .06);
}

.wp-checkout-step > header {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.wp-checkout-step > header > span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--wp-primary, #7A1E3A);
    color: #fff;
    font-weight: 800;
    flex: 0 0 auto;
}

.wp-checkout-step h2 {
    margin: 0;
    font-size: 1.1rem;
}

.wp-checkout-step p {
    margin: .2rem 0 0;
    color: var(--wp-muted, #7d6868);
}

.wp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-bottom: 1rem;
}

.wp-checkout-step label {
    display: grid;
    gap: .35rem;
    color: var(--wp-text, #2B1B1B);
    font-weight: 700;
    font-size: .9rem;
}

.wp-checkout-step input,
.wp-checkout-step textarea {
    border: 1px solid rgba(122, 30, 58, .18);
    border-radius: 14px;
    padding: .75rem .85rem;
    font: inherit;
    color: var(--wp-text, #2B1B1B);
    background: #fff;
}

.wp-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
}

.wp-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(122, 30, 58, .18);
    border-radius: 999px;
    padding: .65rem .9rem;
    background: #fff;
}

.wp-checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.wp-checkout-actions .wp-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.wp-checkout-aside {
    position: sticky;
    top: 1rem;
    display: grid;
    gap: 1rem;
}

.wp-payment-result {
    margin-top: 1rem;
    border-radius: 20px;
    padding: 1rem;
    background: rgba(31, 122, 84, .08);
    border: 1px solid rgba(31, 122, 84, .2);
}

.wp-payment-result h3 {
    margin-top: 0;
}

.wp-payment-url {
    overflow-wrap: anywhere;
    font-size: .82rem;
    color: var(--wp-muted, #7d6868);
}

@media (max-width: 900px) {
    .wp-checkout-grid {
        grid-template-columns: 1fr;
    }
    .wp-checkout-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .wp-form-grid {
        grid-template-columns: 1fr;
    }
    .wp-checkout-step {
        padding: 1rem;
        border-radius: 20px;
    }
}

/* WEB-PAST-04C — checkout ui mode accordion / stepper */
.mp-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
    margin: 1rem 0 1.25rem;
    padding: .85rem;
    border: 1px solid rgba(122, 30, 58, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    overflow: hidden;
}

.mp-stepper[hidden],
.wp-checkout-ui--accordion .mp-stepper {
    display: none !important;
}

.mp-stepper__line {
    position: absolute;
    left: 3rem;
    right: 3rem;
    top: 1.55rem;
    height: 2px;
    background: rgba(122, 30, 58, .15);
    z-index: 0;
}

.mp-stepper__step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: .35rem;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--wp-muted, #7C6666);
    font: inherit;
    cursor: pointer;
}

.mp-stepper__dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(122, 30, 58, .22);
    color: var(--wp-primary, #7A1E3A);
    font-weight: 800;
}

.mp-stepper__label {
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.mp-stepper__step.is-current .mp-stepper__dot {
    background: var(--wp-primary, #7A1E3A);
    color: #fff;
    border-color: var(--wp-primary, #7A1E3A);
    box-shadow: 0 12px 26px rgba(122, 30, 58, .18);
}

.mp-stepper__step.is-current .mp-stepper__label,
.mp-stepper__step.is-complete .mp-stepper__label {
    color: var(--wp-primary, #7A1E3A);
}

.mp-stepper__step.is-complete .mp-stepper__dot {
    background: rgba(31, 122, 84, .10);
    border-color: rgba(31, 122, 84, .35);
    color: #1f7a54;
}

.wp-checkout-ui--stepper .wp-checkout-flow {
    display: block;
}

.wp-checkout-ui--stepper .mp-workflow-step {
    display: none;
}

.wp-checkout-ui--stepper .mp-workflow-step.is-current {
    display: block;
}

.wp-checkout-ui--stepper .wp-checkout-aside {
    top: 1rem;
}

@media (max-width: 720px) {
    .wp-checkout-ui--stepper .mp-stepper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .wp-checkout-ui--stepper .mp-stepper__line {
        display: none;
    }

    .wp-checkout-ui--stepper .mp-stepper__step {
        min-width: 84px;
    }

    .wp-checkout-ui--stepper .mp-stepper__label {
        white-space: normal;
    }
}

/* WEB-PAST-04D — calendario y entrega configurada por backend */
.wp-calendar-shell {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wp-calendar-status,
.wp-form-help {
    margin: 0;
    color: var(--wp-muted, #7d6868);
    font-size: .92rem;
    font-weight: 600;
}

.wp-calendar-months {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.wp-calendar-month {
    border: 1px solid rgba(122, 30, 58, .13);
    border-radius: 20px;
    padding: .85rem;
    background: rgba(255, 255, 255, .82);
}

.wp-calendar-month h3 {
    margin: 0 0 .75rem;
    text-transform: capitalize;
    font-size: .98rem;
    color: var(--wp-text, #2B1B1B);
}

.wp-calendar-weekdays,
.wp-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .28rem;
}

.wp-calendar-weekdays {
    margin-bottom: .35rem;
    color: var(--wp-muted, #7d6868);
    font-size: .72rem;
    font-weight: 900;
    text-align: center;
}

.wp-calendar-empty {
    min-height: 36px;
}

.wp-calendar-day {
    position: relative;
    min-height: 36px;
    border: 1px solid rgba(122, 30, 58, .16);
    border-radius: 12px;
    background: #fff;
    color: var(--wp-text, #2B1B1B);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.wp-calendar-day:hover:not(:disabled) {
    border-color: var(--wp-primary, #7A1E3A);
    box-shadow: 0 8px 18px rgba(122, 30, 58, .12);
}

.wp-calendar-day.is-selected {
    background: var(--wp-primary, #7A1E3A);
    border-color: var(--wp-primary, #7A1E3A);
    color: #fff;
}

.wp-calendar-day.is-disabled {
    cursor: not-allowed;
    background: rgba(43, 27, 27, .045);
    border-color: rgba(43, 27, 27, .06);
    color: rgba(43, 27, 27, .32);
}

.wp-calendar-day.is-special small {
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--wp-accent, #D8A45F);
}

.wp-time-slots {
    display: grid;
    gap: .75rem;
    padding-top: .25rem;
}

.wp-time-slots h3 {
    margin: 0;
    font-size: 1rem;
}

.wp-time-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.wp-time-slot {
    border: 1px solid rgba(122, 30, 58, .16);
    border-radius: 999px;
    padding: .62rem .9rem;
    background: #fff;
    color: var(--wp-primary, #7A1E3A);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.wp-time-slot.is-selected {
    background: var(--wp-primary, #7A1E3A);
    color: #fff;
    border-color: var(--wp-primary, #7A1E3A);
}

.wp-time-slot:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.wp-delivery-modes,
.wp-delivery-contact-mode {
    display: grid;
    gap: .65rem;
    margin-bottom: 1rem;
}

@media (max-width: 1080px) {
    .wp-calendar-months {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wp-calendar-month {
        padding: .7rem;
    }
    .wp-calendar-day,
    .wp-calendar-empty {
        min-height: 32px;
    }
}

/* WEB-PAST-01 — PDP corporativa y diferenciación visual base por theme */
body.wp-page-product {
    background:
        radial-gradient(circle at 8% 4%, color-mix(in srgb, var(--wp-secondary, #F7E9DF) 52%, transparent), transparent 28rem),
        linear-gradient(180deg, var(--wp-background, #FFF8F2) 0%, #fff 72%);
}

body.wp-page-product .wp-main {
    padding-top: 34px;
}

body.wp-page-product .wp-product-detail {
    position: relative;
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
}

body.wp-page-product .wp-product-detail::before {
    content: "Ficha de producto";
    position: absolute;
    top: -18px;
    left: 0;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--wp-border, rgba(122,30,58,.16));
    border-radius: 999px;
    background: color-mix(in srgb, var(--wp-surface, #fff) 86%, transparent);
    color: var(--wp-primary, #7A1E3A);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 12px 34px rgba(43,27,27,.06);
}

body.wp-page-product .wp-pdp-gallery,
body.wp-page-product .wp-pdp-info {
    border-color: color-mix(in srgb, var(--wp-primary, #7A1E3A) 16%, transparent);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--wp-surface, #fff) 96%, var(--wp-secondary, #F7E9DF)), var(--wp-surface, #fff));
    box-shadow: 0 26px 70px rgba(43,27,27,.09);
}

body.wp-page-product .wp-pdp-gallery {
    position: sticky;
    top: 18px;
    padding: clamp(16px, 2.2vw, 24px);
}

body.wp-page-product .wp-pdp-main-image {
    border: 1px solid color-mix(in srgb, var(--wp-primary, #7A1E3A) 12%, transparent);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

body.wp-page-product .wp-pdp-info {
    padding: clamp(24px, 3.8vw, 42px);
}

body.wp-page-product .wp-pdp-info h1 {
    max-width: 760px;
    margin-bottom: 12px;
}

body.wp-page-product .wp-pdp-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--wp-secondary, #F7E9DF) 66%, #fff);
    border: 1px solid color-mix(in srgb, var(--wp-primary, #7A1E3A) 12%, transparent);
    font-size: 1rem;
}

body.wp-page-product .wp-pdp-description {
    max-width: 720px;
    margin: 0 0 18px;
}

.wp-pdp-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 20px;
}

.wp-pdp-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--wp-secondary, #F7E9DF) 54%, #fff);
    border: 1px solid color-mix(in srgb, var(--wp-primary, #7A1E3A) 12%, transparent);
    color: var(--wp-primary, #7A1E3A);
    font-size: .82rem;
    font-weight: 800;
}

.wp-pdp-trust-strip span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--wp-accent, #D8A45F);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--wp-accent, #D8A45F) 16%, transparent);
}

body.wp-page-product .wp-option-box {
    border: 1px solid color-mix(in srgb, var(--wp-primary, #7A1E3A) 12%, transparent);
    background: color-mix(in srgb, var(--wp-secondary, #F7E9DF) 52%, #fff);
}

body.wp-page-product .wp-option-box--formats {
    margin-top: 20px;
}

body.wp-page-product .wp-option-box h2 {
    color: var(--wp-text, #2B1B1B);
    letter-spacing: -.02em;
}

body.wp-page-product .wp-option-row strong,
body.wp-page-product .wp-choice-card strong {
    color: var(--wp-text, #2B1B1B);
}

body.wp-page-product .wp-choice-card {
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

body.wp-page-product .wp-choice-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(43,27,27,.07);
}

body.wp-page-product .wp-choice-card:has(input:checked) {
    background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--wp-secondary, #F7E9DF) 34%, #fff));
}

body.wp-page-product .wp-purchase-actions {
    margin-top: 6px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--wp-primary, #7A1E3A) 10%, transparent);
    border-radius: 22px;
    background: color-mix(in srgb, var(--wp-surface, #fff) 76%, var(--wp-secondary, #F7E9DF));
}

body.wp-page-product .wp-button-primary {
    box-shadow: 0 14px 32px color-mix(in srgb, var(--wp-primary, #7A1E3A) 22%, transparent);
}

body.wp-theme-elegante.wp-page-product .wp-pdp-info h1 {
    letter-spacing: -.075em;
}

body.wp-theme-tradicional.wp-page-product .wp-product-detail::before {
    content: "Receta de la casa";
}

body.wp-theme-tradicional.wp-page-product .wp-pdp-gallery,
body.wp-theme-tradicional.wp-page-product .wp-pdp-info {
    border-radius: 24px;
}

body.wp-theme-moderno.wp-page-product .wp-product-detail::before {
    content: "Producto destacado";
}

body.wp-theme-moderno.wp-page-product .wp-pdp-gallery,
body.wp-theme-moderno.wp-page-product .wp-pdp-info,
body.wp-theme-moderno.wp-page-product .wp-option-box,
body.wp-theme-moderno.wp-page-product .wp-choice-card,
body.wp-theme-moderno.wp-page-product .wp-purchase-actions {
    border-radius: 18px;
}

body.wp-theme-moderno.wp-page-product .wp-pdp-info h1 {
    letter-spacing: -.045em;
}

body.wp-theme-vintage.wp-page-product .wp-product-detail::before {
    content: "Hecho artesanalmente";
}

body.wp-theme-vintage.wp-page-product .wp-pdp-gallery,
body.wp-theme-vintage.wp-page-product .wp-pdp-info {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--wp-surface, #FFF9EF) 92%, var(--wp-secondary, #F1D8B8)), var(--wp-surface, #FFF9EF));
    border-style: double;
    border-width: 3px;
}

@media (max-width: 980px) {
    body.wp-page-product .wp-pdp-gallery {
        position: static;
    }
}

@media (max-width: 640px) {
    body.wp-page-product .wp-main {
        padding-top: 24px;
    }

    body.wp-page-product .wp-product-detail::before {
        position: static;
        margin-bottom: 12px;
        width: fit-content;
    }

    body.wp-page-product .wp-pdp-info {
        padding: 22px 18px;
    }

    body.wp-page-product .wp-purchase-actions,
    .wp-pdp-trust-strip {
        display: grid;
    }

    body.wp-page-product .wp-purchase-actions .wp-button,
    body.wp-page-product .wp-quantity-field,
    body.wp-page-product .wp-quantity-field input {
        width: 100%;
    }
}

/* WEB-PAST-02 — Home/Catálogo corporativo por theme */
.wp-home-hero,
.wp-catalog-shell,
.wp-section--surface,
.wp-section--products {
    position: relative;
}

.wp-home-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, .72fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 18%, transparent);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--wp-accent) 16%, transparent), transparent 34%),
        linear-gradient(135deg, color-mix(in srgb, var(--wp-surface) 92%, var(--wp-secondary)), color-mix(in srgb, var(--wp-background) 76%, #fff));
    box-shadow: 0 26px 68px rgba(54, 34, 39, .09);
    overflow: hidden;
}

.wp-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,.40), transparent 60%);
}

.wp-home-hero__copy,
.wp-home-hero__card {
    position: relative;
    z-index: 1;
}

.wp-home-hero__copy h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.6rem, 7vw, 5.35rem);
    line-height: .93;
    letter-spacing: -.07em;
    color: var(--wp-text);
}

.wp-home-hero__lead {
    max-width: 720px;
    color: var(--wp-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.wp-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.wp-home-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.wp-home-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.70);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 14%, transparent);
    color: var(--wp-muted);
    font-weight: 750;
    font-size: .88rem;
}

.wp-home-trust strong {
    color: var(--wp-primary);
}

.wp-home-hero__card {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 230px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background: color-mix(in srgb, var(--wp-surface) 88%, #fff);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 14%, transparent);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
}

.wp-home-hero__card > span,
.wp-home-hero__card > small {
    color: var(--wp-muted);
}

.wp-home-hero__card > strong {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.05;
    color: var(--wp-primary);
}

.wp-home-hero__mini {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    margin-top: 10px;
}

.wp-home-hero__mini b {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--wp-primary);
    color: #fff;
}

.wp-home-hero__mini span {
    align-self: center;
    color: var(--wp-muted);
    font-weight: 700;
}

.wp-section--surface {
    padding: clamp(18px, 3vw, 26px);
    border-radius: 28px;
    background: rgba(255,255,255,.56);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 10%, transparent);
}

.wp-category-strip--boxed {
    width: 100%;
    margin: 0;
}

.wp-catalog-shell {
    display: grid;
    gap: 24px;
}

.wp-catalog-hero--corporate {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: clamp(24px, 4vw, 42px);
    align-items: center;
    border-radius: 32px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--wp-surface) 90%, var(--wp-secondary)), color-mix(in srgb, var(--wp-background) 82%, #fff));
    border: 1px solid color-mix(in srgb, var(--wp-primary) 14%, transparent);
    box-shadow: 0 22px 60px rgba(54, 34, 39, .08);
}

.wp-catalog-hero__aside {
    min-width: 210px;
    display: grid;
    gap: 8px;
    justify-items: start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.72);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 12%, transparent);
}

.wp-catalog-hero__aside span {
    color: var(--wp-muted);
    font-weight: 800;
}

.wp-catalog-hero__aside strong {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--wp-primary);
}

.wp-catalog-filter-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.58);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 10%, transparent);
}

.wp-catalog-filter-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

.wp-catalog-filter-panel__head .wp-eyebrow {
    margin-bottom: 0;
}

.wp-catalog-filter-panel__head strong {
    color: var(--wp-primary);
}

.wp-product-grid--corporate {
    align-items: stretch;
}

.wp-product-card--corporate {
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.wp-product-card--corporate:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--wp-primary) 24%, transparent);
    box-shadow: 0 24px 56px rgba(54, 34, 39, .11);
}

.wp-product-card--corporate .wp-product-image {
    position: relative;
}

.wp-product-card__badge {
    position: absolute;
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    color: var(--wp-primary);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 14%, transparent);
    font-size: .78rem;
    font-weight: 850;
    backdrop-filter: blur(8px);
}

.wp-product-card--corporate .wp-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wp-product-card--corporate .wp-button-block {
    margin-top: auto;
}

.wp-price-row--corporate {
    border: 1px solid color-mix(in srgb, var(--wp-primary) 8%, transparent);
}

/* Theme differentiation — visible but controlled */
.wp-theme-elegante .wp-home-hero,
.wp-theme-elegante .wp-catalog-hero--corporate {
    border-radius: 36px;
}

.wp-theme-tradicional .wp-home-hero,
.wp-theme-tradicional .wp-catalog-hero--corporate,
.wp-theme-tradicional .wp-product-card--corporate {
    box-shadow: 0 18px 42px rgba(74, 42, 24, .08);
}

.wp-theme-moderno .wp-home-hero,
.wp-theme-moderno .wp-catalog-hero--corporate,
.wp-theme-moderno .wp-product-card--corporate,
.wp-theme-moderno .wp-home-hero__card {
    border-radius: 18px;
}

.wp-theme-moderno .wp-button,
.wp-theme-moderno .wp-chip,
.wp-theme-moderno .wp-home-trust span {
    border-radius: 14px;
}

.wp-theme-vintage .wp-home-hero,
.wp-theme-vintage .wp-catalog-hero--corporate {
    border-style: double;
    border-width: 3px;
}

.wp-theme-vintage .wp-product-card__badge,
.wp-theme-vintage .wp-chip {
    letter-spacing: .04em;
}

@media (max-width: 900px) {
    .wp-home-hero,
    .wp-catalog-hero--corporate {
        grid-template-columns: 1fr;
    }

    .wp-catalog-hero__aside {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .wp-home-hero,
    .wp-catalog-hero--corporate,
    .wp-section--surface,
    .wp-catalog-filter-panel {
        width: min(100% - 20px, 1180px);
        border-radius: 24px;
    }

    .wp-home-hero__actions,
    .wp-home-trust {
        display: grid;
    }

    .wp-home-hero__actions .wp-button,
    .wp-catalog-hero__aside .wp-button {
        width: 100%;
    }
}


/* WEB-PAST-03A — Logo y banner configurables por pasteleria */
.wp-brand--with-logo {
    gap: 12px;
}

.wp-brand-logo {
    width: 58px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    border: 1px solid color-mix(in srgb, var(--wp-primary) 12%, transparent);
    box-shadow: 0 10px 24px rgba(54, 34, 39, .08);
    overflow: hidden;
}

.wp-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 5px;
}

.wp-business-banner {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--wp-primary) 12%, transparent);
    box-shadow: 0 24px 64px rgba(54, 34, 39, .10);
    background: color-mix(in srgb, var(--wp-secondary) 55%, #fff);
}

.wp-business-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 1270 / 270;
    object-fit: cover;
}

.wp-business-banner + .wp-home-hero {
    margin-top: 20px;
}

.wp-theme-elegante .wp-business-banner {
    border-radius: 34px;
}

.wp-theme-moderno .wp-business-banner,
.wp-theme-moderno .wp-brand-logo {
    border-radius: 16px;
}

.wp-theme-vintage .wp-business-banner {
    border-style: double;
    border-width: 3px;
}

@media (max-width: 620px) {
    .wp-business-banner {
        width: min(100% - 20px, 1180px);
        border-radius: 22px;
    }

    .wp-brand-logo {
        width: 50px;
        height: 38px;
    }
}

/* WEB-PAST-03C — Diferenciacion fuerte de themes oficiales
   Solo CSS. No altera HTML, API, carrito, checkout ni pagos. */

/* Base: todas las variantes mantienen tokens, accesibilidad y responsive. */
body.wp-page {
    transition: background-color .18s ease, color .18s ease;
}

/* ===== ELEGANTE =====
   Editorial, premium, aireado, sobrio. */
body.wp-theme-elegante {
    background:
        radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--wp-secondary) 42%, transparent), transparent 34%),
        linear-gradient(180deg, var(--wp-background), #fff 72%);
}

.wp-theme-elegante .wp-header {
    padding-top: 26px;
    padding-bottom: 22px;
}

.wp-theme-elegante .wp-home-hero,
.wp-theme-elegante .wp-catalog-hero--corporate,
.wp-theme-elegante.wp-page-product .wp-pdp-info,
.wp-theme-elegante.wp-page-product .wp-pdp-gallery,
.wp-theme-elegante .wp-section--surface {
    border-radius: 36px;
    box-shadow: 0 28px 80px rgba(53, 29, 29, .10);
    background: linear-gradient(135deg, rgba(255,255,255,.94), color-mix(in srgb, var(--wp-secondary) 16%, #fff));
}

.wp-theme-elegante .wp-home-hero__title,
.wp-theme-elegante .wp-catalog-hero__title,
.wp-theme-elegante.wp-page-product .wp-pdp-info h1 {
    letter-spacing: -.075em;
}

.wp-theme-elegante .wp-button-primary,
.wp-theme-elegante .wp-btn-primary {
    box-shadow: 0 16px 30px color-mix(in srgb, var(--wp-primary) 22%, transparent);
}

/* ===== TRADICIONAL =====
   Familiar, calido, cercano, con banner superior como identidad principal. */
body.wp-theme-tradicional {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--wp-secondary) 36%, #fff), #fff 68%);
}

.wp-theme-tradicional .wp-header,
.wp-theme-tradicional .wp-footer,
.wp-theme-tradicional .wp-main,
.wp-theme-tradicional .wp-business-banner {
    width: min(1120px, calc(100% - 32px));
}

.wp-theme-tradicional .wp-business-banner {
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(74, 42, 24, .09);
}

.wp-theme-tradicional .wp-home-hero,
.wp-theme-tradicional .wp-catalog-hero--corporate,
.wp-theme-tradicional .wp-section--surface,
.wp-theme-tradicional.wp-page-product .wp-pdp-info,
.wp-theme-tradicional.wp-page-product .wp-pdp-gallery {
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(74, 42, 24, .08);
    background: rgba(255,255,255,.92);
}

.wp-theme-tradicional .wp-eyebrow,
.wp-theme-tradicional .wp-section-kicker,
.wp-theme-tradicional .wp-product-card__badge {
    letter-spacing: .14em;
}

.wp-theme-tradicional .wp-product-card--corporate {
    border-radius: 22px;
}

.wp-theme-tradicional .wp-button,
.wp-theme-tradicional .wp-btn,
.wp-theme-tradicional .wp-chip {
    border-radius: 999px;
}

/* ===== MODERNO =====
   Digital, rapido, limpio, mas recto y directo. */
body.wp-theme-moderno {
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--wp-accent) 18%, transparent), transparent 30%),
        linear-gradient(180deg, var(--wp-background), #fff 62%);
}

.wp-theme-moderno .wp-header {
    width: min(1220px, calc(100% - 28px));
}

.wp-theme-moderno .wp-nav a,
.wp-theme-moderno .wp-button,
.wp-theme-moderno .wp-btn,
.wp-theme-moderno .wp-chip,
.wp-theme-moderno .wp-home-trust span,
.wp-theme-moderno .wp-price-row,
.wp-theme-moderno .wp-option-box,
.wp-theme-moderno .wp-choice-card,
.wp-theme-moderno .wp-purchase-actions {
    border-radius: 14px !important;
}

.wp-theme-moderno .wp-home-hero,
.wp-theme-moderno .wp-catalog-hero--corporate,
.wp-theme-moderno .wp-section--surface,
.wp-theme-moderno .wp-product-card--corporate,
.wp-theme-moderno.wp-page-product .wp-pdp-info,
.wp-theme-moderno.wp-page-product .wp-pdp-gallery {
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(21, 24, 39, .08);
    border-color: color-mix(in srgb, var(--wp-primary) 18%, transparent);
}

.wp-theme-moderno .wp-home-hero__title,
.wp-theme-moderno .wp-catalog-hero__title,
.wp-theme-moderno.wp-page-product .wp-pdp-info h1 {
    letter-spacing: -.055em;
}

.wp-theme-moderno .wp-product-card--corporate:hover {
    transform: translateY(-4px);
}

.wp-theme-moderno .wp-business-banner {
    border-radius: 18px;
}

/* ===== VINTAGE =====
   Artesanal, boutique, retro, con borde decorativo sutil. */
body.wp-theme-vintage {
    background:
        radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--wp-secondary) 50%, transparent), transparent 34%),
        linear-gradient(180deg, var(--wp-background), #fff 70%);
}

.wp-theme-vintage .wp-brand-mark,
.wp-theme-vintage .wp-brand-logo {
    border-radius: 999px;
}

.wp-theme-vintage .wp-home-hero,
.wp-theme-vintage .wp-catalog-hero--corporate,
.wp-theme-vintage .wp-section--surface,
.wp-theme-vintage.wp-page-product .wp-pdp-info,
.wp-theme-vintage.wp-page-product .wp-pdp-gallery,
.wp-theme-vintage .wp-business-banner {
    border-style: double;
    border-width: 3px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--wp-surface) 86%, var(--wp-secondary)), var(--wp-surface));
    box-shadow: 0 20px 54px rgba(55, 38, 31, .10);
}

.wp-theme-vintage .wp-eyebrow,
.wp-theme-vintage .wp-section-kicker,
.wp-theme-vintage .wp-product-card__badge,
.wp-theme-vintage .wp-chip {
    letter-spacing: .11em;
    text-transform: uppercase;
}

.wp-theme-vintage .wp-product-card--corporate {
    border-radius: 28px;
    background: color-mix(in srgb, var(--wp-surface) 88%, #fff);
}

.wp-theme-vintage .wp-product-card__image,
.wp-theme-vintage .wp-pdp-main-image img,
.wp-theme-vintage .wp-product-media img {
    filter: saturate(.94) contrast(.98);
}

.wp-theme-vintage .wp-button-primary,
.wp-theme-vintage .wp-btn-primary {
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.10), 0 14px 26px rgba(55, 38, 31, .12);
}

/* Responsive refinado de la diferenciacion */
@media (max-width: 700px) {
    .wp-theme-elegante .wp-home-hero,
    .wp-theme-elegante .wp-catalog-hero--corporate,
    .wp-theme-tradicional .wp-home-hero,
    .wp-theme-tradicional .wp-catalog-hero--corporate,
    .wp-theme-vintage .wp-home-hero,
    .wp-theme-vintage .wp-catalog-hero--corporate {
        border-radius: 22px;
    }

    .wp-theme-moderno .wp-home-hero,
    .wp-theme-moderno .wp-catalog-hero--corporate {
        border-radius: 16px;
    }
}

/* WEB-PAST-UI-02K — ajuste menor eyebrow traditional */
.wp-theme-layout-traditional .wp-eyebrow {
    padding-top: 25px !important;
}

