:root {
    color-scheme: light;
    --page-overlay:
        radial-gradient(circle at 18% 0%, rgba(230, 30, 50, 0.10), transparent 34%),
        radial-gradient(circle at 82% 100%, rgba(43, 37, 41, 0.12), transparent 40%),
        linear-gradient(180deg, #fffaf9 0%, #f7f1f2 48%, #f2eeef 100%);
    --text: #241f22;
    --muted: #675c61;
    --line: rgba(43, 37, 41, 0.1);
    --card-bg: rgba(255, 252, 252, 0.84);
    --card-border: rgba(111, 93, 101, 0.12);
    --card-shadow: 0 20px 48px rgba(43, 37, 41, 0.1);
    --accent: #d92d47;
    --accent-deep: #b4233a;
    --soft: rgba(217, 45, 71, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.storefront-page {
    margin: 0;
    min-height: 100vh;
    background: var(--page-overlay);
    color: var(--text);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
}

.storefront-home main.shell {
    display: grid;
    gap: 34px;
}

.storefront-home main.shell > .footer {
    display: grid;
    gap: 34px;
}

.topbar {
    padding: 24px 0 16px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 18px;
    border-radius: 28px;
    background: rgba(255, 252, 252, 0.62);
    box-shadow:
        0 18px 40px rgba(43, 37, 41, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
}

.topbar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 14px 28px rgba(43, 37, 41, 0.08);
}

.brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

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

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(43, 37, 41, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 18px rgba(43, 37, 41, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(217, 45, 71, 0.18);
    box-shadow: 0 12px 22px rgba(43, 37, 41, 0.08);
}

.nav-toggle-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
    position: relative;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--text);
    font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 8px 18px rgba(43, 37, 41, 0.04);
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(217, 45, 71, 0.18);
    box-shadow: 0 12px 22px rgba(43, 37, 41, 0.08);
}

.nav-link.secondary {
    background: rgba(255, 244, 238, 0.96);
    border-color: rgba(238, 77, 45, 0.18);
    color: #d94822;
    box-shadow: 0 10px 22px rgba(238, 77, 45, 0.12);
}

.nav-link.secondary:hover {
    color: #c53d19;
    background: rgba(255, 238, 230, 0.98);
    border-color: rgba(238, 77, 45, 0.28);
    box-shadow: 0 12px 24px rgba(238, 77, 45, 0.16);
}

.nav-link.primary::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    display: inline-block;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 0 0 5px rgba(217, 45, 71, 0.1);
    vertical-align: middle;
}

.nav-link.primary {
    background: rgba(236, 255, 243, 0.96);
    border-color: rgba(18, 138, 73, 0.18);
    color: #17603a;
    box-shadow: 0 10px 22px rgba(18, 138, 73, 0.08);
}

.nav-link.primary::before {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.nav-link.primary.is-offline {
    background: rgba(255, 248, 232, 0.96);
    border-color: rgba(181, 131, 0, 0.18);
    color: #7a5900;
    box-shadow: 0 10px 22px rgba(181, 131, 0, 0.08);
}

.nav-link.primary.is-offline::before {
    background: linear-gradient(135deg, #f0b429, #c98700);
    box-shadow: 0 0 0 5px rgba(240, 180, 41, 0.14);
}

.button,
.submit-button,
.cta-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.button,
.submit-button,
.cta-mini {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    box-shadow: 0 12px 24px rgba(230, 30, 50, 0.18);
}

.button:not(.button-secondary):not(.is-offline) {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 12px 24px rgba(21, 128, 61, 0.2);
}

.button.is-offline {
    background: linear-gradient(135deg, #f0b429, #c98700);
    color: #fffaf0;
    box-shadow: 0 12px 24px rgba(201, 135, 0, 0.2);
}

.storefront-page.is-floating-whatsapp-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(30, 24, 28, 0.18);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 10px;
    pointer-events: none;
}

.floating-whatsapp-panel,
.floating-whatsapp-toggle {
    pointer-events: auto;
}

.floating-whatsapp-panel {
    width: min(330px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
}

.floating-whatsapp-panel[hidden] {
    display: none;
    pointer-events: none;
}

.floating-whatsapp.is-open .floating-whatsapp-panel {
    transform: translateY(0);
    opacity: 1;
}

.floating-whatsapp-chat,
.floating-whatsapp-info {
    border: 1px solid rgba(43, 37, 41, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 44px rgba(43, 37, 41, 0.14);
    backdrop-filter: blur(14px);
}

.floating-whatsapp-chat {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 62px;
    justify-self: end;
    padding: 16px 22px;
    border-radius: 18px;
    color: var(--text);
    font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 900;
}

.floating-whatsapp-icon,
.floating-whatsapp-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp-icon svg {
    width: 26px;
    height: 26px;
    fill: #16a34a;
}

.floating-whatsapp-info {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
}

.floating-whatsapp-status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(43, 37, 41, 0.08);
}

.floating-whatsapp-status > span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.floating-whatsapp-status.is-offline > span {
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12);
}

.floating-whatsapp-status strong {
    color: #15803d;
    font-size: 14px;
}

.floating-whatsapp-status.is-offline strong {
    color: #b91c1c;
}

.floating-whatsapp-status small {
    color: var(--muted);
    font-size: 12px;
}

.floating-whatsapp-hours {
    display: grid;
    gap: 8px;
}

.floating-whatsapp-hours div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
}

.floating-whatsapp-hours strong {
    color: var(--text);
    font-size: 13px;
    text-align: right;
}

.floating-whatsapp-toggle {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    box-shadow: 0 18px 32px rgba(22, 163, 74, 0.32);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.floating-whatsapp-toggle:hover {
    transform: translateY(-2px);
    background: #15803d;
    box-shadow: 0 22px 38px rgba(21, 128, 61, 0.34);
}

.floating-whatsapp-toggle svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.floating-whatsapp-close-icon {
    display: none;
    position: relative;
    width: 28px;
    height: 28px;
}

.floating-whatsapp-close-icon::before,
.floating-whatsapp-close-icon::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 2px;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.floating-whatsapp-close-icon::before {
    transform: rotate(45deg);
}

.floating-whatsapp-close-icon::after {
    transform: rotate(-45deg);
}

.floating-whatsapp.is-open .floating-whatsapp-toggle-icon {
    display: none;
}

.floating-whatsapp.is-open .floating-whatsapp-close-icon {
    display: inline-flex;
}

.submit-button,
.cta-mini {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.footer {
    padding: 0;
}

.footer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 28px;
    border-radius: 28px;
    border: 1px solid var(--card-border);
    background: rgba(255, 250, 250, 0.76);
    box-shadow: 0 16px 36px rgba(43, 37, 41, 0.08);
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.footer-copy {
    margin-top: 8px;
    max-width: 72ch;
    color: var(--muted);
    line-height: 1.7;
}

.footer-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer-hours-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(217, 45, 71, 0.1);
    box-shadow: 0 8px 18px rgba(43, 37, 41, 0.04);
}

.footer-hours-chip strong {
    font-size: 13px;
    letter-spacing: -.01em;
}

.footer-hours-chip span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

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

.store-footer {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, .7fr));
    gap: 24px;
    margin-top: 24px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(217, 45, 71, 0.12);
    background:
        linear-gradient(135deg, rgba(217, 45, 71, 0.08), rgba(255, 255, 255, 0.7) 42%),
        rgba(255, 250, 250, 0.84);
    box-shadow: 0 18px 42px rgba(43, 37, 41, 0.08);
}

.footer-brand {
    margin-bottom: 12px;
}

.store-footer p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-badges span,
.footer-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(43, 37, 41, 0.08);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.footer-column a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
}

.footer-column a:hover {
    color: var(--accent-deep);
}

.footer-status {
    background: rgba(236, 255, 243, 0.9);
    border-color: rgba(18, 138, 73, 0.16);
    color: #17603a;
}

.footer-status.is-offline {
    background: rgba(255, 248, 232, 0.96);
    border-color: rgba(181, 131, 0, 0.18);
    color: #7a5900;
}

.footer-links {
    display: grid;
    justify-content: stretch;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--accent-deep);
}

.footer-hours-wide {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(43, 37, 41, 0.08);
}

.footer-hours-title {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.footer-copyright {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    width: fit-content;
    justify-self: start;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.08);
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.page-title {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .96;
    letter-spacing: -.06em;
}

.page-copy {
    margin: 0;
    max-width: 74ch;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 252, 252, 0.88);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.card h2 {
    margin: 0 0 18px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.storefront-home #catalog {
    display: grid;
    gap: 28px;
}

.storefront-home .section-head {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.storefront-home .section-head > div:first-child {
    display: grid;
    gap: 14px;
}

.storefront-home .section-head h1,
.storefront-home .section-head h2 {
    margin: 0;
    letter-spacing: -0.05em;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.storefront-home .section-head h1 {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: .96;
}

.storefront-home .section-head h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.storefront-home .section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 72ch;
    font-size: 15px;
}

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

.product-card {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--card-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 248, 0.92));
    box-shadow: var(--card-shadow);
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(43, 37, 41, 0.12);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: auto -22px -24px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 45, 71, 0.1), rgba(217, 45, 71, 0));
    pointer-events: none;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #f3c7cf 0%, #d92d47 50%, #b4233a 100%);
    pointer-events: none;
}

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.product-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 12px 24px rgba(43, 37, 41, 0.08);
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.product-name {
    margin: 0 0 4px;
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.product-duration {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(43, 37, 41, 0.08);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-proof::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.product-proof.secondary {
    margin-top: -2px;
}

.product-proof.secondary::before {
    background: #2563eb;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.product-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
}

.product-sales {
    display: grid;
    margin-top: 4px;
    padding: 15px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(217, 45, 71, 0.07), rgba(255, 255, 255, 0.78) 46%),
        rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(217, 45, 71, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 24px rgba(43, 37, 41, 0.05);
}

.product-sales-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-sales-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(43, 37, 41, 0.07);
}

.product-sales-icon {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(217, 45, 71, 0.1);
    color: var(--accent-deep);
}

.product-sales-icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(217, 45, 71, 0.1);
}

.product-sales-icon-cart::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 8px;
    bottom: 8px;
    height: 7px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.product-sales-icon-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.product-sales-metric div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.product-sales-metric span:not(.product-sales-icon) {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-sales-metric strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.product-sales-metric-stock strong {
    color: var(--accent-deep);
}

.product-pricing {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    padding-right: 12px;
}

.price-before {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.price-before span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(217, 45, 71, 0.58);
}

.price-before strong {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.1);
    color: var(--accent-deep);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.price {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 900;
    letter-spacing: -0.06em;
    white-space: nowrap;
    line-height: .95;
}

.price-label {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-mini {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.cta-mini.is-disabled {
    cursor: not-allowed;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    color: #ffffff;
    box-shadow: none;
}

.cta-mini.is-urgent {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    box-shadow: 0 14px 26px rgba(185, 28, 28, 0.2);
}

.payment-section {
    margin: 0;
}

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

.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--card-border);
    background: rgba(255, 250, 250, 0.76);
    box-shadow: 0 12px 28px rgba(43, 37, 41, 0.06);
}

.payment-card img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
    display: block;
}

.store-section {
    display: grid;
    gap: 18px;
}

.manual-product-grid,
.trust-grid,
.info-grid {
    display: grid;
    gap: 16px;
}

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

.trust-grid,
.info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manual-product-card,
.trust-card,
.info-card,
.legal-item {
    border: 1px solid var(--card-border);
    background: rgba(255, 250, 250, 0.78);
    box-shadow: 0 12px 28px rgba(43, 37, 41, 0.06);
}

.manual-product-card {
    display: grid;
    gap: 12px;
    grid-template-rows: auto auto 1fr auto;
    align-content: stretch;
    padding: 18px;
    border-radius: 22px;
}

.manual-product-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.manual-product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 10px 20px rgba(43, 37, 41, 0.06);
}

.manual-product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manual-product-logo span {
    color: var(--accent-deep);
    font-size: 24px;
    font-weight: 900;
}

.manual-product-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.manual-product-copy span,
.legal-item h2 {
    color: var(--accent-deep);
}

.manual-product-copy span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.manual-product-copy h3,
.trust-card h3,
.info-card h3,
.legal-item h2 {
    margin: 0;
    letter-spacing: -.04em;
}

.manual-product-copy h3 {
    font-size: 19px;
}

.manual-product-copy p,
.trust-card p,
.info-card p,
.legal-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.manual-product-copy strong {
    font-size: 17px;
    letter-spacing: -.03em;
}

.manual-product-price {
    display: grid;
    gap: 2px;
    padding: 4px 0 2px;
}

.manual-product-price span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.manual-product-price strong {
    color: var(--accent-deep);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.manual-product-info {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.manual-product-info span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.07);
    border: 1px solid rgba(217, 45, 71, 0.1);
    color: var(--accent-deep);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.trust-card,
.info-card {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 168px;
    padding: 20px;
    border-radius: 22px;
}

.trust-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(217, 45, 71, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 247, 0.94)),
        rgba(255, 250, 250, 0.86);
    box-shadow: 0 16px 34px rgba(43, 37, 41, 0.08);
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #f3c7cf, var(--accent), var(--accent-deep));
}

.trust-card span {
    display: grid;
    place-items: center;
    width: fit-content;
    min-width: 42px;
    height: 36px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.1);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.trust-card h3 {
    font-size: 18px;
    line-height: 1.15;
}

.review-section-link {
    flex-shrink: 0;
}

.review-carousel {
    overflow: hidden;
    border-radius: 24px;
}

.review-track {
    display: flex;
    gap: 16px;
    transition: transform .55s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(238, 77, 45, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 243, 0.94)),
        rgba(255, 250, 250, 0.86);
    box-shadow: 0 16px 34px rgba(43, 37, 41, 0.08);
}

.review-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.review-head strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.review-head small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #050505;
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 10px 20px rgba(43, 37, 41, 0.08);
}

.review-avatar-gradient {
    background: linear-gradient(180deg, #f1b18b 0%, #f6c8b0 38%, #151218 100%);
}

.review-avatar-photo {
    background:
        radial-gradient(circle at 42% 38%, #d7b99d 0 13%, transparent 14%),
        linear-gradient(135deg, #374151, #d7e2e9 52%, #1f2937);
}

.review-avatar-blue {
    background:
        radial-gradient(circle at 48% 34%, #f0c7a9 0 18%, transparent 19%),
        linear-gradient(135deg, #9dd7e5 0%, #d7f0f4 48%, #334155 100%);
}

.review-avatar-leaf {
    background:
        radial-gradient(circle at 36% 34%, rgba(250, 204, 21, 0.95) 0 10%, transparent 11%),
        linear-gradient(135deg, #315c2f, #9bbf65 42%, #6b7a33 100%);
}

.review-avatar-dark-photo {
    background:
        radial-gradient(circle at 56% 30%, #f4d2b8 0 10%, transparent 11%),
        linear-gradient(135deg, #050505, #1f2937 55%, #0a0a0a 100%);
}

.review-avatar-outline {
    background:
        radial-gradient(circle at 50% 38%, transparent 0 14%, #c7c7c7 15% 17%, transparent 18%),
        radial-gradient(ellipse at 50% 75%, transparent 0 25%, #c7c7c7 26% 29%, transparent 30%),
        #fafafa;
}

.review-avatar-pink {
    background:
        radial-gradient(circle at 52% 32%, #f5d0c5 0 13%, transparent 14%),
        linear-gradient(135deg, #e5e7eb, #f9a8d4 48%, #94a3b8 100%);
}

.review-avatar-purple {
    background:
        radial-gradient(circle at 48% 36%, #f7c7d9 0 12%, transparent 13%),
        linear-gradient(135deg, #f0abfc, #c4b5fd 48%, #fbcfe8 100%);
}

.review-avatar-sky {
    background:
        radial-gradient(circle at 50% 50%, #ffffff 0 24%, transparent 25%),
        linear-gradient(135deg, #0ea5e9, #67e8f9 58%, #2563eb 100%);
}

.review-avatar-bakmie {
    background:
        radial-gradient(circle at 50% 50%, #fff7ed 0 27%, transparent 28%),
        linear-gradient(135deg, #ffffff, #fed7aa 52%, #ef4444 100%);
}

.review-stars {
    margin: 2px 0 4px;
    color: #ee4d2d;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.58;
}

.order-steps {
    display: grid;
    gap: 16px;
}

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

.order-step-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
    min-height: 150px;
    align-content: start;
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    background: rgba(255, 250, 250, 0.78);
    box-shadow: 0 12px 28px rgba(43, 37, 41, 0.06);
    color: var(--text);
    text-align: left;
    animation: order-card-loop 8s ease-in-out infinite;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.order-step-card::after {
    content: "";
    position: absolute;
    inset: auto -34px -38px auto;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 45, 71, 0.11), transparent 65%);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

.order-step-card:nth-child(2) {
    animation-delay: 2s;
}

.order-step-card:nth-child(3) {
    animation-delay: 4s;
}

.order-step-card:nth-child(4) {
    animation-delay: 6s;
}

.order-step-card:nth-child(1)::after {
    animation: order-glow-loop 8s ease-in-out infinite;
}

.order-step-card:nth-child(2)::after {
    animation: order-glow-loop 8s ease-in-out 2s infinite;
}

.order-step-card:nth-child(3)::after {
    animation: order-glow-loop 8s ease-in-out 4s infinite;
}

.order-step-card:nth-child(4)::after {
    animation: order-glow-loop 8s ease-in-out 6s infinite;
}

.order-step-visual {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.72), transparent 35%),
        linear-gradient(135deg, rgba(217, 45, 71, 0.14), rgba(217, 45, 71, 0.05));
    color: var(--accent-deep);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.order-step-card strong {
    font-size: 17px;
    letter-spacing: -.04em;
}

.order-step-card small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

@keyframes order-card-loop {
    0% {
        transform: translateY(0);
        border-color: var(--card-border);
        background: rgba(255, 250, 250, 0.78);
        box-shadow: 0 12px 28px rgba(43, 37, 41, 0.06);
    }

    7%,
    20% {
        transform: translateY(-6px);
        border-color: rgba(217, 45, 71, 0.26);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 247, 0.98));
        box-shadow: 0 22px 44px rgba(43, 37, 41, 0.12);
    }

    28%,
    100% {
        transform: translateY(0);
        border-color: var(--card-border);
        background: rgba(255, 250, 250, 0.78);
        box-shadow: 0 12px 28px rgba(43, 37, 41, 0.06);
    }
}

@keyframes order-glow-loop {
    0%,
    28%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    7%,
    20% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.info-card {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 45, 71, 0.22);
    box-shadow: 0 16px 36px rgba(43, 37, 41, 0.09);
}

.legal-card {
    display: grid;
    gap: 18px;
}

.legal-list {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.legal-action-button {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 14px;
}

.button.legal-action-button.legal-action-secondary {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    color: var(--text);
    box-shadow: none;
}

.button.legal-action-button.legal-action-shopee {
    background: linear-gradient(135deg, #ee4d2d, #d73516);
    box-shadow: 0 12px 24px rgba(238, 77, 45, 0.18);
}

.legal-timeline {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(217, 45, 71, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
}

.legal-timeline h2 {
    margin: 0;
    color: var(--accent-deep);
    font-size: 18px;
    letter-spacing: -.04em;
}

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

.legal-timeline-step {
    position: relative;
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 18px;
    border: 1px solid rgba(43, 37, 41, 0.08);
    border-radius: 18px;
    background: rgba(255, 252, 252, 0.78);
}

.legal-timeline-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.legal-timeline-step strong {
    font-size: 15px;
    letter-spacing: -.03em;
}

.legal-timeline-step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.legal-item {
    display: grid;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
}

.storefront-faq main.shell {
    display: grid;
    gap: 34px;
}

.faq-card {
    display: grid;
    gap: 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.faq-item {
    border: 1px solid rgba(43, 37, 41, 0.08);
    border-radius: 20px;
    background: rgba(255, 250, 250, 0.78);
    box-shadow: 0 10px 24px rgba(43, 37, 41, 0.05);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -.03em;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.08);
    color: var(--accent-deep);
    font-weight: 900;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 20px 20px 40px;
    color: var(--muted);
    line-height: 1.6;
}

.faq-item li::marker {
    color: var(--accent-deep);
}

.storefront-lookup-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    justify-content: center;
    align-items: stretch;
}

.storefront-lookup-layout .eyebrow {
    margin-bottom: 14px;
}

.storefront-lookup-layout .page-title {
    margin-bottom: 12px;
}

.storefront-lookup-layout .page-copy {
    margin-bottom: 28px;
}

.storefront-lookup-layout .form-grid {
    gap: 22px;
}

.storefront-lookup-layout .form-error-box {
    margin-bottom: 28px;
}

.storefront-lookup-layout .form-error-box a {
    width: fit-content;
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 900;
}

.storefront-lookup-layout .form-group label {
    margin-bottom: 12px;
}

.storefront-lookup-layout .submit-button {
    margin-top: 4px;
}

.form-group small,
.lookup-help-text {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.lookup-help-text {
    margin: 0;
    text-align: center;
}

.lookup-help-text a {
    color: var(--accent-deep);
    font-weight: 900;
}

.lookup-guide-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(217, 45, 71, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 248, 0.92)),
        rgba(255, 250, 250, 0.86);
    box-shadow: var(--card-shadow);
}

.lookup-guide-card h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.lookup-guide-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.lookup-visual {
    position: relative;
    display: grid;
    min-height: 168px;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(217, 45, 71, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 235, 239, 0.84));
    overflow: hidden;
}

.lookup-visual-receipt {
    display: grid;
    gap: 8px;
    width: min(82%, 260px);
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(43, 37, 41, 0.08);
    box-shadow: 0 18px 32px rgba(43, 37, 41, 0.1);
}

.lookup-visual-receipt span {
    width: 44px;
    height: 7px;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.18);
}

.lookup-visual-receipt strong {
    color: var(--text);
    font-size: 18px;
    letter-spacing: -.03em;
}

.lookup-visual-receipt small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.lookup-visual-check {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 14px 26px rgba(21, 128, 61, 0.22);
}

.lookup-guide-list {
    display: grid;
    gap: 10px;
}

.lookup-guide-list span {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(43, 37, 41, 0.08);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.lookup-guide-list strong {
    color: var(--accent-deep);
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-error-box {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(217, 45, 71, 0.18);
    background: rgba(255, 244, 246, 0.96);
    color: var(--accent-deep);
    font-size: 13px;
    font-weight: 700;
}

.storefront-page main.shell {
    padding: 22px 0 48px;
    display: grid;
    gap: 28px;
}

.storefront-page.storefront-home main.shell,
.storefront-page.storefront-home main.shell > .footer {
    gap: 34px;
}

.storefront-page.storefront-home .store-footer {
    margin-top: 0;
}

.storefront-page main.shell > .footer {
    margin-top: 0;
}

label,
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
}

input[type="text"],
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(43, 37, 41, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font: inherit;
}

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

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 20px;
    align-items: start;
}

.storefront-checkout-form .layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.product-summary {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 247, 0.95));
    border: 1px solid rgba(217, 45, 71, 0.12);
}

.product-summary-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.product-summary-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.product-summary-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

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

.meta-box {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(43, 37, 41, 0.08);
}

.meta-box span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.meta-box strong {
    font-size: 24px;
    letter-spacing: -.04em;
}

.storefront-checkout-form .card > h2:first-child {
    margin-bottom: 14px;
}

.storefront-checkout-form .product-summary {
    position: relative;
    gap: 12px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 22px;
}

.storefront-checkout-form .product-summary .product-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-checkout-form .product-summary-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
}

.storefront-checkout-form .product-summary .product-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.storefront-checkout-form .product-summary .product-name {
    margin: 0;
    font-size: 24px;
    line-height: 1;
}

.storefront-checkout-form .product-summary .product-duration {
    font-size: 12px;
}

.storefront-checkout-form .product-summary .product-badge {
    padding: 6px 10px;
    font-size: 11px;
}

.storefront-checkout-form .product-summary .product-meta {
    gap: 10px;
}

.storefront-checkout-form .product-summary .meta-box {
    padding: 12px 14px;
    border-radius: 16px;
}

.storefront-checkout-form .product-summary .meta-box span {
    margin-bottom: 4px;
    font-size: 10px;
}

.storefront-checkout-form .product-summary .meta-box strong {
    font-size: 18px;
}

.summary-list,
.detail-list {
    display: grid;
    gap: 12px;
}

.summary-row,
.detail-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(43, 37, 41, 0.08);
}

.summary-row:last-child,
.detail-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.summary-row span,
.detail-row span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.summary-row strong,
.detail-row strong {
    text-align: right;
    font-size: 16px;
    letter-spacing: -.02em;
}

.summary-value {
    display: grid;
    justify-items: end;
    gap: 4px;
    min-width: 0;
    text-align: right;
}

.summary-value small {
    max-width: 220px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.summary-row--with-note {
    align-items: start;
}

.summary-row--with-note .summary-value {
    justify-items: end;
    text-align: right;
}

.order-summary-panel {
    align-self: start;
    background: rgba(255, 255, 255, 0.82);
}

.order-summary-panel h2 {
    margin-bottom: 4px;
    font-size: 19px;
}

.detail-list-compact {
    grid-template-columns: 1fr;
    gap: 0;
}

.detail-list-compact .detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(43, 37, 41, 0.08);
    background: transparent;
}

.detail-list-compact .detail-row:last-child {
    border-bottom: 0;
}

.detail-list-compact .detail-row strong {
    text-align: right;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.35;
}

.summary-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.96);
    border: 1px solid rgba(201, 135, 0, 0.18);
    color: #7a5900;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.summary-status.is-expired {
    background: rgba(255, 244, 246, 0.96);
    border-color: rgba(217, 45, 71, 0.16);
    color: var(--accent-deep);
}

.summary-status.is-completed {
    background: rgba(236, 255, 243, 0.96);
    border-color: rgba(18, 138, 73, 0.18);
    color: #17603a;
}

.summary-row.total strong {
    font-size: 24px;
    letter-spacing: -.04em;
}

.summary-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.checkout-summary-inline {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(43, 37, 41, 0.08);
    background: rgba(255, 255, 255, 0.78);
}

.checkout-summary-inline-head {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.checkout-delivery-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 101, 52, 0.16);
    background: rgba(236, 255, 243, 0.96);
    color: #166534;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.form-group {
    display: grid;
    gap: 4px;
}

.required-mark {
    color: var(--accent);
}

.storefront-page.is-alert-open {
    overflow: hidden;
}

.storefront-alert-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(30, 24, 28, 0.48);
    backdrop-filter: blur(8px);
}

.storefront-alert-backdrop[hidden] {
    display: none;
}

.storefront-alert-card {
    width: min(100%, 420px);
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(217, 45, 71, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 252, 252, 0.98), rgba(255, 246, 247, 0.96));
    box-shadow:
        0 28px 64px rgba(43, 37, 41, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.storefront-alert-card--confirm {
    border-color: rgba(43, 37, 41, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 253, 253, 0.99), rgba(249, 246, 247, 0.98));
}

.storefront-alert-card--confirm .storefront-alert-title {
    color: var(--text);
}

.storefront-alert-title {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--accent-deep);
}

.storefront-alert-copy {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
}

.storefront-alert-copy--confirm {
    margin-bottom: 16px;
}

.storefront-alert-confirm-hero {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(43, 37, 41, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.storefront-alert-confirm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(43, 37, 41, 0.08);
}

.storefront-alert-confirm-icon img {
    max-width: 100%;
    max-height: 26px;
    object-fit: contain;
    display: block;
}

.storefront-alert-confirm-copy {
    min-width: 0;
}

.storefront-alert-confirm-copy strong {
    display: block;
    color: var(--text);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.storefront-alert-list {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.storefront-alert-item {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(217, 45, 71, 0.16);
    background: linear-gradient(180deg, rgba(255, 244, 246, 0.92), rgba(255, 251, 251, 0.98));
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.storefront-alert-item--neutral {
    border-color: rgba(43, 37, 41, 0.1);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font-weight: 600;
}

.storefront-alert-item--neutral strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.storefront-alert-item--total {
    border-color: rgba(217, 45, 71, 0.18);
    background: linear-gradient(180deg, rgba(255, 246, 247, 0.96), rgba(255, 252, 252, 0.98));
}

.storefront-alert-item--total strong {
    color: var(--accent-deep);
}

.storefront-alert-meta-label {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.storefront-alert-list--compact {
    gap: 8px;
}

.storefront-alert-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.storefront-alert-timer {
    margin-top: 14px;
}

.storefront-alert-timer-track {
    position: relative;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.12);
}

.storefront-alert-timer-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f97316, var(--accent));
    transition: width 0.9s linear;
}

.storefront-alert-timer-text {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.storefront-alert-close {
    width: 100%;
    margin-top: 0;
    cursor: pointer;
    background: linear-gradient(180deg, #e5e7eb, #cfd4dc);
    border: 1px solid rgba(43, 37, 41, 0.18);
    color: #221f21;
    box-shadow:
        0 10px 18px rgba(43, 37, 41, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.storefront-alert-close:hover {
    background: linear-gradient(180deg, #d8dde5, #c2c8d1);
    color: #171417;
}

.storefront-alert-submit.is-loading {
    position: relative;
    pointer-events: none;
}

.storefront-alert-submit.is-loading::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-top-color: #ffffff;
    border-radius: 999px;
    vertical-align: -2px;
    animation: storefront-spin 0.7s linear infinite;
}

.storefront-alert-submit:disabled {
    cursor: not-allowed;
    background: linear-gradient(180deg, #f4b4be, #e78a98);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    opacity: 0.88;
}

.storefront-alert-loading-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.storefront-alert-close:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

@media (min-width: 641px) {
    .storefront-alert-card--confirm {
        width: min(100%, 340px);
        padding: 18px;
        border-radius: 20px;
    }

    .storefront-alert-card--confirm .storefront-alert-title {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .storefront-alert-copy--confirm {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.5;
    }

    .storefront-alert-card--confirm .storefront-alert-confirm-hero {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 16px;
    }

    .storefront-alert-card--confirm .storefront-alert-confirm-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }

    .storefront-alert-card--confirm .storefront-alert-confirm-icon img {
        max-height: 22px;
    }

    .storefront-alert-card--confirm .storefront-alert-confirm-copy strong,
    .storefront-alert-card--confirm .storefront-alert-item--neutral strong {
        font-size: 17px;
    }

    .storefront-alert-card--confirm .storefront-alert-meta-label {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .storefront-alert-card--confirm .storefront-alert-list {
        gap: 7px;
        margin-bottom: 12px;
    }

    .storefront-alert-card--confirm .storefront-alert-item {
        padding: 11px 14px;
        border-radius: 14px;
        font-size: 12px;
        line-height: 1.4;
    }

    .storefront-alert-card--confirm .storefront-alert-actions {
        gap: 8px;
        margin-top: 12px;
    }

    .storefront-alert-card--confirm .storefront-alert-close,
    .storefront-alert-card--confirm .storefront-alert-submit {
        min-height: 42px;
        padding: 11px 16px;
        font-size: 12px;
    }
}

@keyframes storefront-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

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

.payment-option {
    position: relative;
}

.payment-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.payment-option > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 148px;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(43, 37, 41, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(43, 37, 41, 0.04);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
    position: relative;
}

.payment-option img {
    width: auto;
    max-width: 100%;
    height: 28px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.payment-option-meta {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
    min-width: 0;
}

.payment-option-total {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-deep);
    letter-spacing: -.02em;
}

.payment-option-fee {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
}

.payment-option input:checked + span {
    border-color: rgba(217, 45, 71, 0.32);
    box-shadow: 0 0 0 3px rgba(217, 45, 71, 0.1);
    background: rgba(255, 247, 248, 0.96);
    transform: translateY(-1px);
}

.payment-option input:checked + span::after {
    content: "Dipilih";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.panel {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, .74);
}

.panel h2 {
    margin: 0 0 14px;
    font-size: 20px;
    letter-spacing: -.04em;
}

.invoice-card {
    display: grid;
    gap: 28px;
}

.invoice-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.invoice-head > div:first-child {
    display: grid;
    gap: 14px;
}

.invoice-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.96);
    border: 1px solid rgba(201, 135, 0, 0.18);
    color: #7a5900;
    font-size: 12px;
    font-weight: 900;
}

.invoice-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f0b429;
    box-shadow: 0 0 0 5px rgba(240, 180, 41, 0.14);
}

.invoice-status.is-expired {
    background: rgba(255, 244, 246, 0.96);
    border-color: rgba(217, 45, 71, 0.16);
    color: var(--accent-deep);
}

.invoice-status.is-expired::before {
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(217, 45, 71, 0.12);
}

.invoice-status.is-completed {
    background: rgba(236, 255, 243, 0.96);
    border-color: rgba(18, 138, 73, 0.18);
    color: #17603a;
}

.invoice-status.is-completed::before {
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.invoice-total-card {
    display: grid;
    gap: 10px;
    padding: 26px 28px;
    border-radius: 22px;
    border: 1px solid rgba(217, 45, 71, 0.14);
    background:
        linear-gradient(135deg, rgba(217, 45, 71, 0.08), rgba(255, 255, 255, 0.86) 42%),
        rgba(255, 255, 255, 0.84);
}

.invoice-total-card span,
.invoice-total-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.invoice-total-card strong {
    color: var(--accent-deep);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.invoice-total-card small {
    margin-top: 0;
    line-height: 1.45;
}

.invoice-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: fit-content;
    margin-top: 4px;
    padding: 8px 10px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.96);
    border: 1px solid rgba(201, 135, 0, 0.18);
    color: #7a5900;
}

.invoice-countdown span {
    color: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.invoice-countdown strong {
    color: inherit;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
}

.payment-panel {
    display: grid;
    gap: 14px;
}

.storefront-checkout-detail .grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
    gap: 22px;
    align-items: start;
}

.panel-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.panel-title-row h2 {
    margin: 0;
}

.payment-method-logo {
    max-width: 88px;
    max-height: 30px;
    object-fit: contain;
}

.qr-payment-box {
    display: grid;
    place-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(20, 94, 72, 0.12);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.qr-payment-box img {
    width: min(100%, 320px);
    object-fit: contain;
    display: block;
}

.expired-payment-box {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(217, 45, 71, 0.16);
    background: rgba(255, 244, 246, 0.96);
    color: var(--accent-deep);
}

.completed-payment-box {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(18, 138, 73, 0.18);
    background: rgba(236, 255, 243, 0.96);
    color: #17603a;
}

.expired-payment-box strong,
.completed-payment-box strong {
    font-size: 15px;
}

.expired-payment-box span,
.completed-payment-box span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.invoice-pay-button {
    width: 100%;
}

.invoice-status-check-button {
    width: 100%;
}

.invoice-download-button {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
}

.payment-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(217, 45, 71, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 246, 247, .94));
    margin-bottom: 16px;
}

.payment-box img {
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    display: block;
}

.note {
    padding: 16px;
    border-radius: 18px;
    background: rgba(217, 45, 71, 0.06);
    border: 1px solid rgba(217, 45, 71, 0.1);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.deadline {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(36, 31, 34, 0.04);
    border: 1px solid rgba(43, 37, 41, 0.08);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.steps {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(43, 37, 41, 0.08);
    background: rgba(255, 255, 255, 0.74);
}

.payment-instructions {
    padding: 0;
    overflow: hidden;
}

.payment-instructions summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.payment-instructions summary::-webkit-details-marker {
    display: none;
}

.payment-instructions summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(217, 45, 71, 0.08);
    color: var(--accent-deep);
    font-size: 18px;
    line-height: 1;
}

.payment-instructions[open] summary {
    border-bottom: 1px solid rgba(43, 37, 41, 0.08);
}

.payment-instructions[open] summary::after {
    content: "-";
}

.payment-instructions .steps-section {
    padding: 14px 16px 0;
}

.payment-instructions .steps-section:last-child {
    padding-bottom: 14px;
}

.steps strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.steps-section + .steps-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(43, 37, 41, 0.08);
}

.steps-section span {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.steps ol {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .catalog,
    .payment-grid,
    .manual-product-grid,
    .trust-grid,
    .info-grid,
    .payment-options,
    .product-meta,
    .layout,
    .grid {
        grid-template-columns: 1fr;
    }

    .manual-product-grid,
    .trust-grid,
    .order-step-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-card {
        flex-basis: calc((100% - 16px) / 2);
    }

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

    .product-card {
        grid-column: span 2;
    }

    .storefront-checkout-detail .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .storefront-alert-backdrop {
        padding: 14px;
    }

    .storefront-alert-card {
        width: min(100%, 380px);
        padding: 18px;
        border-radius: 20px;
    }

    .storefront-alert-title {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .storefront-alert-copy {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.55;
    }

    .storefront-alert-confirm-hero {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 10px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .storefront-alert-confirm-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .storefront-alert-confirm-icon img {
        max-height: 22px;
    }

    .storefront-alert-confirm-copy strong,
    .storefront-alert-item--neutral strong {
        font-size: 16px;
        line-height: 1.1;
    }

    .storefront-alert-meta-label {
        margin-bottom: 3px;
        font-size: 10px;
    }

    .storefront-alert-list {
        gap: 8px;
        margin-bottom: 12px;
    }

    .storefront-alert-item {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1.45;
    }

    .storefront-alert-actions {
        gap: 8px;
        margin-top: 12px;
    }

    .storefront-alert-loading-note,
    .storefront-alert-timer-text {
        font-size: 11px;
    }

    .shell {
        width: min(100vw - 20px, 1180px);
    }

    .footer-card {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .catalog,
    .manual-product-grid,
    .trust-grid,
    .order-step-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex-basis: 100%;
    }

    .product-card {
        grid-column: auto;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .store-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
        padding: 22px 18px;
    }

    .store-footer-brand,
    .footer-customer-service,
    .footer-hours-wide,
    .footer-copyright {
        grid-column: 1 / -1;
    }

    .footer-column {
        gap: 9px;
        min-width: 0;
    }

    .footer-column a {
        overflow-wrap: anywhere;
        font-size: 12px;
        line-height: 1.45;
    }

    .footer-column h3 {
        font-size: 13px;
    }

    .topbar {
        padding: 14px 0 14px;
    }

    .topbar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 14px;
        border-radius: 24px;
    }

    .footer-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 0;
    }

    .brand {
        min-width: 0;
        justify-content: flex-start;
        gap: 12px;
        font-size: 17px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .brand-mark img {
        width: 30px;
        height: 30px;
    }

    .topbar-nav {
        display: contents;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        grid-column: 2;
    }

    .nav {
        width: 100%;
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nav.is-open,
    .actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nav-link,
    .button,
    .submit-button,
    .cta-mini {
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 14px;
    }

    .nav-link.primary::before {
        margin-right: 10px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }

    .floating-whatsapp-chat {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp-toggle {
        width: 58px;
        height: 58px;
    }

    .storefront-checkout-form .payment-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .storefront-home .payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .storefront-home .payment-card {
        min-height: 72px;
        padding: 14px;
        border-radius: 18px;
    }

    .storefront-home .payment-card img {
        max-height: 26px;
    }

    .manual-product-card,
    .review-card,
    .order-step-card,
    .trust-card,
    .info-card,
    .legal-item,
    .legal-timeline,
    .legal-timeline-step {
        border-radius: 18px;
    }

    .legal-actions,
    .legal-timeline-steps {
        grid-template-columns: 1fr;
    }

    .legal-actions {
        display: grid;
    }

    .order-step-card {
        min-height: 0;
    }

    .order-step-detail {
        padding: 18px;
        border-radius: 18px;
    }

    .order-step-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .order-step-actions .button {
        width: 100%;
    }

    .storefront-checkout-form .payment-option > span {
        min-height: 126px;
        padding: 14px 12px;
        gap: 10px;
    }

    .storefront-checkout-form .payment-option img {
        height: 24px;
    }

    .storefront-checkout-form .payment-option-total {
        font-size: 13px;
    }

    .storefront-checkout-form .payment-option-fee {
        font-size: 10px;
    }

    .product-bottom {
        align-items: stretch;
    }

    .product-top {
        gap: 10px;
    }

    .product-identity {
        flex: 1 1 auto;
        gap: 12px;
    }

    .product-identity > div:last-child {
        min-width: 0;
    }

    .product-name {
        font-size: 24px;
        line-height: 1.02;
        letter-spacing: -0.045em;
    }

    .product-badge {
        padding: 7px 10px;
        font-size: 11px;
    }

    .product-pricing {
        width: 100%;
        padding-right: 0;
    }

    .product-sales {
        padding: 13px;
        border-radius: 18px;
    }

    .product-sales-metrics {
        grid-template-columns: 1fr;
    }

    .product-card,
    .footer-card,
    .card {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 24px;
    }

    .product-summary {
        padding: 18px;
        border-radius: 22px;
    }

    .product-summary-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-summary-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .storefront-checkout-form .product-summary {
        padding: 14px;
        gap: 10px;
    }

    .storefront-checkout-form .product-summary-badge {
        top: 12px;
        right: 12px;
    }

    .storefront-checkout-form .product-summary-head {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .storefront-checkout-form .product-summary .product-logo {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .storefront-checkout-form .product-summary-title-row {
        gap: 8px;
    }

    .storefront-checkout-form .product-summary .product-name {
        font-size: 20px;
        line-height: 1.05;
    }

    .storefront-checkout-form .product-summary .product-badge {
        width: fit-content;
        max-width: 100%;
        padding: 5px 9px;
        font-size: 10px;
    }

    .storefront-checkout-form .product-summary .product-duration {
        font-size: 11px;
    }

    .storefront-checkout-form .product-summary .product-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .storefront-checkout-form .product-summary .meta-box {
        padding: 10px 12px;
        border-radius: 14px;
    }

    .storefront-checkout-form .product-summary .meta-box strong {
        font-size: 16px;
        line-height: 1.2;
    }

    .detail-row,
    .summary-row {
        flex-direction: column;
    }

    .summary-value {
        justify-items: start;
        text-align: left;
    }

    .summary-value small {
        max-width: none;
    }

    .summary-row--with-note {
        gap: 8px;
    }

    .summary-row--with-note .summary-value {
        width: 100%;
        justify-items: start;
        text-align: left;
    }

    .summary-row--with-note .summary-value strong {
        text-align: left;
    }

    .checkout-delivery-badge {
        align-items: flex-start;
        justify-content: flex-start;
        border-radius: 16px;
        font-size: 13px;
        text-align: left;
    }

    .order-summary-panel {
        padding: 16px;
    }

    .order-summary-panel h2 {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .detail-list-compact {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .detail-list-compact .detail-row {
        align-items: stretch;
        gap: 6px;
        padding: 12px 0;
        border-radius: 0;
    }

    .detail-list-compact .detail-row strong {
        font-size: 13px;
        line-height: 1.3;
        text-align: left;
    }

    .summary-status {
        padding: 6px 9px;
        font-size: 11px;
    }

    .storefront-checkout-detail .page-title {
        overflow-wrap: anywhere;
        font-size: 32px;
        line-height: 1;
    }

    .invoice-total-card {
        padding: 20px;
        border-radius: 18px;
    }

    .invoice-total-card strong {
        font-size: 34px;
    }

    .invoice-countdown {
        width: 100%;
    }

    .invoice-countdown strong {
        font-size: 16px;
    }

    .panel-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .qr-payment-box {
        padding: 10px;
        border-radius: 16px;
    }

    .qr-payment-box img {
        width: min(100%, 280px);
    }

    .product-top {
        flex-direction: row;
        align-items: flex-start;
    }

    .detail-row strong,
    .summary-row strong {
        text-align: left;
    }
}
