* {
    box-sizing: border-box;
}

:root {
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --line: #e5e7eb;
    --text: #111827;
    --muted: #64748b;
    --shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

body.storefront {
    margin: 0;
    background-color: var(--store-bg-color, #f6f8fb);
    background-image:
        radial-gradient(circle at top left, color-mix(in srgb, var(--theme-primary), transparent 88%), transparent 34%),
        var(--store-bg-image, none);
    background-size: auto, var(--store-bg-size, cover);
    background-repeat: no-repeat, var(--store-bg-repeat, no-repeat);
    background-attachment: scroll, var(--store-bg-attachment, scroll);
    background-position: top left, center;
    color: var(--text);
    font-family: var(--theme-font), Arial, sans-serif;
    line-height: 1.55;
}

body.storefront:before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

body.storefront > h1,
body.storefront > h2,
body.storefront > nav:not(.store-header__nav),
body.storefront > p,
body.storefront > ul,
body.storefront > table,
body.storefront > form,
body.storefront > div,
body.storefront > section {
    width: min(100% - 36px, 1180px);
    margin-left: auto;
    margin-right: auto;
}

body.storefront > h1 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
}

body.storefront > h2 {
    margin-top: 30px;
    color: #1f2937;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(226, 232, 240, .92);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 15px max(18px, calc((100vw - 1180px) / 2 + 18px));
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    backdrop-filter: blur(14px);
}

.store-header__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #111827;
    text-decoration: none;
}

.store-header__brand img,
.store-header__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.store-header__brand img {
    object-fit: cover;
    border: 1px solid var(--line);
}

.store-header__mark {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.store-header__nav,
body.storefront > nav:not(.store-header__nav) {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

body.storefront > nav:not(.store-header__nav) {
    padding: 12px 0;
}

.store-header__nav a,
body.storefront nav a,
body.storefront a {
    color: var(--theme-primary);
}

.store-header__nav a {
    color: #334155;
    background: #f1f5f9;
    padding: 8px 11px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.store-header__nav a:hover {
    color: #fff;
    background: var(--theme-primary);
}

body.storefront nav a {
    font-weight: 800;
    text-decoration: none;
}

body.storefront button,
body.storefront a[href*="payment/request"],
body.storefront a[href*="cart"],
body.storefront a[href*="checkout"],
.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    background: var(--theme-primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 900;
    cursor: pointer;
}

body.storefront table {
    width: min(100% - 36px, 1180px);
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

body.storefront th,
body.storefront td {
    border: 0;
    border-bottom: 1px solid #eef2f7;
    padding: 13px 14px;
    text-align: left;
}

body.storefront th {
    background: #f1f5f9;
    color: #334155;
}

body.storefront form {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    margin-top: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.home-hero--slider {
    position: relative;
}

.home-hero__slide {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 14px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--theme-primary), #111827 10%), color-mix(in srgb, var(--theme-secondary), #111827 20%));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.home-hero--slider .home-hero__slide {
    display: none;
}

.home-hero--slider .home-hero__slide.is-active {
    display: block;
    animation: heroFadeIn .35s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: .4;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero__slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .72), rgba(15, 23, 42, .2));
}

.home-hero__slide div {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    padding: 44px;
    color: #fff;
}

.home-hero__slide h1 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.12;
}

.home-hero__slide p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
}

.home-hero__slide a,
.store-popup a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff;
    color: #111827;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 900;
}

.home-hero__controls {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.home-hero__arrow,
.home-hero__dots button {
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, .56);
    background: rgba(15, 23, 42, .42);
    color: #ffffff;
    cursor: pointer;
}

.home-hero__arrow {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 900;
}

.home-hero__dots {
    display: flex;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .34);
    pointer-events: auto;
}

.home-hero__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    opacity: .56;
}

.home-hero__dots button.is-active {
    width: 24px;
    background: #ffffff;
    opacity: 1;
}

.home-section {
    margin-top: 28px;
}

.home-section h2 {
    margin: 0 0 14px;
}

.category-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}

.category-strip a.is-active {
    border-color: var(--theme-primary);
    background: var(--theme-primary);
    color: #fff;
}

.store-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 34px;
}

body.storefront .store-breadcrumb a,
body.storefront .store-breadcrumb a[href*="cart"] {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 8px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--theme-primary);
    box-shadow: none;
    text-decoration: none;
    font-weight: 900;
}

body.storefront .store-breadcrumb a.is-active {
    padding: 0 14px;
    background: var(--theme-primary);
    color: #fff;
}

.home-promo-grid,
.home-editorial,
.home-info-grid {
    width: min(100% - 36px, 1180px);
    margin: 28px auto 0;
}

.home-promo-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 14px;
}

.home-promo-card,
.home-info-grid article,
.home-editorial__feature {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.home-promo-card {
    min-height: 150px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
    border-radius: 14px;
}

.home-promo-card--large {
    min-height: 230px;
    grid-row: span 2;
    background:
        radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--theme-secondary), transparent 60%), transparent 9rem),
        linear-gradient(135deg, color-mix(in srgb, var(--theme-primary), #ffffff 80%), #ffffff);
}

.home-promo-card small,
.home-editorial small,
.home-info-grid small {
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.home-promo-card strong,
.home-editorial strong,
.home-info-grid strong {
    color: var(--text);
    font-size: 22px;
    line-height: 1.25;
}

.home-promo-card p,
.home-editorial p,
.home-info-grid p {
    margin: 0;
    color: var(--muted);
}

.home-promo-card a,
.home-editorial__feature > a {
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--theme-primary);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.home-editorial {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.4fr);
    gap: 18px;
    align-items: stretch;
}

.home-editorial__feature {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 360px;
    padding: 34px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .74)),
        radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--theme-secondary), transparent 58%), transparent 12rem);
}

.home-editorial__feature strong {
    font-size: 30px;
}

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

.home-section--new {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.home-section--new .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.home-info-grid article {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 14px;
}

.home-info-grid strong {
    font-size: 18px;
}

.builder-section,
.builder-card-grid,
.builder-card-section,
.builder-image-banner,
.builder-text-banner,
.builder-editorial {
    width: min(100% - 36px, 1180px);
    margin: 28px auto 0;
}

.builder-card-section {
    display: grid;
    gap: 22px;
}

.builder-card-section .builder-card-grid {
    width: 100%;
    margin: 0;
}

.builder-section-heading {
    display: grid;
    gap: 10px;
    max-width: 760px;
}

.builder-section-heading small {
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.builder-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.14;
}

.builder-section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.builder-section {
    padding: 26px 0;
}

.builder-section__lead {
    margin: -6px 0 18px;
    color: var(--muted);
}

.builder-hero small,
.builder-image-banner small,
.builder-text-banner small,
.builder-editorial small {
    color: var(--theme-secondary);
    font-weight: 900;
    letter-spacing: 2px;
}

.builder-hero--split {
    width: min(100% - 36px, 1180px);
    margin: 24px auto 0;
    border-radius: 22px;
    overflow: hidden;
}

.builder-hero--split .home-hero__slide {
    min-height: 460px;
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(340px, 1fr);
    align-items: center;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.builder-card-grid {
    padding: 0;
}

.builder-image-banner {
    min-height: 280px;
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.builder-image-banner img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    background: var(--surface-soft);
}

.builder-image-banner div,
.builder-text-banner {
    display: grid;
    gap: 10px;
}

.builder-image-banner strong,
.builder-text-banner strong {
    color: var(--text);
    font-size: 32px;
    line-height: 1.2;
}

.builder-image-banner p,
.builder-text-banner p {
    margin: 0;
    color: var(--muted);
}

.builder-image-banner a,
.builder-text-banner a {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--theme-primary);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.builder-text-banner {
    justify-items: center;
    text-align: center;
    padding: 48px 28px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--theme-secondary), transparent 72%), transparent 16rem),
        linear-gradient(135deg, color-mix(in srgb, var(--theme-primary), #ffffff 86%), #ffffff);
}

.builder-notice-bar,
.builder-coupon-banner,
.builder-logo-strip,
.builder-faq,
.builder-video,
.builder-product-feature {
    width: min(100% - 36px, 1180px);
    margin: 28px auto 0;
}

.builder-notice-bar {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
}

.builder-notice-bar small,
.builder-coupon-banner small,
.builder-video small,
.builder-product-feature small {
    color: var(--theme-secondary);
    font-weight: 900;
    letter-spacing: 1.5px;
}

.builder-notice-bar span {
    color: rgba(255, 255, 255, .78);
}

.builder-notice-bar a,
.builder-coupon-banner a,
.builder-product-feature a {
    margin-left: auto;
    color: #ffffff;
    font-weight: 900;
}

.builder-coupon-banner {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 26px;
    border-radius: 18px;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .14) 0 12px, transparent 12px 24px),
        linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #ffffff;
    text-align: center;
}

.builder-coupon-banner strong {
    font-size: 34px;
}

.builder-logo-strip {
    display: grid;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
}

.builder-logo-strip div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.builder-logo-strip span {
    min-height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--muted);
    font-weight: 900;
}

.builder-faq {
    display: grid;
    gap: 10px;
}

.builder-faq details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    padding: 16px 18px;
}

.builder-faq summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 900;
}

.builder-video {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.builder-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 14px;
    background: #111827;
}

.builder-product-feature {
    display: grid;
    grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
}

.builder-product-feature > div:first-child {
    display: grid;
    gap: 10px;
}

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

.store-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: min(360px, calc(100% - 36px));
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .18);
}

.store-popup strong {
    font-size: 19px;
}

.store-popup p {
    margin: 0;
    color: var(--muted);
}

.store-popup__close {
    justify-self: end;
    width: auto !important;
    padding: 7px 10px !important;
    background: #f1f5f9 !important;
    color: #334155 !important;
}

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

.page-heading {
    width: min(100% - 36px, 1180px);
    margin: 34px auto 24px;
}

.page-heading span {
    display: block;
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.page-heading h1 {
    margin: 8px 0 6px;
    font-size: 38px;
    line-height: 1.12;
}

.page-heading p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.product-detail__media {
    margin-top: 0;
    margin-bottom: 0;
}

.product-detail__summary {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.product-detail__summary h1 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.18;
}

.product-detail__eyebrow {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 800;
}

.product-purchase {
    width: 100%;
    margin: 18px 0 0;
    box-shadow: none;
    background: #f8fafc;
}

.product-description,
.empty-state,
.order-summary,
.alert-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.product-description {
    overflow: hidden;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.product-description img,
.product-description video,
.product-description iframe,
.product-description table {
    max-width: 100%;
}

.product-description img,
.product-description video,
.product-description iframe {
    display: block;
    height: auto;
    margin: 16px auto;
    border-radius: 12px;
}

.product-description table {
    display: block;
    overflow-x: auto;
}

.support-page {
    width: min(100% - 36px, 1200px);
    margin: 42px auto 72px;
}

.support-hero {
    min-height: 260px;
    display: grid;
    align-content: center;
    padding: clamp(34px, 6vw, 64px);
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 22%, rgba(96, 165, 250, .3), transparent 14rem),
        linear-gradient(135deg, #0F172A, #1D4ED8);
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.support-hero small,
.support-faq small,
.support-inquiry small {
    color: #2563EB;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.support-hero small {
    color: #93C5FD;
}

.support-hero h1 {
    margin: 10px 0 12px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.06;
}

.support-hero p {
    max-width: 620px;
    margin: 0;
    color: #DBEAFE;
    font-size: 18px;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 24px;
    margin-top: 28px;
}

.support-faq,
.support-inquiry {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.support-faq {
    padding: 30px;
}

.support-faq h2,
.support-inquiry h2 {
    margin: 8px 0 18px;
    color: #0F172A;
    font-size: 30px;
}

.support-faq details {
    border-top: 1px solid #E5E7EB;
    padding: 18px 0;
}

.support-faq details:first-of-type {
    border-top: 0;
}

.support-faq summary {
    cursor: pointer;
    color: #0F172A;
    font-size: 17px;
    font-weight: 900;
}

.support-faq p,
.support-inquiry p {
    color: #64748B;
    line-height: 1.75;
}

.support-inquiry {
    padding: 26px;
}

.support-inquiry form {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.support-inquiry label {
    display: grid;
    gap: 7px;
    color: #0F172A;
    font-weight: 800;
}

.support-inquiry input,
.support-inquiry select,
.support-inquiry textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    padding: 10px 12px;
    color: #111827;
    font: inherit;
}

.support-inquiry textarea {
    resize: vertical;
}

.support-inquiry button {
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: #2563EB;
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .24);
}

@media (max-width: 860px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
}

.alert-box--danger {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-weight: 800;
}

.store-toast {
    position: fixed;
    top: 86px;
    left: 50%;
    z-index: 1000;
    max-width: min(420px, calc(100vw - 32px));
    padding: 13px 18px;
    border: 1px solid #fecaca;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .22);
    opacity: 0;
    transform: translate(-50%, -12px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.store-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cart-layout {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.cart-cards {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.cart-card {
    display: grid;
    grid-template-columns: 64px minmax(220px, 1fr) 138px 128px 58px;
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cart-card:last-child {
    border-bottom: 0;
}

.cart-card__thumb {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafc;
    overflow: hidden;
}

.cart-card__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.cart-card__body,
.cart-card__price,
.cart-delete-form,
.cart-qty-form {
    display: grid;
    gap: 6px;
}

.cart-card__body strong {
    font-size: 17px;
    line-height: 1.25;
}

.cart-card__body span {
    color: var(--muted);
    font-weight: 700;
}

body.storefront .cart-qty-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    width: auto;
    justify-content: flex-end;
}

.cart-qty-form label {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    height: 32px;
}

.cart-qty-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

body.storefront .cart-qty-form input {
    width: 56px;
    max-width: 56px;
    height: 32px;
    margin: 5px 0 0;
    padding: 7px 8px;
    text-align: center;
    line-height: 16px;
}

body.storefront .cart-qty-form button,
body.storefront .cart-delete-form button {
    width: auto;
    min-height: 32px;
    height: 32px;
    min-width: 44px;
    margin: 0;
    padding: 0 10px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.cart-card__price {
    justify-items: end;
}

.cart-card__price span {
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
}

body.storefront .cart-delete-form {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    justify-items: end;
    width: auto;
}

body.storefront .cart-delete-form button {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #dbe4f0;
}

body.storefront .cart-qty-form button {
    background: var(--theme-primary);
    color: #ffffff;
}

.cart-delete-form button:hover,
.cart-qty-form button:hover {
    filter: brightness(.96);
}

.cart-summary {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.cart-summary > strong {
    font-size: 20px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-weight: 800;
}

.cart-summary b {
    color: var(--text);
}

.cart-summary hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}

.cart-summary .cart-summary__total b {
    color: var(--theme-primary);
    font-size: 24px;
}

.cart-summary__checkout,
.cart-summary__continue {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
}

.cart-summary__checkout {
    background: var(--theme-primary);
    color: #ffffff !important;
}

.cart-summary__continue {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--text) !important;
}

.checkout-panel,
.checkout-form {
    width: min(100% - 36px, 1180px);
}

.checkout-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

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

.section-title-row span,
.section-title-row a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.checkout-form {
    display: grid;
    gap: 22px;
    margin-bottom: 54px;
}

.checkout-submit {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}

.checkout-submit a {
    color: var(--muted);
    font-weight: 900;
}

.checkout-submit button {
    min-width: 180px;
    min-height: 48px;
}

.lookup-form {
    display: grid;
    gap: 14px;
    max-width: 560px;
}

.lookup-layout {
    width: min(100% - 36px, 1180px);
    margin: 0 auto 54px;
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(360px, 1.15fr);
    gap: 24px;
    align-items: stretch;
}

.lookup-guide,
.lookup-form {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.lookup-guide {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 30px;
    background:
        radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--theme-secondary), transparent 60%), transparent 9rem),
        var(--surface);
}

.lookup-guide small {
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.lookup-guide strong {
    color: var(--text);
    font-size: 24px;
    line-height: 1.3;
}

.lookup-guide p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.lookup-guide a {
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.lookup-form {
    max-width: none;
    padding: 24px;
}

.account-auth {
    display: grid;
    gap: 16px;
    max-width: 520px;
    margin-top: 34px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.account-auth h1 {
    margin: 0 0 6px;
}

.account-auth p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.social-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
}

.social-login-stack {
    display: grid;
    gap: 9px;
}

.social-login--kakao {
    background: #fee500;
    color: #191919 !important;
}

.social-login--naver {
    background: #03c75a;
    color: #ffffff !important;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.auth-divider:before,
.auth-divider:after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.auth-switch a {
    font-weight: 900;
}

.lookup-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 900;
}

.lookup-form input {
    width: 100%;
}

.lookup-form button {
    min-height: 48px;
}

.order-result-card {
    width: min(100% - 36px, 640px);
    margin: 54px auto;
    display: grid;
    gap: 12px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.order-result-card > span {
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.order-result-card h1 {
    margin: 0 0 8px;
}

.order-result-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.order-result-card__total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-weight: 900;
}

.order-result-card__total strong {
    color: var(--theme-primary);
    font-size: 26px;
}

.order-result-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.order-result-card__actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.order-result-card__actions a.is-primary {
    border-color: var(--theme-primary);
    background: var(--theme-primary);
    color: #ffffff;
}

.payment-bridge {
    width: min(100% - 36px, 620px);
    min-height: 520px;
    margin: 58px auto;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 16px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 56px rgba(15, 23, 42, .08);
    text-align: center;
}

.payment-bridge__loader {
    width: 54px;
    height: 54px;
    border: 5px solid #dbeafe;
    border-top-color: var(--theme-primary);
    border-radius: 999px;
    animation: paymentBridgeSpin .8s linear infinite;
}

@keyframes paymentBridgeSpin {
    to {
        transform: rotate(360deg);
    }
}

.payment-bridge__eyebrow {
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.payment-bridge h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.payment-bridge p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.payment-bridge__summary {
    width: 100%;
    display: grid;
    gap: 0;
    margin: 12px 0 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.payment-bridge__summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px;
}

.payment-bridge__summary div + div {
    border-top: 1px solid var(--line);
}

.payment-bridge__summary dt,
.payment-bridge__summary dd {
    margin: 0;
}

.payment-bridge__summary dt {
    color: var(--muted);
    font-weight: 800;
}

.payment-bridge__summary dd {
    color: var(--text);
    font-weight: 900;
}

.payment-bridge__actions {
    width: 100%;
    display: grid;
    gap: 10px;
}

.payment-bridge__primary,
.payment-bridge__secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
}

.payment-bridge__primary {
    background: var(--theme-primary);
    color: #ffffff;
}

.payment-bridge__secondary {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--text);
}

.payment-bridge--embed {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.payment-modal-open {
    overflow: hidden;
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.payment-modal.is-open {
    display: block;
}

.payment-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(4px);
}

.payment-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 560px);
    height: min(86vh, 760px);
    margin: 7vh auto;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 32px 90px rgba(15, 23, 42, .32);
}

.payment-modal__header {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px 0 18px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.payment-modal__header strong {
    margin-right: auto;
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
}

.payment-modal__header a,
.payment-modal__header button {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-weight: 900;
    text-decoration: none;
}

.payment-modal__header a {
    padding: 0 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: var(--theme-primary);
}

.payment-modal__header button {
    width: 36px;
    border: 0;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 22px;
    cursor: pointer;
}

.payment-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.address-card {
    display: grid;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 17px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.address-card span,
.address-card small {
    color: var(--muted);
}

.account-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.checkbox-row input {
    width: auto;
}

.empty-state {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.empty-state strong {
    color: var(--text);
    font-size: 18px;
}

.empty-state a,
.cart-actions a {
    width: fit-content;
}

.cart-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.order-summary {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 8px;
}

.order-summary strong {
    color: var(--muted);
}

.order-summary span {
    font-size: 28px;
    font-weight: 900;
    color: var(--theme-primary);
}

.checkout-items li strong,
.checkout-items li b {
    color: var(--text);
}

.checkout-items li b {
    font-size: 18px;
}

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

.status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: #e0f2fe;
    color: #075985;
    font-weight: 900;
    font-size: 13px;
}

.status-paid,
.status-ready {
    background: #dcfce7;
    color: #166534;
}

.status-failed,
.status-canceled,
.status-expired {
    background: #fee2e2;
    color: #991b1b;
}

.alert-box {
    display: grid;
    gap: 4px;
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
}

body.storefront label {
    display: block;
    font-weight: 800;
    color: #334155;
    margin-bottom: 12px;
}

body.storefront input,
body.storefront select,
body.storefront textarea {
    width: 100%;
    max-width: 560px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    padding: 10px 12px;
    margin-top: 6px;
    background: #fff;
}

body.storefront > ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

body.storefront > ul li {
    margin: 0;
}

body.storefront > ul a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--theme-primary);
    font-weight: 900;
    text-decoration: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
    gap: 18px;
    padding-top: 8px;
}

.product-card,
.checkout-items li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.product-card {
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card__cta,
.product-purchase__button {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--theme-primary);
    border-radius: 9px;
    background: var(--theme-primary);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.product-card__image,
.product-card__name {
    color: inherit;
    text-decoration: none;
}

.product-card__image {
    display: flex;
    padding: 0;
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
    cursor: pointer;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.product-card__name {
    display: block;
    padding: 0;
    background: transparent;
    color: var(--text);
    font-weight: 900;
}

.product-card__name:hover {
    color: var(--theme-primary);
}

.product-card__image:focus-visible,
.product-card__name:focus-visible {
    outline: 2px solid var(--theme-primary);
    outline-offset: 3px;
}

.product-card__cta:hover,
.product-purchase__button:hover {
    filter: brightness(.94);
}

.product-card__image,
.product-detail__media {
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    overflow: hidden;
}

.product-card__image {
    height: 176px;
}

.product-detail__media {
    min-height: 360px;
    margin-top: 14px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.product-card__image img,
.product-detail__media img,
.product-gallery img {
    width: 100%;
    height: 100%;
    display: block;
}

.product-card__image img {
    object-fit: contain;
    pointer-events: none;
}

.product-detail__media img,
.product-gallery img {
    object-fit: cover;
}

.product-gallery,
.checkout-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.checkout-items {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-gallery li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
}

.product-gallery img {
    height: 96px;
    border-radius: 9px;
    background: #eef2f7;
}

.price {
    font-weight: 900;
    color: var(--theme-primary);
    font-size: 19px;
}

.sold-out {
    color: #b91c1c;
    font-weight: 900;
}

.badge-stock {
    display: inline-flex;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
}

.store-footer {
    margin-top: 54px;
    padding: 30px max(18px, calc((100vw - 1180px) / 2 + 18px));
    background: #111827;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-footer strong {
    color: #fff;
}

.store-footer small {
    color: #9ca3af;
}

.theme-premium { background: #f8f5ef; }
.theme-minimal { background: #fff; }
.theme-fashion { background: #fff5f7; }
.theme-beauty { background: #fff7fb; }
.theme-food { background: #fffaf0; }
.theme-digital { background: #f5f9ff; }
.theme-b2b { background: #f7f9fb; }
.theme-lifestyle { background: #f7fbf7; }

.layout-wide > section,
.layout-wide > h1,
.layout-wide > h2,
.layout-wide > table,
.layout-wide > form,
.layout-wide > div {
    width: min(100% - 28px, 1320px);
}

.layout-compact > section,
.layout-compact > h1,
.layout-compact > h2,
.layout-compact > table,
.layout-compact > form,
.layout-compact > div {
    width: min(100% - 44px, 960px);
}

.layout-editorial .home-section,
.layout-magazine .home-section {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.layout-editorial .home-section h2,
.layout-magazine .home-section h2 {
    position: sticky;
    top: 92px;
    font-size: 28px;
}

.layout-lookbook .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.layout-lookbook .product-card__image {
    height: 360px;
}

.layout-soft .home-hero__slide,
.layout-warm .home-hero__slide {
    min-height: 280px;
}

.layout-grid .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.layout-dense .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.layout-dense .product-card {
    padding: 11px;
    gap: 6px;
}

.layout-dense .product-card__image {
    height: 128px;
}

.header-sticky .store-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 3px solid var(--theme-primary);
}

.header-simple .store-header {
    background: rgba(255, 255, 255, .92);
}

.header-centered .store-header {
    justify-content: center;
    flex-direction: column;
    gap: 9px;
}

.header-transparent .store-header {
    position: absolute;
    inset: 5px 0 auto 0;
    background: rgba(255, 255, 255, .18);
    border-bottom-color: rgba(255, 255, 255, .24);
    box-shadow: none;
}

.header-transparent .home-hero {
    margin-top: 0;
}

.header-transparent .home-hero__slide div {
    padding-top: 132px;
}

.header-utility .store-header {
    border-top: 4px solid var(--theme-primary);
    background: #fff;
}

.header-warm .store-header {
    background: #fff7ed;
}

.card-clean .product-card {
    box-shadow: none;
    border-color: #dbeafe;
}

.card-minimal .product-card {
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
}

.card-luxury .product-card {
    border-color: rgba(212, 175, 55, .38);
    box-shadow: 0 18px 42px rgba(80, 50, 20, .09);
}

.card-image-focus .product-card {
    padding: 0;
    overflow: hidden;
}

.card-image-focus .product-card > :not(.product-card__image) {
    margin-left: 15px;
    margin-right: 15px;
}

.card-image-focus .product-card__cta {
    margin-bottom: 15px;
}

.card-soft-card .product-card {
    border-color: #fbcfe8;
    background: #fffafd;
}

.card-menu-card .product-card {
    border-left: 5px solid var(--theme-primary);
}

.card-spec-card .product-card,
.card-data-card .product-card {
    border-radius: 6px;
    box-shadow: none;
}

.card-data-card .product-card {
    font-size: 14px;
}

.card-story-card .product-card {
    border-radius: 20px 6px 20px 6px;
}

.banner-split .home-hero__slide div {
    margin-left: auto;
    background: rgba(255, 255, 255, .92);
    color: #111827;
}

.banner-split .home-hero__slide p {
    color: #475569;
}

.banner-text .home-hero__slide {
    min-height: 240px;
    background: #fff;
    border: 1px solid var(--line);
}

.banner-text .home-hero__slide:before {
    display: none;
}

.banner-text .home-hero__slide div {
    color: #111827;
}

.banner-text .home-hero__slide p {
    color: var(--muted);
}

.banner-full .home-hero {
    width: 100%;
    max-width: none;
}

.banner-full .home-hero__slide {
    border-radius: 0;
    min-height: 440px;
}

.banner-pastel .home-hero__slide {
    background: linear-gradient(135deg, #fce7f3, #e0f2fe);
}

.banner-pastel .home-hero__slide:before {
    background: rgba(255, 255, 255, .22);
}

.banner-photo .home-hero__slide {
    min-height: 360px;
}

.banner-tech .home-hero__slide {
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .88), rgba(6, 182, 212, .76)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 28px);
}

.banner-seasonal .home-hero__slide {
    background: linear-gradient(135deg, #ecfccb, #fed7aa);
}

.banner-plain .home-hero__slide {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
}

.banner-image .home-hero__slide,
.banner-photo .home-hero__slide {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .75), rgba(15, 23, 42, .08)),
        linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    background-size: cover;
}

.banner-simple .home-hero__slide {
    min-height: 230px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.banner-simple .home-hero__slide:before {
    display: none;
}

.banner-simple .home-hero__slide div,
.banner-simple .home-hero__slide p {
    color: var(--text);
}

.footer-columns .store-footer,
.footer-rich .store-footer {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(120px, 1fr));
}

.footer-compact .store-footer {
    padding-top: 18px;
    padding-bottom: 18px;
}

.footer-corporate .store-footer {
    background: #0f172a;
    border-top: 4px solid var(--theme-primary);
}

.footer-simple .store-footer {
    background: #ffffff;
}

.footer-brand .store-footer {
    background: #111827;
    border-top: 0;
}

.footer-brand .store-footer:before {
    content: "";
    display: block;
    height: 5px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

/* Preset identities */
.theme-basic {
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --line: #dbe4f0;
    --text: #111827;
    --muted: #64748b;
}

.theme-basic .store-header {
    background: rgba(255, 255, 255, .94);
}

.theme-basic .home-hero__slide {
    border-radius: 14px;
}

.theme-basic .product-card {
    border-top: 4px solid var(--theme-primary);
}

.theme-basic .account-auth {
    border-top: 4px solid var(--theme-primary);
}

.theme-modern {
    --surface: #ffffff;
    --surface-soft: #ecfeff;
    --line: #c7e7df;
    --text: #10201e;
    --muted: #55716d;
    background:
        linear-gradient(180deg, #ecfdf5 0, #f8fafc 360px),
        #f8fafc;
}

.theme-modern .store-header {
    border-bottom: 0;
    background: rgba(15, 118, 110, .95);
}

.theme-modern .store-header__brand,
.theme-modern .store-header__nav a {
    color: #ffffff;
}

.theme-modern .store-header__nav a {
    background: rgba(255, 255, 255, .16);
}

.theme-modern .product-card {
    border-color: #99f6e4;
}

.theme-modern .home-hero__slide {
    border-radius: 24px;
}

.theme-modern .category-strip a,
.theme-modern .product-card__cta {
    border-radius: 999px;
}

.theme-modern .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.theme-modern .product-card {
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f0fdfa);
}

.theme-minimal {
    --surface: #ffffff;
    --surface-soft: #ffffff;
    --line: #e5e7eb;
    --text: #111827;
    --muted: #6b7280;
    background: #ffffff;
}

.theme-minimal:before {
    height: 1px;
    background: #111827;
}

.theme-minimal .store-header {
    box-shadow: none;
    border-bottom: 1px solid #111827;
}

.theme-minimal .store-header__nav a {
    border-radius: 0;
    background: transparent;
    border-bottom: 2px solid transparent;
}

.theme-minimal .store-header__nav a:hover {
    color: #111827;
    background: transparent;
    border-bottom-color: #111827;
}

.theme-minimal .home-hero__slide,
.theme-minimal .product-card,
.theme-minimal .product-detail__summary,
.theme-minimal form,
.theme-minimal table {
    border-radius: 0;
    box-shadow: none;
}

.theme-minimal .product-grid {
    gap: 0;
    border-top: 1px solid #111827;
}

.theme-minimal .product-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    padding: 18px 0;
}

.theme-minimal .product-card__image {
    height: 96px;
    border-radius: 0;
}

.theme-minimal .product-card__cta {
    grid-column: 2;
    width: fit-content;
    min-width: 140px;
}

.theme-premium {
    --surface: #fffdf8;
    --surface-soft: #f8f3ff;
    --line: #d8c9f8;
    --text: #241a3a;
    --muted: #6b5c85;
    background:
        linear-gradient(180deg, #f7f1ff 0, #fffdf8 420px),
        #fffdf8;
}

.theme-premium .store-header {
    background: #241a3a;
    border-bottom: 4px solid #d4af37;
}

.theme-premium .store-header__brand,
.theme-premium .store-header__nav a {
    color: #fffdf8;
}

.theme-premium .store-header__nav a {
    background: rgba(212, 175, 55, .18);
}

.theme-premium .product-card,
.theme-premium .product-detail__summary,
.theme-premium .order-summary {
    border-color: rgba(212, 175, 55, .45);
}

.theme-premium .home-hero__slide {
    min-height: 430px;
    border: 1px solid rgba(212, 175, 55, .55);
    border-radius: 26px 6px;
}

.theme-premium .home-section h2 {
    color: #4c2b7a;
}

.theme-premium .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.theme-premium .product-card {
    padding: 22px;
    border-radius: 28px 8px;
    background: #fffdf8;
}

.theme-fashion {
    --surface: #ffffff;
    --surface-soft: #fff1f6;
    --line: #f9a8d4;
    --text: #111827;
    --muted: #7a4a61;
    background:
        linear-gradient(180deg, #111827 0, #111827 230px, #fff5f7 230px),
        #fff5f7;
}

.theme-fashion .store-header {
    background: rgba(17, 24, 39, .92);
    border-bottom-color: rgba(255, 255, 255, .16);
}

.theme-fashion .store-header__brand,
.theme-fashion .store-header__nav a {
    color: #ffffff;
}

.theme-fashion .store-header__nav a {
    background: rgba(219, 39, 119, .28);
}

.theme-fashion > h1,
.theme-fashion > h2 {
    color: #111827;
}

.theme-fashion .home-hero {
    width: 100%;
    max-width: none;
    margin-top: 0;
}

.theme-fashion .home-hero__slide {
    min-height: 520px;
    border-radius: 0;
}

.theme-fashion.header-transparent .home-hero__slide div {
    padding-top: 148px;
}

.theme-fashion .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.theme-fashion .product-card {
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #ffffff;
}

.theme-fashion .product-card__image {
    height: 380px;
}

.theme-fashion .product-card strong,
.theme-fashion .product-card span,
.theme-fashion .product-card .price,
.theme-fashion .product-card__cta {
    margin-left: 18px;
    margin-right: 18px;
}

.theme-beauty {
    --surface: #fffafd;
    --surface-soft: #fdf2f8;
    --line: #fbcfe8;
    --text: #3b1128;
    --muted: #8b5f75;
    background:
        linear-gradient(180deg, #fff7fb 0, #fdf2f8 420px),
        #fffafd;
}

.theme-beauty .store-header {
    background: rgba(255, 250, 253, .94);
}

.theme-beauty .store-header__mark,
.theme-beauty .home-hero__slide,
.theme-beauty button {
    border-radius: 22px;
}

.theme-beauty .product-card {
    background: #fffafd;
    border-color: #fbcfe8;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(190, 24, 93, .10);
}

.theme-beauty .home-section {
    background: rgba(255, 250, 253, .68);
    border-radius: 24px;
    padding: 22px;
}

.theme-beauty .account-auth,
.theme-beauty .lookup-form {
    border-radius: 24px;
}

.theme-beauty > h1,
.theme-beauty > h2,
.theme-beauty > nav:not(.store-header__nav),
.theme-beauty > p,
.theme-beauty > ul,
.theme-beauty > .product-grid {
    width: min(100% - 36px, 1080px);
}

.theme-beauty > h1 {
    margin-top: 42px;
    margin-bottom: 18px;
    text-align: center;
    color: #3b1128;
}

.theme-beauty > nav:not(.store-header__nav) {
    justify-content: center;
    padding: 6px 0 18px;
}

.theme-beauty > p {
    text-align: center;
    color: #8b5f75;
}

.theme-beauty > h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    text-align: center;
    color: #3b1128;
}

.theme-beauty > ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 0;
    margin-bottom: 24px;
}

.theme-beauty > ul li {
    margin: 0;
}

.theme-beauty > ul a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid #fbcfe8;
    border-radius: 999px;
    background: rgba(255, 250, 253, .92);
    color: #be185d;
    font-weight: 900;
    text-decoration: none;
}

.theme-beauty .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    justify-content: center;
    gap: 22px;
}

.theme-beauty .product-card {
    padding: 14px;
}

.theme-beauty .product-card__image {
    height: 210px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .9), transparent 5.5rem),
        linear-gradient(135deg, #fdf2f8, #eef2ff);
}

.theme-beauty .badge-stock {
    justify-content: center;
}

.theme-beauty .store-footer {
    background: #3b1128;
    color: #fce7f3;
}

.theme-beauty .store-footer strong {
    color: #ffffff;
}

.theme-beauty .store-footer small,
.theme-beauty .store-footer span {
    color: #fbcfe8;
}

.theme-food {
    --surface: #ffffff;
    --surface-soft: #fff7ed;
    --line: #fed7aa;
    --text: #2b170b;
    --muted: #855c3a;
    background:
        linear-gradient(180deg, #fff7ed 0, #f0fdf4 430px),
        #fffaf0;
}

.theme-food .store-header {
    background: #2b170b;
}

.theme-food .store-header__brand,
.theme-food .store-header__nav a {
    color: #fff7ed;
}

.theme-food .store-header__nav a {
    background: rgba(234, 88, 12, .26);
}

.theme-food .product-card {
    border-style: dashed;
}

.theme-food .home-hero__slide {
    border-radius: 30px;
    min-height: 340px;
}

.theme-food .product-card {
    border-left: 6px solid #ea580c;
    background: #fffaf0;
}

.theme-food .price {
    color: #ea580c;
}

.theme-food .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.theme-food .product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
}

.theme-food .product-card__image {
    height: 132px;
    grid-row: span 5;
}

.theme-food .product-card__cta {
    width: fit-content;
    min-width: 132px;
}

.theme-digital {
    --surface: #ffffff;
    --surface-soft: #eff6ff;
    --line: #bfdbfe;
    --text: #0f172a;
    --muted: #475569;
    background:
        linear-gradient(180deg, #e0f2fe 0, #f8fafc 420px),
        #f5f9ff;
}

.theme-digital .store-header {
    background: #0f172a;
    border-bottom-color: #06b6d4;
}

.theme-digital .store-header__brand,
.theme-digital .store-header__nav a {
    color: #e0f2fe;
}

.theme-digital .store-header__nav a {
    background: rgba(6, 182, 212, .18);
    border-radius: 6px;
}

.theme-digital .product-card {
    border-radius: 6px;
}

.theme-digital .home-hero__slide {
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .9), rgba(6, 182, 212, .74)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 28px);
}

.theme-digital .product-card,
.theme-digital .product-detail__summary {
    border-color: #93c5fd;
    box-shadow: 0 0 0 1px rgba(6, 182, 212, .08), 0 18px 44px rgba(37, 99, 235, .1);
}

.theme-digital .product-card__cta,
.theme-digital .product-purchase__button {
    background: #0f172a;
    border-color: #06b6d4;
}

.theme-b2b {
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --line: #cbd5e1;
    --text: #0f172a;
    --muted: #475569;
    background: #f7f9fb;
}

.theme-b2b .store-header {
    background: #ffffff;
    border-top: 5px solid #334155;
    box-shadow: none;
}

.theme-b2b .store-header__nav a,
.theme-b2b .product-card__cta,
.theme-b2b button {
    border-radius: 4px;
}

.theme-b2b .product-card,
.theme-b2b table,
.theme-b2b form {
    box-shadow: none;
}

.theme-b2b .home-hero__slide {
    min-height: 250px;
    border-radius: 4px;
    box-shadow: none;
}

.theme-b2b .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}

.theme-b2b .product-card {
    padding: 12px;
    border-radius: 4px;
}

.theme-b2b .product-card__image {
    height: 112px;
}

.theme-b2b .product-card__cta {
    min-height: 36px;
}

.theme-lifestyle {
    --surface: #ffffff;
    --surface-soft: #f7fee7;
    --line: #d9f99d;
    --text: #1f2a13;
    --muted: #64744a;
    background:
        linear-gradient(180deg, #f7fee7 0, #fff7ed 420px),
        #f7fbf7;
}

.theme-lifestyle .store-header {
    background: rgba(255, 255, 255, .93);
    border-bottom: 3px solid #65a30d;
}

.theme-lifestyle .product-card {
    border-radius: 20px 8px;
}

.theme-lifestyle .home-section {
    padding-top: 10px;
    border-top: 1px solid #d9f99d;
}

.theme-lifestyle .home-section {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.theme-lifestyle .home-section h2 {
    margin: 0;
    font-size: 30px;
}

.theme-lifestyle .home-hero__slide {
    border-radius: 28px 8px;
}

.theme-lifestyle .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Stronger storefront preset treatments */
.theme-basic .category-strip,
.theme-basic .home-section {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .74);
}

.theme-basic .home-section h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.theme-basic .home-section h2:before {
    content: "";
    width: 7px;
    height: 24px;
    border-radius: 999px;
    background: var(--theme-primary);
}

.theme-modern .home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.theme-modern .home-hero__slide {
    min-height: 390px;
    background:
        linear-gradient(120deg, rgba(15, 118, 110, .94), rgba(245, 158, 11, .7)),
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .28), transparent 16rem);
}

.theme-modern .category-strip {
    justify-content: center;
    padding: 16px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(15, 118, 110, .1);
}

.theme-modern .product-card__image {
    border-radius: 18px;
}

.theme-minimal .category-strip {
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827;
    border-radius: 0;
    padding: 12px 0;
}

.theme-minimal .category-strip a {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    padding-right: 18px;
}

.theme-minimal .home-section {
    margin-top: 42px;
}

.theme-minimal .home-section h2 {
    font-size: 18px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.theme-premium .store-header__mark,
.theme-premium .product-card__cta,
.theme-premium .product-purchase__button {
    background: linear-gradient(135deg, #4c1d95, #d4af37);
}

.theme-premium .category-strip {
    justify-content: center;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, .32);
    background: rgba(255, 253, 248, .9);
    border-radius: 22px 6px;
}

.theme-premium .category-strip a {
    border-color: rgba(212, 175, 55, .42);
    background: #fffaf0;
}

.theme-fashion .category-strip {
    width: min(100% - 36px, 1320px);
    justify-content: center;
    margin-top: -26px;
    padding: 14px;
    position: relative;
    z-index: 2;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 20px 44px rgba(17, 24, 39, .16);
}

.theme-fashion .category-strip a {
    border: 0;
    border-radius: 0;
    background: #111827;
    color: #ffffff;
}

.theme-fashion .home-section h2 {
    font-size: 34px;
}

.theme-fashion .product-card__cta {
    margin-bottom: 18px;
}

.theme-beauty .home-hero__slide {
    background:
        linear-gradient(135deg, rgba(190, 24, 93, .82), rgba(249, 168, 212, .74)),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .45), transparent 14rem);
}

.theme-beauty .category-strip {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 250, 253, .9);
    border: 1px solid #fbcfe8;
}

.theme-beauty .category-strip a,
.theme-beauty .product-card__cta,
.theme-beauty .product-purchase__button {
    border-radius: 999px;
}

.theme-food .category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.theme-food .category-strip a {
    justify-content: center;
    min-height: 46px;
    border-color: #fed7aa;
    border-style: dashed;
    background: #fff7ed;
    color: #7c2d12;
}

.theme-food .home-section h2 {
    color: #7c2d12;
}

.theme-digital .category-strip {
    padding: 14px;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(30, 64, 175, .86)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
}

.theme-digital .category-strip a {
    border-color: rgba(6, 182, 212, .46);
    border-radius: 5px;
    background: rgba(6, 182, 212, .14);
    color: #e0f2fe;
}

.theme-digital .home-section h2 {
    color: #0f172a;
}

.theme-b2b .category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
}

.theme-b2b .category-strip a {
    justify-content: center;
    border-radius: 3px;
    background: #f8fafc;
}

.theme-b2b .home-section h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid #cbd5e1;
    font-size: 20px;
}

.theme-lifestyle .category-strip {
    align-content: start;
    padding: 18px;
    border-radius: 24px 8px;
    background: rgba(247, 254, 231, .92);
    border: 1px solid #d9f99d;
}

.theme-lifestyle .category-strip a {
    border-color: #bef264;
    background: #ffffff;
}

.footer-info .store-footer {
    background: #1f2937;
}

/* Catalog-quality storefront skins */
.home-section--categories {
    position: relative;
}

.home-section--recommended {
    padding-bottom: 12px;
}

.theme-basic .home-hero__slide {
    border: 1px solid #dbe4f0;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .88), rgba(16, 185, 129, .50)),
        linear-gradient(135deg, #dbeafe, #ecfdf5);
}

.theme-basic .home-section--recommended .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.theme-basic .home-promo-card,
.theme-basic .home-info-grid article {
    border-radius: 12px;
}

.theme-basic .store-footer {
    background: #0f172a;
}

.theme-modern {
    background:
        linear-gradient(180deg, #f3fffc 0, #ffffff 52%, #ecfdf5 100%);
}

.theme-modern .store-header {
    padding-top: 22px;
    padding-bottom: 22px;
}

.theme-modern .home-hero__slide {
    min-height: 440px;
    border-radius: 0;
    box-shadow: none;
}

.theme-modern .home-hero__slide div {
    width: min(720px, 100%);
}

.theme-modern .home-hero__slide h1 {
    font-size: 46px;
}

.theme-modern .home-section--categories {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

.theme-modern .home-section--recommended {
    padding: 30px;
    border: 1px solid #c7e7df;
    border-radius: 28px;
    background: #ffffff;
}

.theme-modern .home-promo-grid {
    margin-top: 34px;
}

.theme-modern .home-promo-card,
.theme-modern .home-editorial__feature,
.theme-modern .home-info-grid article {
    border-color: #c7e7df;
    border-radius: 28px;
}

.theme-modern .product-card__image {
    height: 260px;
    background: #eefcf8;
}

.theme-minimal {
    background: #ffffff;
}

.theme-minimal .store-header {
    padding-top: 28px;
    padding-bottom: 24px;
}

.theme-minimal .store-header__brand {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.theme-minimal .home-hero__slide {
    min-height: 340px;
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827;
    background: #f5f5f4;
}

.theme-minimal .home-hero__slide div {
    color: #111827;
}

.theme-minimal .home-hero__slide p {
    color: #525252;
}

.theme-minimal .home-hero__slide a {
    border: 1px solid #111827;
    border-radius: 0;
}

.theme-minimal .product-card strong {
    font-size: 17px;
}

.theme-minimal .home-promo-grid,
.theme-minimal .home-info-grid {
    gap: 0;
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827;
}

.theme-minimal .home-promo-card,
.theme-minimal .home-editorial__feature,
.theme-minimal .home-info-grid article {
    border-width: 0 1px 0 0;
    border-color: #111827;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

.theme-minimal .home-promo-card:last-child,
.theme-minimal .home-info-grid article:last-child {
    border-right: 0;
}

.theme-minimal .home-editorial {
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827;
    gap: 0;
}

.theme-premium .home-hero {
    margin-top: 36px;
}

.theme-premium .home-hero__slide {
    display: flex;
    align-items: center;
    min-height: 470px;
    background:
        linear-gradient(90deg, rgba(36, 26, 58, .92), rgba(36, 26, 58, .16)),
        radial-gradient(circle at 80% 32%, rgba(212, 175, 55, .42), transparent 16rem),
        #fff8e7;
}

.theme-premium .home-section--categories {
    margin-top: 20px;
}

.theme-premium .home-section--recommended {
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, .34);
    border-radius: 28px 8px;
    background: linear-gradient(180deg, #fffdf8, #fbf7ef);
}

.theme-premium .home-promo-card,
.theme-premium .home-editorial__feature,
.theme-premium .home-info-grid article {
    border-color: rgba(212, 175, 55, .34);
    border-radius: 28px 8px;
    background: #fffdf8;
}

.theme-premium .home-promo-card--large {
    background:
        radial-gradient(circle at 82% 22%, rgba(212, 175, 55, .26), transparent 10rem),
        linear-gradient(135deg, #fffdf8, #f8f3ff);
}

.theme-premium .product-card__image {
    height: 250px;
    background: #f8f3ff;
}

.theme-fashion .store-header {
    position: relative;
    z-index: 5;
}

.theme-fashion .home-hero__slide {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .78), rgba(17, 24, 39, .08)),
        linear-gradient(135deg, #fce7f3, #f8fafc);
}

.theme-fashion .home-hero__slide h1 {
    max-width: 720px;
    font-size: 52px;
}

.theme-fashion .home-section--recommended {
    width: min(100% - 36px, 1320px);
}

.theme-fashion .home-promo-grid,
.theme-fashion .home-editorial,
.theme-fashion .home-info-grid {
    width: min(100% - 36px, 1320px);
}

.theme-fashion .home-promo-card,
.theme-fashion .home-editorial__feature,
.theme-fashion .home-info-grid article {
    border: 0;
    border-radius: 0;
    background: #ffffff;
}

.theme-fashion .home-promo-card--large {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .92), rgba(219, 39, 119, .68)),
        #111827;
}

.theme-fashion .home-promo-card--large small,
.theme-fashion .home-promo-card--large strong,
.theme-fashion .home-promo-card--large p {
    color: #ffffff;
}

.theme-fashion .product-card strong {
    font-size: 20px;
}

.theme-fashion .product-card__cta {
    border-radius: 0;
    background: #111827;
}

.theme-beauty .home-hero {
    width: min(100% - 36px, 1120px);
}

.theme-beauty .home-hero__slide {
    min-height: 390px;
    box-shadow: 0 26px 80px rgba(190, 24, 93, .16);
}

.theme-beauty .home-hero__slide div {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.theme-beauty .home-section--recommended {
    background:
        linear-gradient(180deg, rgba(255, 250, 253, .92), rgba(253, 242, 248, .72));
}

.theme-beauty .home-promo-card,
.theme-beauty .home-editorial__feature,
.theme-beauty .home-info-grid article {
    border-color: #fbcfe8;
    border-radius: 26px;
    background: rgba(255, 250, 253, .9);
}

.theme-food .home-hero__slide {
    display: flex;
    align-items: center;
    min-height: 420px;
    border: 1px dashed #fdba74;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(124, 45, 18, .88), rgba(234, 88, 12, .18)),
        radial-gradient(circle at 78% 30%, rgba(22, 163, 74, .35), transparent 15rem),
        #fff7ed;
}

.theme-food .home-hero__slide:before {
    background:
        linear-gradient(90deg, rgba(43, 23, 11, .86), rgba(234, 88, 12, .16)),
        rgba(255, 247, 237, .58);
}

.theme-food .home-hero__slide:after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -74px;
    z-index: 0;
    width: 330px;
    height: 330px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 34% 34%, #ea580c 0 18%, transparent 19%),
        radial-gradient(circle at 62% 48%, #16a34a 0 24%, transparent 25%),
        radial-gradient(circle at 46% 66%, #facc15 0 18%, transparent 19%),
        rgba(255, 255, 255, .62);
    pointer-events: none;
}

.theme-food .home-hero__slide div {
    width: min(560px, 100%);
}

.theme-food .home-hero__slide h1 {
    font-size: 44px;
}

.theme-food .home-section--categories,
.theme-food .home-section--recommended {
    padding: 18px;
    border: 1px dashed #fdba74;
    background: rgba(255, 250, 240, .86);
}

.theme-food .home-section--recommended .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
}

.theme-food .home-promo-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.theme-food .home-promo-card,
.theme-food .home-editorial__feature,
.theme-food .home-info-grid article {
    border: 1px dashed #fdba74;
    border-radius: 18px;
    background: #fffaf0;
}

.theme-food .home-promo-card--large {
    background:
        radial-gradient(circle at 82% 20%, rgba(22, 163, 74, .22), transparent 9rem),
        linear-gradient(135deg, #fff7ed, #fef3c7);
}

.theme-food .home-editorial__products {
    grid-template-columns: 1fr;
}

.theme-digital .home-hero__slide {
    min-height: 420px;
    box-shadow: 0 24px 70px rgba(37, 99, 235, .18);
}

.theme-digital .home-hero__slide h1 {
    font-size: 44px;
}

.theme-digital .home-section--recommended {
    padding: 20px;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(239, 246, 255, .95));
}

.theme-digital .home-promo-card,
.theme-digital .home-editorial__feature,
.theme-digital .home-info-grid article {
    border-color: #93c5fd;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(239, 246, 255, .9));
}

.theme-digital .home-promo-card--large {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(37, 99, 235, .78));
}

.theme-digital .home-promo-card--large small,
.theme-digital .home-promo-card--large strong,
.theme-digital .home-promo-card--large p {
    color: #e0f2fe;
}

.theme-digital .product-card__image {
    background:
        linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.theme-b2b .home-hero {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
}

.theme-b2b .home-hero:before {
    content: "BRAND LIST\A BEST ITEM\A ORDER\A NOTICE\A Q&A";
    white-space: pre-line;
    padding: 22px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    line-height: 2.4;
}

.theme-b2b .home-hero__slide {
    min-height: 340px;
    border: 1px solid #cbd5e1;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .74), rgba(51, 65, 85, .08)),
        #f8fafc;
}

.theme-b2b .home-section--categories,
.theme-b2b .home-section--recommended {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
}

.theme-b2b .home-section--categories h2,
.theme-b2b .home-section--recommended h2 {
    margin: 0;
}

.theme-b2b .home-promo-grid,
.theme-b2b .home-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.theme-b2b .home-promo-card,
.theme-b2b .home-editorial__feature,
.theme-b2b .home-info-grid article {
    border-color: #cbd5e1;
    border-radius: 4px;
    box-shadow: none;
}

.theme-b2b .home-editorial {
    grid-template-columns: 260px minmax(0, 1fr);
}

.theme-b2b .home-editorial__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-lifestyle .home-hero__slide {
    min-height: 440px;
    background:
        linear-gradient(90deg, rgba(31, 42, 19, .78), rgba(31, 42, 19, .10)),
        radial-gradient(circle at 78% 30%, rgba(249, 115, 22, .32), transparent 16rem),
        #f7fee7;
}

.theme-lifestyle .home-section--categories {
    border-top: 0;
    padding: 22px;
    background: rgba(255, 255, 255, .74);
}

.theme-lifestyle .home-section--recommended {
    padding: 28px 0;
    border-top: 1px solid #d9f99d;
    border-bottom: 1px solid #d9f99d;
}

.theme-lifestyle .product-card__image {
    height: 240px;
    background: #f7fee7;
}

body.storefront .home-hero--slider .home-hero__slide {
    display: none;
}

body.storefront .home-hero--slider .home-hero__slide.is-active {
    display: block;
}

body.storefront.theme-food .home-hero--slider .home-hero__slide.is-active {
    display: flex;
}

body.storefront .store-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: block;
    padding: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

body.storefront .store-header__utility,
body.storefront .store-header__main {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.storefront .store-header__utility {
    min-height: 32px;
    border-bottom: 1px solid #eef2f7;
    color: #64748b;
    font-size: 12px;
    justify-content: flex-end;
}

body.storefront .store-header__account,
body.storefront .store-header__nav {
    display: flex;
    align-items: center;
}

body.storefront .store-header__account {
    gap: 14px;
}

body.storefront .store-header__main {
    min-height: 74px;
}

body.storefront .store-header__brand {
    color: #111827;
}

body.storefront .store-header__brand img,
body.storefront .store-header__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

body.storefront .store-header__nav {
    gap: 28px;
}

body.storefront .store-header__account a,
body.storefront .store-header__nav a,
body.storefront .store-header a[href*="cart"],
body.storefront .store-header a[href*="order/lookup"],
body.storefront .store-header a[href*="account"] {
    width: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
}

body.storefront .store-header__account a {
    padding: 0;
    font-size: 12px;
    font-weight: 700;
}

body.storefront .store-header__nav a,
body.storefront .store-header a[href*="cart"] {
    padding: 27px 0 24px;
    border-bottom: 3px solid transparent;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

body.storefront .store-header__account a:hover,
body.storefront .store-header__nav a:hover {
    background: transparent;
    color: var(--theme-primary);
}

body.storefront .store-header__nav a:hover {
    border-bottom-color: var(--theme-primary);
}

body.storefront .store-header__nav a.is-active,
body.storefront .store-header a[href*="cart"].is-active {
    color: var(--theme-primary);
    border-bottom-color: var(--theme-primary);
}

/* Cafe24 sample-inspired preset refinements */
body.storefront.theme-minimal .store-header {
    background: #ffffff;
    border-bottom: 1px solid #111827;
}

body.storefront.theme-minimal .store-header__utility {
    border-bottom: 1px solid #e5e7eb;
}

body.storefront.theme-minimal .store-header__main {
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

body.storefront.theme-minimal .store-header__brand {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

body.storefront.theme-minimal .store-header__mark {
    display: none;
}

body.storefront.theme-minimal .store-header__nav {
    width: 100%;
    justify-content: center;
    gap: 36px;
    border-top: 1px solid #111827;
}

body.storefront.theme-minimal .store-header__nav a {
    padding: 13px 0 10px;
    font-size: 12px;
}

body.storefront.theme-minimal .home-hero {
    width: 100%;
    max-width: none;
    margin-top: 0;
}

body.storefront.theme-minimal .home-hero__slide {
    min-height: 430px;
    border: 0;
    border-bottom: 1px solid #d4d4d8;
    background:
        linear-gradient(90deg, #f4f4f5 0 64%, #ffffff 64% 100%),
        #f4f4f5;
}

body.storefront.theme-minimal .home-hero__slide:before {
    display: none;
}

body.storefront.theme-minimal .home-hero__slide div {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 82px 18px;
    color: #111827;
}

body.storefront.theme-minimal .home-hero__slide h1 {
    max-width: 560px;
    font-size: 42px;
    font-weight: 500;
}

body.storefront.theme-minimal .home-hero__slide p {
    max-width: 520px;
    color: #525252;
}

body.storefront.theme-minimal .home-section--categories,
body.storefront.theme-minimal .home-section--recommended {
    width: min(100% - 36px, 1180px);
    padding: 0;
    border: 0;
    background: transparent;
}

body.storefront.theme-minimal .home-promo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.storefront.theme-minimal .home-promo-card--large {
    grid-column: span 2;
    grid-row: auto;
}

body.storefront.theme-premium .store-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(36, 26, 58, .16);
}

body.storefront.theme-premium .store-header__utility {
    border-bottom: 1px solid rgba(36, 26, 58, .12);
}

body.storefront.theme-premium .store-header__main {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

body.storefront.theme-premium .store-header__brand {
    color: #241a3a;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

body.storefront.theme-premium .store-header__nav {
    justify-content: center;
    gap: 32px;
}

body.storefront.theme-premium .store-header__nav a {
    color: #241a3a;
    padding: 10px 0;
}

body.storefront.theme-premium .home-hero {
    width: 100%;
    max-width: none;
    margin-top: 0;
}

body.storefront.theme-premium .home-hero__slide {
    min-height: 500px;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, .96) 0 52%, rgba(36, 26, 58, .08) 52% 100%),
        linear-gradient(135deg, #fffdf8, #f8f3ff);
}

body.storefront.theme-premium .home-hero__slide:before {
    background: linear-gradient(90deg, rgba(36, 26, 58, .05), rgba(36, 26, 58, .34));
}

body.storefront.theme-premium .home-hero__slide div {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding-top: 94px;
    color: #241a3a;
}

body.storefront.theme-premium .home-hero__slide p {
    color: #6b5c85;
}

body.storefront.theme-premium .home-hero__slide a {
    background: #241a3a;
    color: #fffdf8;
}

body.storefront.theme-premium .home-promo-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
}

body.storefront.theme-premium .home-promo-card,
body.storefront.theme-premium .home-info-grid article {
    box-shadow: none;
}

body.storefront.theme-fashion .store-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

body.storefront.theme-fashion .store-header__utility {
    min-height: 28px;
    background: #111827;
    border-bottom: 0;
}

body.storefront.theme-fashion .store-header__account a {
    color: #f8fafc;
}

body.storefront.theme-fashion .store-header__main {
    min-height: 92px;
}

body.storefront.theme-fashion .store-header__brand,
body.storefront.theme-fashion .store-header__nav a {
    color: #111827;
}

body.storefront.theme-fashion .store-header__nav {
    gap: 30px;
}

body.storefront.theme-fashion .home-hero {
    width: min(100% - 36px, 1320px);
    max-width: none;
    margin-top: 22px;
}

body.storefront.theme-fashion .home-hero__slide {
    min-height: 470px;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96) 0 46%, rgba(17, 24, 39, .06) 46% 100%),
        linear-gradient(135deg, #fff5f7, #ffffff);
}

body.storefront.theme-fashion .home-hero__slide:before {
    display: none;
}

body.storefront.theme-fashion .home-hero__slide div {
    color: #111827;
}

body.storefront.theme-fashion .home-hero__slide p {
    color: #4b5563;
}

body.storefront.theme-fashion .home-section--recommended,
body.storefront.theme-fashion .home-promo-grid,
body.storefront.theme-fashion .home-editorial,
body.storefront.theme-fashion .home-info-grid {
    width: min(100% - 36px, 1320px);
}

body.storefront.theme-lifestyle .store-header {
    background: #ffffff;
    border-bottom: 1px solid #d9f99d;
}

body.storefront.theme-lifestyle .store-header__main {
    min-height: 92px;
}

body.storefront.theme-lifestyle .home-hero {
    width: min(100% - 36px, 1180px);
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 16px;
}

body.storefront.theme-lifestyle .home-hero:before {
    content: "BRAND LIST\A BEST ITEM\A NEW ARRIVAL\A EVENT\A REVIEW";
    white-space: pre-line;
    padding: 22px 20px;
    border: 1px solid #d9f99d;
    background: #ffffff;
    color: #1f2a13;
    font-size: 12px;
    font-weight: 900;
    line-height: 2.5;
}

body.storefront.theme-lifestyle .home-hero__slide {
    border-radius: 0;
    min-height: 430px;
    background:
        linear-gradient(90deg, rgba(247, 254, 231, .96) 0 55%, rgba(249, 115, 22, .08) 55% 100%),
        #ffffff;
}

body.storefront.theme-lifestyle .home-hero__slide:before {
    background: linear-gradient(90deg, rgba(31, 42, 19, .04), rgba(31, 42, 19, .24));
}

body.storefront.theme-lifestyle .home-hero__slide div {
    color: #1f2a13;
}

body.storefront.theme-lifestyle .home-hero__slide p {
    color: #64744a;
}

body.storefront.theme-lifestyle .home-hero__slide a {
    background: #1f2a13;
    color: #ffffff;
}

body.storefront.theme-lifestyle .home-promo-grid,
body.storefront.theme-lifestyle .home-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.storefront.theme-lifestyle .home-promo-card,
body.storefront.theme-lifestyle .home-editorial__feature,
body.storefront.theme-lifestyle .home-info-grid article {
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 720px) {
    body.storefront > h1 {
        font-size: 25px;
    }

    .store-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .store-header__nav {
        width: 100%;
        justify-content: space-between;
    }

    body.storefront .store-header {
        position: static;
    }

    body.storefront .store-header__utility {
        display: none;
    }

    body.storefront .store-header__main {
        width: min(100% - 28px, 1180px);
        min-height: 68px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        padding: 14px 0;
    }

    body.storefront .store-header__nav {
        width: 100%;
        gap: 18px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    body.storefront .store-header__nav a,
    body.storefront .store-header a[href*="cart"] {
        min-height: 34px;
        padding: 0 10px;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        background: #ffffff;
        font-size: 12px;
        letter-spacing: .04em;
    }

    body.storefront .store-header__nav a:hover,
    body.storefront .store-header__nav a.is-active,
    body.storefront .store-header a[href*="cart"].is-active {
        border-color: var(--theme-primary);
        background: var(--theme-primary);
        color: #ffffff;
    }

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

    .home-promo-grid,
    .home-editorial,
    .home-info-grid,
    .home-editorial__products {
        grid-template-columns: 1fr;
    }

    .home-promo-card--large {
        min-height: 190px;
        grid-row: auto;
    }

    .home-editorial__feature {
        min-height: 260px;
        padding: 24px;
    }

    .home-editorial__feature strong {
        font-size: 24px;
    }

    .theme-lifestyle .home-section {
        grid-template-columns: 1fr;
    }

    .theme-minimal .product-card,
    .theme-food .product-card {
        display: flex;
    }

    .theme-minimal .product-card__cta,
    .theme-food .product-card__cta {
        width: 100%;
    }

    .theme-food .product-grid {
        grid-template-columns: 1fr;
    }

    .theme-b2b .home-hero,
    .theme-b2b .home-section--categories,
    .theme-b2b .home-section--recommended {
        grid-template-columns: 1fr;
    }

    .theme-b2b .home-hero:before {
        display: none;
    }

    body.storefront.theme-lifestyle .home-hero {
        grid-template-columns: 1fr;
    }

    body.storefront.theme-lifestyle .home-hero:before {
        display: none;
    }

    body.storefront.theme-minimal .home-hero__slide,
    body.storefront.theme-premium .home-hero__slide,
    body.storefront.theme-fashion .home-hero__slide,
    body.storefront.theme-lifestyle .home-hero__slide {
        min-height: 340px;
    }

    body.storefront.theme-minimal .home-hero__slide div,
    body.storefront.theme-premium .home-hero__slide div {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .theme-modern .home-hero__slide h1,
    .theme-fashion .home-hero__slide h1,
    .theme-digital .home-hero__slide h1 {
        font-size: 34px;
    }

    .theme-food .home-section--recommended .product-grid {
        grid-template-columns: 1fr;
    }

    .theme-beauty > ul {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .theme-beauty .product-grid {
        grid-template-columns: 1fr;
    }

    .theme-beauty .product-card__image {
        height: 190px;
    }

    .theme-fashion .home-hero__slide {
        min-height: 360px;
    }

    .theme-fashion .category-strip {
        margin-top: 18px;
        justify-content: flex-start;
    }

    .home-hero__controls {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .home-hero__arrow {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .product-card__image {
        height: 230px;
    }

    .payment-modal__dialog {
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .payment-modal__header {
        min-height: 54px;
    }

    .product-detail__media {
        min-height: 230px;
    }

    .product-detail,
    .checkout-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-detail__summary h1 {
        font-size: 24px;
    }

    .order-summary {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .lookup-layout {
        grid-template-columns: 1fr;
    }

    .lookup-guide {
        padding: 22px;
    }

    .cart-card {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .cart-card__thumb {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .cart-qty-form,
    .cart-card__price,
    .cart-delete-form {
        grid-column: 1 / -1;
    }

    .cart-qty-form {
        align-items: center;
        justify-content: flex-start;
    }

    .cart-card__price {
        justify-items: start;
    }

    .cart-delete-form {
        justify-items: start;
    }

    .cart-summary {
        position: static;
    }

    body.storefront table {
        display: block;
        overflow-x: auto;
        width: calc(100% - 24px);
    }

    body.storefront form {
        margin-left: 12px;
        margin-right: 12px;
        padding: 15px;
    }

    body.storefront .cart-qty-form,
    body.storefront .cart-delete-form {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    body.storefront .cart-qty-form button,
    body.storefront .cart-delete-form button {
        width: auto;
        margin-top: 0;
    }

    body.storefront input,
    body.storefront select,
    body.storefront textarea {
        max-width: none;
    }

    body.storefront button,
    body.storefront a[href*="payment/request"],
    body.storefront a[href*="cart"],
    body.storefront a[href*="checkout"],
    .cart-actions a,
    .empty-state a {
        width: 100%;
        margin-top: 6px;
    }

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

body.storefront .category-strip a.is-active {
    border-color: var(--theme-primary);
    background: var(--theme-primary);
    color: #fff;
}

body.storefront.theme-builder {
    --shadow: 0 12px 28px rgba(15, 23, 42, .06);
    background-color: #ffffff;
    background-image: var(--store-bg-image, none);
}

body.storefront.theme-builder:before {
    display: none;
}

body.storefront.theme-builder .store-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
}

body.storefront.theme-builder .store-header__utility {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

body.storefront.theme-builder .store-header__account {
    justify-content: flex-end;
    gap: 18px;
}

body.storefront.theme-builder .store-header__account a {
    padding: 0;
    background: transparent;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

body.storefront.theme-builder .store-header__main {
    width: min(100% - 36px, 1180px);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    margin: 0 auto;
    padding: 28px 0 0;
}

body.storefront.theme-builder .store-header__brand {
    justify-content: center;
}

body.storefront.theme-builder .store-header__brand strong {
    font-size: 24px;
    letter-spacing: .02em;
}

body.storefront.theme-builder .store-header__mark,
body.storefront.theme-builder .store-header__brand img {
    width: 46px;
    height: 46px;
    border-radius: 6px;
}

body.storefront.theme-builder .store-header__nav {
    width: 100%;
    justify-content: center;
    gap: 44px;
    padding: 18px 0 16px;
    border-top: 1px solid #f1f5f9;
}

body.storefront.theme-builder .store-header__nav a {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #111827;
    font-size: 13px;
    letter-spacing: .08em;
}

body.storefront.theme-builder .store-header__nav a:hover,
body.storefront.theme-builder .store-header__nav a.is-active {
    color: var(--theme-primary);
    background: transparent;
}

body.storefront.theme-builder .store-header__menu {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(currentColor 0 0) center 11px / 24px 2px no-repeat,
        linear-gradient(currentColor 0 0) center 19px / 24px 2px no-repeat,
        linear-gradient(currentColor 0 0) center 27px / 24px 2px no-repeat;
    color: #111827;
}

body.storefront.theme-builder.builder-header-center .store-header__main {
    gap: 24px;
    padding-top: 32px;
}

body.storefront.theme-builder.builder-header-overlay .store-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .46), rgba(15, 23, 42, 0));
    color: #ffffff;
}

body.storefront.theme-builder.builder-header-overlay .store-header__utility {
    border-bottom-color: rgba(255, 255, 255, .12);
}

body.storefront.theme-builder.builder-header-overlay .store-header__brand,
body.storefront.theme-builder.builder-header-overlay .store-header__account a,
body.storefront.theme-builder.builder-header-overlay .store-header__nav a,
body.storefront.theme-builder.builder-header-overlay .store-header__menu {
    color: #ffffff;
}

body.storefront.theme-builder.builder-header-overlay .store-header__nav {
    border-top-color: rgba(255, 255, 255, .14);
}

body.storefront.theme-builder.builder-header-hamburger .store-header__main,
body.storefront.theme-builder.builder-nav-hamburger .store-header__main {
    grid-template-columns: 48px 1fr auto;
}

body.storefront.theme-builder.builder-header-hamburger .store-header__menu,
body.storefront.theme-builder.builder-header-overlay .store-header__menu,
body.storefront.theme-builder.builder-nav-hamburger .store-header__menu {
    display: block;
}

body.storefront.theme-builder.builder-header-hamburger .store-header__brand,
body.storefront.theme-builder.builder-nav-hamburger .store-header__brand {
    justify-self: center;
}

body.storefront.theme-builder.builder-nav-hamburger .store-header__nav a:not(:last-child) {
    display: none;
}

body.storefront.theme-builder.builder-nav-icons .store-header__nav {
    gap: 12px;
}

body.storefront.theme-builder.builder-nav-icons .store-header__nav a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(17, 24, 39, .18);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0;
}

body.storefront.theme-builder > h1,
body.storefront.theme-builder > h2 {
    text-align: center;
}

body.storefront.theme-builder .home-hero {
    width: min(100%, 1600px);
    margin-top: 0;
}

body.storefront.theme-builder .home-hero__slide {
    min-height: 500px;
    border-radius: 0;
    box-shadow: none;
}

body.storefront.theme-builder .home-hero__slide:before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .38), rgba(255, 255, 255, 0));
}

body.storefront.theme-builder .home-hero__slide div {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 36px;
    color: #111827;
}

body.storefront.theme-builder .home-hero__slide h1,
body.storefront.theme-builder .builder-section h2,
body.storefront.theme-builder .builder-faq h2 {
    letter-spacing: .04em;
}

body.storefront.theme-builder .home-hero__slide p {
    color: #374151;
}

body.storefront.theme-builder .home-hero__slide a,
body.storefront.theme-builder .builder-image-banner a,
body.storefront.theme-builder .builder-text-banner a,
body.storefront.theme-builder .builder-product-feature a {
    border-radius: 0;
    background: #111827;
    letter-spacing: .04em;
}

body.storefront.theme-builder .builder-section,
body.storefront.theme-builder .builder-card-grid,
body.storefront.theme-builder .builder-image-banner,
body.storefront.theme-builder .builder-text-banner,
body.storefront.theme-builder .builder-editorial,
body.storefront.theme-builder .builder-logo-strip,
body.storefront.theme-builder .builder-faq,
body.storefront.theme-builder .builder-video,
body.storefront.theme-builder .builder-product-feature {
    margin-top: 72px;
    border-radius: 0;
    box-shadow: none;
}

body.storefront.theme-builder .builder-section {
    text-align: center;
}

body.storefront.theme-builder .builder-section__lead {
    margin-right: auto;
    margin-left: auto;
}

body.storefront.theme-builder .category-strip {
    justify-content: center;
}

body.storefront.theme-builder .category-strip a {
    border-radius: 0;
    background: transparent;
    color: #111827;
}

body.storefront.theme-builder.builder-category-bar .category-strip {
    justify-content: center;
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

body.storefront.theme-builder.builder-category-bar .category-strip a {
    border: 0;
}

body.storefront.theme-builder.builder-category-hamburger .category-strip::before,
body.storefront.theme-builder.builder-category-layered .category-strip::before {
    content: "";
    width: 38px;
    height: 38px;
    border: 1px solid #d1d5db;
    background:
        linear-gradient(#111827 0 0) center 11px / 22px 2px no-repeat,
        linear-gradient(#111827 0 0) center 19px / 22px 2px no-repeat,
        linear-gradient(#111827 0 0) center 27px / 22px 2px no-repeat;
}

body.storefront.theme-builder.builder-category-layered .category-strip {
    align-items: flex-start;
    justify-content: flex-start;
}

body.storefront.theme-builder.builder-category-layered .category-strip a {
    min-width: 120px;
    padding: 12px 16px;
    border-color: #e5e7eb;
    background: #ffffff;
    box-shadow: 10px 10px 0 rgba(15, 23, 42, .05);
}

body.storefront.theme-builder.builder-skin-solution {
    --theme-primary: #1f5eff;
    --theme-secondary: #14b8a6;
    --surface: #ffffff;
    --surface-soft: #eef6ff;
    --line: #d9e6f5;
    --text: #0b1220;
    --muted: #53627a;
    background:
        linear-gradient(180deg, #f7fbff 0, #ffffff 560px),
        #ffffff;
    color: #0b1220;
}

body.storefront.theme-builder.builder-skin-solution .store-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(217, 230, 245, .86);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 34px rgba(15, 23, 42, .06);
    backdrop-filter: blur(16px);
}

body.storefront.theme-builder.builder-skin-solution .store-header__utility {
    display: none;
}

body.storefront.theme-builder.builder-skin-solution .store-header__main {
    width: min(100% - 40px, 1180px);
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    align-items: center;
    gap: 30px;
    padding: 16px 0;
}

body.storefront.theme-builder.builder-skin-solution .store-header__brand {
    justify-content: flex-start;
}

body.storefront.theme-builder.builder-skin-solution .store-header__mark,
body.storefront.theme-builder.builder-skin-solution .store-header__brand img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1f5eff, #14b8a6);
}

body.storefront.theme-builder.builder-skin-solution .store-header__brand strong {
    font-size: 18px;
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .store-header__nav {
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    border-top: 0;
}

body.storefront.theme-builder.builder-skin-solution .store-header__nav a {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .store-header__nav a:hover,
body.storefront.theme-builder.builder-skin-solution .store-header__nav a.is-active {
    border-color: #cfe0ff;
    background: #eff6ff;
    color: #1f5eff;
}

body.storefront.theme-builder.builder-skin-solution .home-hero {
    width: min(100% - 40px, 1180px);
    margin-top: 34px;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide {
    min-height: 620px;
    border: 1px solid #d9e6f5;
    border-radius: 8px;
    background:
        linear-gradient(120deg, #f8fbff 0 52%, rgba(31, 94, 255, .08) 52% 100%),
        radial-gradient(circle at 78% 22%, rgba(20, 184, 166, .22), transparent 20rem),
        #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .10);
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide:before {
    background: none;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide:after {
    content: "";
    position: absolute;
    right: 54px;
    top: 88px;
    width: min(43%, 470px);
    height: 390px;
    border: 1px solid rgba(148, 163, 184, .34);
    border-radius: 8px;
    background:
        linear-gradient(#ffffff 0 0) 24px 24px / 160px 18px no-repeat,
        linear-gradient(90deg, #1f5eff, #14b8a6) 24px 64px / calc(100% - 48px) 96px no-repeat,
        linear-gradient(#dbe7f6 0 0) 24px 190px / calc(100% - 48px) 1px no-repeat,
        linear-gradient(#e8f0fb 0 0) 24px 224px / 38% 74px no-repeat,
        linear-gradient(#e8f0fb 0 0) 54% 224px / 38% 74px no-repeat,
        linear-gradient(#dbe7f6 0 0) 24px 330px / calc(100% - 48px) 1px no-repeat,
        linear-gradient(#eef4fb 0 0) 24px 356px / 76% 12px no-repeat,
        #ffffff;
    box-shadow: 0 34px 76px rgba(31, 94, 255, .18);
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide div {
    width: min(560px, 100%);
    margin: 0;
    padding: 88px 56px;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide small,
body.storefront.theme-builder.builder-skin-solution .builder-section h2 + .builder-section__lead,
body.storefront.theme-builder.builder-skin-solution .builder-image-banner small,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner small {
    color: #1f5eff;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide h1 {
    max-width: 560px;
    color: #0b1220;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide p {
    max-width: 520px;
    color: #53627a;
    font-size: 17px;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide a,
body.storefront.theme-builder.builder-skin-solution .builder-image-banner a,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner a,
body.storefront.theme-builder.builder-skin-solution .builder-product-feature a {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    background: #1f5eff;
    box-shadow: 0 14px 34px rgba(31, 94, 255, .24);
}

body.storefront.theme-builder.builder-skin-solution .builder-section,
body.storefront.theme-builder.builder-skin-solution .builder-card-grid,
body.storefront.theme-builder.builder-skin-solution .builder-card-section,
body.storefront.theme-builder.builder-skin-solution .builder-image-banner,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner,
body.storefront.theme-builder.builder-skin-solution .builder-logo-strip,
body.storefront.theme-builder.builder-skin-solution .builder-faq,
body.storefront.theme-builder.builder-skin-solution .builder-notice-bar,
body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner {
    width: min(100% - 40px, 1180px);
    margin-top: 72px;
}

body.storefront.theme-builder.builder-skin-solution .builder-notice-bar {
    min-height: 68px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, #0f172a, #17315f);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
}

body.storefront.theme-builder.builder-skin-solution .builder-logo-strip {
    border: 0;
    padding: 0;
    background: transparent;
}

body.storefront.theme-builder.builder-skin-solution .builder-logo-strip strong,
body.storefront.theme-builder.builder-skin-solution .builder-section h2,
body.storefront.theme-builder.builder-skin-solution .builder-faq h2 {
    color: #0b1220;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .builder-logo-strip span,
body.storefront.theme-builder.builder-skin-solution .home-promo-card,
body.storefront.theme-builder.builder-skin-solution .home-info-grid article,
body.storefront.theme-builder.builder-skin-solution .builder-faq details {
    border: 1px solid #d9e6f5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 42px rgba(15, 23, 42, .06);
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card {
    min-height: 250px;
    align-content: start;
    padding: 28px;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card small,
body.storefront.theme-builder.builder-skin-solution .home-info-grid small {
    color: #1f5eff;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card strong {
    font-size: 22px;
}

body.storefront.theme-builder.builder-skin-solution .home-info-grid {
    width: min(100% - 40px, 1180px);
    margin-top: 72px;
}

body.storefront.theme-builder.builder-skin-solution .home-info-grid article {
    padding: 26px;
}

body.storefront.theme-builder.builder-skin-solution .builder-image-banner {
    min-height: 380px;
    grid-template-columns: .8fr 1.2fr;
    padding: 42px;
    border: 1px solid #d9e6f5;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 94, 255, .08), rgba(20, 184, 166, .08)),
        #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

body.storefront.theme-builder.builder-skin-solution .builder-image-banner:before {
    content: "";
    display: block;
    aspect-ratio: 4 / 3;
    border: 1px solid #cfe0ff;
    border-radius: 8px;
    background:
        linear-gradient(90deg, #1f5eff, #14b8a6) 24px 24px / calc(100% - 48px) 52px no-repeat,
        linear-gradient(#dbe7f6 0 0) 24px 106px / 78% 10px no-repeat,
        linear-gradient(#e8f0fb 0 0) 24px 142px / calc(100% - 48px) 72px no-repeat,
        linear-gradient(#e8f0fb 0 0) 24px 236px / 42% 72px no-repeat,
        linear-gradient(#e8f0fb 0 0) 54% 236px / 38% 72px no-repeat,
        #ffffff;
    box-shadow: inset 0 0 0 8px #f8fbff;
}

body.storefront.theme-builder.builder-skin-solution .builder-image-banner img {
    display: none;
}

body.storefront.theme-builder.builder-skin-solution .builder-image-banner strong,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner strong {
    color: #0b1220;
    font-size: clamp(30px, 3.2vw, 46px);
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .builder-text-banner {
    border: 1px solid #d9e6f5;
    border-radius: 8px;
    background: #101828;
    color: #ffffff;
}

body.storefront.theme-builder.builder-skin-solution .builder-text-banner strong,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner p {
    color: #ffffff;
}

body.storefront.theme-builder.builder-skin-solution .builder-faq {
    gap: 12px;
}

body.storefront.theme-builder.builder-skin-solution .builder-faq details {
    padding: 20px 22px;
}

body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner {
    border-radius: 8px;
    background:
        linear-gradient(135deg, #1f5eff, #14b8a6);
    box-shadow: 0 24px 70px rgba(31, 94, 255, .22);
}

body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner strong {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner:after {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    margin-top: -1px;
}

body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner {
    scroll-margin-top: 96px;
}

/* Polished solution sales landing treatment */
body.storefront.theme-builder.builder-skin-solution .home-hero {
    width: min(100% - 40px, 1240px);
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide {
    min-height: 660px;
    border: 1px solid rgba(191, 219, 254, .9);
    background:
        linear-gradient(112deg, rgba(255, 255, 255, .98) 0 47%, rgba(219, 234, 254, .70) 47% 100%),
        radial-gradient(circle at 18% 18%, rgba(31, 94, 255, .13), transparent 19rem),
        radial-gradient(circle at 86% 24%, rgba(20, 184, 166, .18), transparent 17rem),
        #ffffff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .13);
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide:after {
    right: 58px;
    top: 82px;
    width: min(46%, 520px);
    height: 430px;
    border: 1px solid rgba(191, 219, 254, .95);
    background:
        linear-gradient(90deg, #1f5eff, #14b8a6) 28px 28px / calc(100% - 56px) 92px no-repeat,
        linear-gradient(#ffffff 0 0) 52px 52px / 120px 12px no-repeat,
        linear-gradient(rgba(255,255,255,.52) 0 0) 52px 76px / 260px 10px no-repeat,
        linear-gradient(#dbeafe 0 0) 28px 152px / calc(100% - 56px) 1px no-repeat,
        linear-gradient(135deg, #f8fbff, #eef6ff) 28px 184px / 45% 88px no-repeat,
        linear-gradient(135deg, #f8fbff, #eef6ff) 53% 184px / 39% 88px no-repeat,
        linear-gradient(90deg, #1f5eff 0 64%, #dbeafe 64%) 52px 302px / 76% 12px no-repeat,
        linear-gradient(90deg, #14b8a6 0 46%, #dbeafe 46%) 52px 334px / 70% 12px no-repeat,
        linear-gradient(90deg, #8b5cf6 0 58%, #dbeafe 58%) 52px 366px / 72% 12px no-repeat,
        #ffffff;
    box-shadow: 0 40px 90px rgba(31, 94, 255, .22);
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide div {
    width: min(610px, 100%);
    padding: 94px 58px;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide small {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    letter-spacing: .12em;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide h1 {
    max-width: 620px;
    font-size: clamp(42px, 4.5vw, 66px);
    line-height: 1.04;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide p {
    max-width: 560px;
    margin-top: 18px;
    margin-bottom: 28px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide a,
body.storefront.theme-builder.builder-skin-solution .builder-image-banner a,
body.storefront.theme-builder.builder-skin-solution .builder-text-banner a,
body.storefront.theme-builder.builder-skin-solution .builder-product-feature a,
body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner a,
body.storefront.theme-builder.builder-skin-solution .builder-notice-bar a {
    color: #ffffff !important;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide a {
    min-width: 168px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 15px;
}

body.storefront.theme-builder.builder-skin-solution .home-hero__slide div:after {
    content: "전자계약  |  몰 자동 발급  |  결제/증빙 관리";
    display: flex;
    width: fit-content;
    margin-top: 22px;
    padding: 11px 14px;
    border: 1px solid #d9e6f5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    color: #475569;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

body.storefront.theme-builder.builder-skin-solution .builder-notice-bar {
    width: min(100% - 40px, 1240px);
    margin-top: 32px;
    padding: 0 24px;
}

body.storefront.theme-builder.builder-skin-solution .builder-notice-bar strong {
    font-size: 18px;
}

body.storefront.theme-builder.builder-skin-solution .builder-logo-strip div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.storefront.theme-builder.builder-skin-solution .builder-logo-strip span {
    min-height: 104px;
    color: #0f172a;
    font-size: 18px;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card,
body.storefront.theme-builder.builder-skin-solution .home-info-grid article {
    transition: transform .18s ease, box-shadow .18s ease;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card:hover,
body.storefront.theme-builder.builder-skin-solution .home-info-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(31, 94, 255, .12);
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card small,
body.storefront.theme-builder.builder-skin-solution .home-info-grid small {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card p,
body.storefront.theme-builder.builder-skin-solution .home-info-grid p,
body.storefront.theme-builder.builder-skin-solution .builder-faq p {
    color: #5f6f87;
    line-height: 1.7;
}

body.storefront.theme-builder.builder-skin-solution .builder-card-section {
    gap: 26px;
}

body.storefront.theme-builder.builder-skin-solution .builder-section-heading {
    max-width: 820px;
}

body.storefront.theme-builder.builder-skin-solution .builder-section-heading small {
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    letter-spacing: .12em;
}

body.storefront.theme-builder.builder-skin-solution .builder-section-heading h2 {
    color: #0b1220;
    letter-spacing: 0;
}

body.storefront.theme-builder.builder-skin-solution .builder-section-heading p {
    color: #5f6f87;
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card a,
body.storefront.theme-builder.builder-skin-solution .home-editorial a {
    min-width: 118px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    background: #1f5eff;
    color: #ffffff !important;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(31, 94, 255, .22);
}

body.storefront.theme-builder.builder-skin-solution .home-promo-card a:hover,
body.storefront.theme-builder.builder-skin-solution .home-editorial a:hover {
    background: #1747c8;
}

body.storefront.theme-builder.builder-skin-solution .builder-text-banner {
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

body.storefront.theme-builder.builder-skin-solution .builder-text-banner:before {
    content: "";
    position: absolute;
    inset: auto -80px -140px auto;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(20, 184, 166, .28);
}

body.storefront.theme-builder.builder-skin-solution #features,
body.storefront.theme-builder.builder-skin-solution #process,
body.storefront.theme-builder.builder-skin-solution #pricing,
body.storefront.theme-builder.builder-skin-solution #consult {
    scroll-margin-top: 96px;
}

@media (max-width: 900px) {
    body.storefront.theme-builder.builder-skin-solution .store-header__main {
        width: min(100% - 28px, 1180px);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
    }

    body.storefront.theme-builder.builder-skin-solution .store-header__nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    body.storefront.theme-builder.builder-skin-solution .home-hero,
    body.storefront.theme-builder.builder-skin-solution .builder-section,
    body.storefront.theme-builder.builder-skin-solution .builder-card-grid,
    body.storefront.theme-builder.builder-skin-solution .builder-card-section,
    body.storefront.theme-builder.builder-skin-solution .builder-image-banner,
    body.storefront.theme-builder.builder-skin-solution .builder-text-banner,
    body.storefront.theme-builder.builder-skin-solution .builder-logo-strip,
    body.storefront.theme-builder.builder-skin-solution .builder-faq,
    body.storefront.theme-builder.builder-skin-solution .builder-notice-bar,
    body.storefront.theme-builder.builder-skin-solution .builder-coupon-banner,
    body.storefront.theme-builder.builder-skin-solution .home-info-grid {
        width: min(100% - 28px, 1180px);
        margin-top: 46px;
    }

    body.storefront.theme-builder.builder-skin-solution .home-hero__slide {
        min-height: 520px;
    }

    body.storefront.theme-builder.builder-skin-solution .home-hero__slide:after {
        display: none;
    }

    body.storefront.theme-builder.builder-skin-solution .home-hero__slide div {
        width: 100%;
        padding: 56px 28px;
    }

    body.storefront.theme-builder.builder-skin-solution .builder-image-banner {
        grid-template-columns: 1fr;
        padding: 28px;
    }
}

@media (max-width: 640px) {
    body.storefront.theme-builder.builder-skin-solution .home-promo-card,
    body.storefront.theme-builder.builder-skin-solution .home-info-grid article {
        min-height: auto;
        padding: 22px;
    }

    body.storefront.theme-builder.builder-skin-solution .builder-notice-bar {
        min-height: 0;
        display: grid;
        gap: 8px;
        padding: 18px;
        border-radius: 8px;
    }

    body.storefront.theme-builder.builder-skin-solution .builder-notice-bar a {
        margin-left: 0;
    }
}

body.storefront.theme-builder.builder-skin-labonbon {
    --theme-primary: #111111;
    --theme-secondary: #d8b8a8;
    --surface-soft: #faf7f4;
    background: #ffffff;
    color: #222222;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header {
    position: relative;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__utility {
    padding: 9px 0;
    border-bottom: 1px solid #f2f2f2;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__account {
    gap: 16px;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__account a {
    color: #777777;
    font-size: 11px;
    text-transform: uppercase;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__main {
    gap: 24px;
    padding: 34px 0 0;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__brand strong {
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__mark,
body.storefront.theme-builder.builder-skin-labonbon .store-header__brand img {
    display: none;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__nav {
    gap: 36px;
    padding: 20px 0;
    border-top: 0;
}

body.storefront.theme-builder.builder-skin-labonbon .store-header__nav a {
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero {
    width: min(100%, 1600px);
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide {
    min-height: 560px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .5), transparent 30%),
        linear-gradient(135deg, #f3d8cf, #f7efe8 46%, #dfc9bd);
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide:before {
    background: rgba(255, 255, 255, .16);
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide div {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 560px;
    padding: 80px 24px;
    text-align: center;
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide small,
body.storefront.theme-builder.builder-skin-labonbon .builder-section h2 + .builder-section__lead {
    color: #8a6d5e;
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide h1 {
    max-width: 760px;
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide p {
    max-width: 560px;
    color: #5f514a;
}

body.storefront.theme-builder.builder-skin-labonbon .home-hero__slide a {
    margin-top: 10px;
    padding: 13px 30px;
    background: #111111;
    color: #ffffff;
}

body.storefront.theme-builder.builder-skin-labonbon .builder-section,
body.storefront.theme-builder.builder-skin-labonbon .builder-card-grid,
body.storefront.theme-builder.builder-skin-labonbon .builder-image-banner,
body.storefront.theme-builder.builder-skin-labonbon .builder-editorial,
body.storefront.theme-builder.builder-skin-labonbon .builder-product-feature,
body.storefront.theme-builder.builder-skin-labonbon .home-info-grid {
    width: min(100% - 36px, 1180px);
    margin-top: 86px;
    background: #ffffff;
}

body.storefront.theme-builder.builder-skin-labonbon .builder-section h2,
body.storefront.theme-builder.builder-skin-labonbon .builder-image-banner strong,
body.storefront.theme-builder.builder-skin-labonbon .builder-product-feature strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

body.storefront.theme-builder.builder-skin-labonbon .category-strip {
    justify-content: center;
    gap: 22px;
    border-top: 1px solid #e8e1dc;
    border-bottom: 1px solid #e8e1dc;
    padding: 16px 0;
}

body.storefront.theme-builder.builder-skin-labonbon .category-strip a {
    border: 0;
    color: #111111;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

body.storefront.theme-builder.builder-skin-labonbon .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 46px 22px;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card__image {
    height: 270px;
    border-radius: 0;
    background: #f5f1ed;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card strong,
body.storefront.theme-builder.builder-skin-labonbon .product-card__name {
    margin-top: 12px;
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card span {
    color: #777777;
    font-size: 12px;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card .price {
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card .badge-stock,
body.storefront.theme-builder.builder-skin-labonbon .product-card .sold-out,
body.storefront.theme-builder.builder-skin-labonbon .product-card__cta {
    display: none;
}

body.storefront.theme-builder.builder-skin-labonbon .home-promo-card {
    min-height: 230px;
    border: 1px solid #eee5dd;
    background: #faf7f4;
    text-align: center;
}

body.storefront.theme-builder.builder-skin-labonbon .builder-product-feature {
    grid-template-columns: .9fr 1.1fr;
    padding: 46px;
    background: #faf7f4;
}

body.storefront.theme-builder.builder-skin-labonbon .builder-image-banner {
    padding: 0;
    background: #f5eee8;
}

body.storefront.theme-builder.builder-skin-labonbon .home-info-grid article {
    border: 1px solid #eee5dd;
    background: #ffffff;
}

@media (max-width: 980px) {
    body.storefront.theme-builder.builder-skin-labonbon .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.storefront.theme-builder.builder-skin-labonbon .store-header__nav {
        gap: 18px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    body.storefront.theme-builder.builder-skin-labonbon .store-header__nav a {
        min-height: 34px;
        padding: 0 12px;
        border: 1px solid #eadfd7;
        border-radius: 999px;
        background: #ffffff;
        color: #111111;
    }

    body.storefront.theme-builder.builder-skin-labonbon .store-header__nav a:hover,
    body.storefront.theme-builder.builder-skin-labonbon .store-header__nav a.is-active {
        border-color: #111111;
        background: #111111;
        color: #ffffff;
    }

    body.storefront.theme-builder.builder-skin-labonbon .product-grid,
    body.storefront.theme-builder.builder-skin-labonbon .builder-product-feature {
        grid-template-columns: 1fr;
    }
}

body.storefront.theme-builder .product-grid {
    gap: 34px 22px;
}

body.storefront.theme-builder .product-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.storefront.theme-builder .product-card__cta {
    width: 100%;
    border-radius: 0;
    background: #111827;
}

body.storefront.theme-builder .home-promo-card {
    border-radius: 0;
    box-shadow: none;
}

body.storefront.theme-builder .builder-image-banner {
    grid-template-columns: 1.2fr .8fr;
    min-height: 300px;
}

body.storefront.theme-builder .builder-logo-strip {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 760px) {
    body.storefront.theme-builder .store-header__main {
        width: min(100% - 24px, 1180px);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding: 18px 0 0;
    }

    body.storefront.theme-builder .store-header__nav {
        width: 100%;
        gap: 18px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 12px 0;
        border-top: 1px solid #f1f5f9;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.storefront.theme-builder .store-header__nav::-webkit-scrollbar {
        display: none;
    }

    body.storefront.theme-builder .store-header__nav a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 12px;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        background: #ffffff;
        color: #111827;
        font-size: 12px;
        letter-spacing: .04em;
    }

    body.storefront.theme-builder .store-header__nav a:hover,
    body.storefront.theme-builder .store-header__nav a.is-active {
        border-color: var(--theme-primary);
        background: var(--theme-primary);
        color: #ffffff;
    }

    body.storefront.theme-builder .home-hero__slide {
        min-height: 420px;
    }

    body.storefront.theme-builder .home-hero__slide div {
        padding: 52px 22px;
    }

    body.storefront.theme-builder .builder-image-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.storefront.theme-builder.builder-header-hamburger .store-header__main,
    body.storefront.theme-builder.builder-nav-hamburger .store-header__main {
        grid-template-columns: 42px 1fr auto;
        justify-items: stretch;
    }

    body.storefront.theme-builder.builder-header-hamburger .store-header__brand,
    body.storefront.theme-builder.builder-nav-hamburger .store-header__brand {
        justify-self: center;
    }

    body.storefront.theme-builder.builder-nav-hamburger .store-header__nav {
        width: auto;
        border-top: 0;
        padding: 0;
        justify-content: flex-end;
    }

    body.storefront.theme-builder.builder-nav-hamburger .store-header__nav a {
        min-width: 38px;
        padding: 0 10px;
    }

    body.storefront.theme-builder.builder-nav-icons .store-header__nav {
        justify-content: center;
    }

    body.storefront.theme-builder.builder-nav-icons .store-header__nav a {
        width: 36px;
        min-width: 36px;
        padding: 0;
    }

    body.storefront.theme-builder.builder-category-bar .category-strip,
    body.storefront.theme-builder.builder-category-layered .category-strip,
    body.storefront.theme-builder.builder-category-hamburger .category-strip {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.storefront.theme-builder.builder-category-bar .category-strip::-webkit-scrollbar,
    body.storefront.theme-builder.builder-category-layered .category-strip::-webkit-scrollbar,
    body.storefront.theme-builder.builder-category-hamburger .category-strip::-webkit-scrollbar {
        display: none;
    }
}

body.storefront.theme-builder.builder-skin-labonbon .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 46px 22px;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card__cta,
body.storefront.theme-builder.builder-skin-labonbon .product-card .badge-stock,
body.storefront.theme-builder.builder-skin-labonbon .product-card .sold-out {
    display: none !important;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card__name {
    display: block !important;
    width: auto !important;
    min-height: 0 !important;
    margin: 13px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #222222 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    box-shadow: none !important;
}

body.storefront.theme-builder.builder-skin-labonbon .product-card__name:hover {
    color: #8a6d5e !important;
}

@media (max-width: 980px) {
    body.storefront.theme-builder.builder-skin-labonbon .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.storefront.theme-builder.builder-skin-labonbon .product-grid,
    body.storefront.theme-builder.builder-skin-labonbon .builder-product-feature {
        grid-template-columns: 1fr;
    }
}

body.storefront.theme-solution-market {
    --theme-primary: #2563EB;
    --theme-secondary: #0F172A;
    --surface-soft: #F8FAFC;
    --line: #E5E7EB;
    --text: #111827;
    background: linear-gradient(180deg, #ffffff 0, #F8FAFC 520px, #ffffff 100%);
}

body.storefront.theme-solution-market:before {
    display: none;
}

body.storefront.theme-solution-market .store-header {
    position: sticky;
    top: 0;
    padding: 0 max(18px, calc((100vw - 1200px) / 2 + 18px));
    border-bottom: 1px solid #E5E7EB;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 36px rgba(15, 23, 42, .06);
}

body.storefront.theme-solution-market .store-header__utility {
    display: none;
}

body.storefront.theme-solution-market .store-header__main {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

body.storefront.theme-solution-market .store-header__brand {
    color: #0F172A;
    font-size: 18px;
}

body.storefront.theme-solution-market .store-header__brand img {
    width: 238px;
    height: 42px;
    object-fit: contain;
    border: 0;
    border-radius: 0;
}

body.storefront.theme-solution-market .store-header__brand strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

body.storefront.theme-solution-market .store-header__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563EB, #0F172A);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .24);
}

body.storefront.theme-solution-market .store-header__nav {
    gap: 6px;
}

body.storefront.theme-solution-market .store-header__nav a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    background: transparent;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

body.storefront.theme-solution-market .store-header__nav a:hover,
body.storefront.theme-solution-market .store-header__nav a.is-active {
    background: #EFF6FF;
    color: #2563EB;
}

body.storefront.theme-solution-market .home-hero,
body.storefront.theme-solution-market .builder-hero {
    width: min(100% - 36px, 1200px);
    margin: 28px auto 0;
}

body.storefront.theme-solution-market .home-hero__slide {
    min-height: 500px;
    border: 1px solid rgba(37, 99, 235, .22);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .42), rgba(56, 189, 248, .84)) 76% 37% / 18% 9px no-repeat,
        linear-gradient(#EAF2FF 0 0) 73% 50% / 26% 12px no-repeat,
        linear-gradient(#EAF2FF 0 0) 73% 61% / 19% 12px no-repeat,
        linear-gradient(90deg, #EFF6FF, #ffffff) 72% 50% / 36% 68% no-repeat,
        linear-gradient(#0F172A 0 0) 84% 68% / 10% 10% no-repeat,
        radial-gradient(circle at 87% 21%, rgba(255, 255, 255, .55), transparent 7rem),
        radial-gradient(circle at 76% 18%, rgba(96, 165, 250, .32), transparent 18rem),
        radial-gradient(circle at 94% 85%, rgba(37, 99, 235, .32), transparent 20rem),
        linear-gradient(135deg, #0F172A 0%, #172554 52%, #2563EB 100%) !important;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .2);
    overflow: hidden;
}

body.storefront.theme-solution-market .home-hero__slide:before {
    width: 34%;
    height: 68%;
    top: 16%;
    right: 9%;
    left: auto;
    border: 1px solid rgba(148, 163, 184, .34);
    border-radius: 20px;
    background:
        linear-gradient(90deg, #2563EB, #06B6D4) 50% 21% / 70% 18% no-repeat,
        linear-gradient(#E2E8F0 0 0) 50% 45% / 72% 1px no-repeat,
        linear-gradient(#DBEAFE 0 0) 24% 56% / 31% 16% no-repeat,
        linear-gradient(#E2E8F0 0 0) 24% 70% / 31% 1px no-repeat,
        linear-gradient(#EFF6FF 0 0) 24% 82% / 72% 4% no-repeat,
        linear-gradient(#ffffff, #F8FAFC);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    opacity: 1;
}

body.storefront.theme-solution-market .home-hero__slide:after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 18%;
    width: 22%;
    height: 18%;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .14)) 50% 28% / 84% 18% no-repeat,
        linear-gradient(#E5E7EB 0 0) 50% 65% / 76% 1px no-repeat,
        #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .16);
}

body.storefront.theme-solution-market .home-hero__slide div {
    width: min(610px, 100%);
    padding: clamp(38px, 5vw, 68px);
    position: relative;
    z-index: 2;
}

body.storefront.theme-solution-market .home-hero__slide small {
    display: inline-flex;
    margin-bottom: 14px;
    color: #93C5FD;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

body.storefront.theme-solution-market .home-hero__slide h1 {
    max-width: 560px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
}

body.storefront.theme-solution-market .home-hero__slide p {
    max-width: 540px;
    color: #CBD5E1;
    font-size: 18px;
}

body.storefront.theme-solution-market .home-hero__slide a {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    background: #2563EB;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(37, 99, 235, .34);
}

body.storefront.theme-solution-market .builder-logo-strip {
    width: min(100% - 36px, 1200px);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -22px auto 0;
    padding: 16px 22px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 22px 54px rgba(15, 23, 42, .12);
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 3;
}

body.storefront.theme-solution-market .builder-logo-strip strong {
    color: #64748B;
    font-size: 12px;
    letter-spacing: 2px;
}

body.storefront.theme-solution-market .builder-logo-strip div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.storefront.theme-solution-market .builder-logo-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #EFF6FF;
    color: #1D4ED8;
    font-weight: 900;
}

body.storefront.theme-solution-market .builder-section,
body.storefront.theme-solution-market .builder-card-section,
body.storefront.theme-solution-market .builder-faq,
body.storefront.theme-solution-market .home-section {
    width: min(100% - 36px, 1200px);
    margin: 44px auto 0;
    padding: 0;
}

body.storefront.theme-solution-market .builder-section h2,
body.storefront.theme-solution-market .builder-faq h2 {
    margin-bottom: 8px;
    color: #0F172A;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
}

body.storefront.theme-solution-market .builder-section__lead {
    margin: 0 0 22px;
    color: #64748B;
}

body.storefront.theme-solution-market .category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

body.storefront.theme-solution-market .category-strip a {
    min-height: 74px;
    justify-content: center;
    border-radius: 12px;
    border-color: #E5E7EB;
    background: #ffffff;
    color: #0F172A;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

body.storefront.theme-solution-market .category-strip a:hover,
body.storefront.theme-solution-market .category-strip a.is-active {
    border-color: #BFDBFE;
    background: #EFF6FF;
    color: #2563EB;
}

body.storefront.theme-solution-market .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.storefront.theme-solution-market .product-card {
    position: relative;
    gap: 10px;
    padding: 14px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

body.storefront.theme-solution-market .product-card:hover {
    transform: translateY(-5px);
    border-color: #BFDBFE;
    box-shadow: 0 24px 64px rgba(37, 99, 235, .14);
}

body.storefront.theme-solution-market .product-card:before {
    content: "BEST";
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #F97316;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 24px;
}

body.storefront.theme-solution-market .product-card__image {
    border-radius: 10px;
    background: #F8FAFC;
    aspect-ratio: 16 / 10;
}

body.storefront.theme-solution-market .product-card__name {
    min-height: 48px;
    color: #0F172A;
    font-size: 16px;
    line-height: 1.35;
}

body.storefront.theme-solution-market .product-card span:not(.price):not(.badge-stock):not(.sold-out) {
    color: #64748B;
    font-size: 13px;
}

body.storefront.theme-solution-market .product-card .price {
    color: #0F172A;
    font-size: 19px;
}

body.storefront.theme-solution-market .product-card .badge-stock,
body.storefront.theme-solution-market .product-card .sold-out {
    width: fit-content;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 12px;
    font-weight: 900;
    line-height: 26px;
}

body.storefront.theme-solution-market .product-card__cta {
    min-height: 42px;
    border-radius: 9px;
    background: #2563EB;
    color: #ffffff;
}

body.storefront.theme-solution-market .home-promo-grid,
body.storefront.theme-solution-market .home-info-grid {
    width: 100%;
    margin: 0;
    gap: 18px;
}

body.storefront.theme-solution-market .home-promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.storefront.theme-solution-market .home-promo-card,
body.storefront.theme-solution-market .home-info-grid article {
    position: relative;
    min-height: 238px;
    align-content: start;
    gap: 12px;
    padding: 30px;
    border-radius: 14px;
    border-color: #E5E7EB;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, .85), rgba(255, 255, 255, 1)),
        #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.storefront.theme-solution-market .home-promo-card:hover,
body.storefront.theme-solution-market .home-info-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, .28);
    box-shadow: 0 24px 54px rgba(15, 23, 42, .1);
}

body.storefront.theme-solution-market .home-promo-card--large {
    min-height: 238px;
    grid-row: auto;
    background:
        radial-gradient(circle at 86% 12%, rgba(37, 99, 235, .16), transparent 9rem),
        linear-gradient(180deg, rgba(239, 246, 255, .92), #ffffff);
}

body.storefront.theme-solution-market .home-promo-card:before {
    content: "";
    width: 46px;
    height: 46px;
    display: block;
    margin-bottom: 4px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #2563EB, #38BDF8);
    box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}

body.storefront.theme-solution-market .home-promo-card:after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .07);
}

body.storefront.theme-solution-market .home-promo-card:nth-child(2):before {
    background: linear-gradient(135deg, #0F172A, #2563EB);
}

body.storefront.theme-solution-market .home-promo-card:nth-child(3):before {
    background: linear-gradient(135deg, #14B8A6, #2563EB);
}

body.storefront.theme-solution-market .home-promo-card small,
body.storefront.theme-solution-market .home-info-grid small,
body.storefront.theme-solution-market .builder-section-heading small {
    color: #2563EB;
}

body.storefront.theme-solution-market .home-promo-card strong,
body.storefront.theme-solution-market .home-info-grid strong {
    color: #0F172A;
}

body.storefront.theme-solution-market .home-promo-card p,
body.storefront.theme-solution-market .home-info-grid p {
    color: #475569;
    line-height: 1.75;
}

body.storefront.theme-solution-market .builder-faq details {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .04);
}

body.storefront.theme-solution-market .builder-faq summary {
    color: #0F172A;
    font-weight: 900;
}

body.storefront.theme-solution-market .store-footer {
    margin-top: 64px;
    background: #0F172A;
    color: #CBD5E1;
}

body.storefront.theme-solution-market .store-footer strong {
    color: #ffffff;
}

@media (max-width: 1100px) {
    body.storefront.theme-solution-market .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.storefront.theme-solution-market .store-header__main {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
        gap: 12px;
    }

    body.storefront.theme-solution-market .store-header__nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    body.storefront.theme-solution-market .home-hero__slide {
        min-height: 520px;
        background:
            radial-gradient(circle at 80% 18%, rgba(96, 165, 250, .32), transparent 14rem),
            linear-gradient(135deg, #0F172A 0%, #172554 54%, #2563EB 100%) !important;
    }

    body.storefront.theme-solution-market .home-hero__slide:before,
    body.storefront.theme-solution-market .home-hero__slide:after {
        display: none;
    }

    body.storefront.theme-solution-market .builder-logo-strip {
        align-items: flex-start;
        flex-direction: column;
        margin-top: -14px;
    }

    body.storefront.theme-solution-market .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.storefront.theme-solution-market .home-promo-grid,
    body.storefront.theme-solution-market .home-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body.storefront.theme-solution-market .home-hero,
    body.storefront.theme-solution-market .builder-hero,
    body.storefront.theme-solution-market .builder-section,
    body.storefront.theme-solution-market .builder-card-section,
    body.storefront.theme-solution-market .builder-faq,
    body.storefront.theme-solution-market .home-section,
    body.storefront.theme-solution-market .builder-logo-strip {
        width: min(100% - 24px, 1200px);
    }

    body.storefront.theme-solution-market .home-hero__slide div {
        padding: 28px 22px;
    }

    body.storefront.theme-solution-market .product-grid,
    body.storefront.theme-solution-market .category-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.storefront > h1,
    body.storefront > h2,
    body.storefront > nav:not(.store-header__nav),
    body.storefront > p,
    body.storefront > ul,
    body.storefront > table,
    body.storefront > form,
    body.storefront > div,
    body.storefront > section,
    body.storefront .home-hero,
    body.storefront .builder-hero,
    body.storefront .home-section,
    body.storefront .builder-section,
    body.storefront .builder-card-section,
    body.storefront .builder-card-grid,
    body.storefront .builder-logo-strip,
    body.storefront .builder-faq,
    body.storefront .builder-image-banner,
    body.storefront .builder-text-banner,
    body.storefront .builder-editorial,
    body.storefront .builder-product-feature,
    body.storefront .home-promo-grid,
    body.storefront .home-info-grid,
    body.storefront .home-editorial,
    body.storefront .support-page {
        width: min(100% - 24px, 1200px) !important;
        max-width: 100% !important;
    }

    body.storefront .store-header,
    body.storefront.theme-solution-market .store-header,
    body.storefront.theme-builder .store-header {
        position: static;
    }

    body.storefront .store-header__main,
    body.storefront.theme-solution-market .store-header__main,
    body.storefront.theme-builder .store-header__main {
        width: min(100% - 24px, 1200px);
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    body.storefront .store-header__brand {
        max-width: 100%;
    }

    body.storefront .store-header__brand strong {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.storefront .store-header__nav,
    body.storefront.theme-solution-market .store-header__nav,
    body.storefront.theme-builder .store-header__nav {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    body.storefront .store-header__nav::-webkit-scrollbar,
    body.storefront.theme-builder .store-header__nav::-webkit-scrollbar,
    body.storefront.theme-solution-market .store-header__nav::-webkit-scrollbar {
        display: none;
    }

    body.storefront .store-header__nav a,
    body.storefront.theme-solution-market .store-header__nav a,
    body.storefront.theme-builder .store-header__nav a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 11px;
        font-size: 12px;
        line-height: 34px;
        white-space: nowrap;
    }

    body.storefront .home-hero,
    body.storefront.theme-fashion .home-hero,
    body.storefront.theme-premium .home-hero,
    body.storefront.theme-lifestyle .home-hero,
    body.storefront.theme-b2b .home-hero,
    body.storefront.theme-solution-market .home-hero,
    body.storefront.theme-builder .home-hero {
        display: block;
        margin-top: 16px;
    }

    body.storefront .home-hero:before,
    body.storefront .home-hero__slide:before,
    body.storefront .home-hero__slide:after,
    body.storefront.theme-solution-market .home-hero__slide:before,
    body.storefront.theme-solution-market .home-hero__slide:after,
    body.storefront.theme-builder .home-hero__slide:before,
    body.storefront.theme-builder .home-hero__slide:after {
        display: none !important;
    }

    body.storefront .home-hero__slide,
    body.storefront.theme-minimal .home-hero__slide,
    body.storefront.theme-premium .home-hero__slide,
    body.storefront.theme-fashion .home-hero__slide,
    body.storefront.theme-beauty .home-hero__slide,
    body.storefront.theme-food .home-hero__slide,
    body.storefront.theme-digital .home-hero__slide,
    body.storefront.theme-b2b .home-hero__slide,
    body.storefront.theme-lifestyle .home-hero__slide,
    body.storefront.theme-solution-market .home-hero__slide,
    body.storefront.theme-builder .home-hero__slide {
        min-height: auto !important;
        border-radius: 16px;
        overflow: hidden;
    }

    body.storefront .home-hero__slide div,
    body.storefront.theme-minimal .home-hero__slide div,
    body.storefront.theme-premium .home-hero__slide div,
    body.storefront.theme-fashion .home-hero__slide div,
    body.storefront.theme-beauty .home-hero__slide div,
    body.storefront.theme-food .home-hero__slide div,
    body.storefront.theme-digital .home-hero__slide div,
    body.storefront.theme-b2b .home-hero__slide div,
    body.storefront.theme-lifestyle .home-hero__slide div,
    body.storefront.theme-solution-market .home-hero__slide div,
    body.storefront.theme-builder .home-hero__slide div {
        width: 100%;
        max-width: 100%;
        padding: 30px 22px 34px !important;
    }

    body.storefront .home-hero__slide h1,
    body.storefront.theme-modern .home-hero__slide h1,
    body.storefront.theme-fashion .home-hero__slide h1,
    body.storefront.theme-digital .home-hero__slide h1,
    body.storefront.theme-solution-market .home-hero__slide h1,
    body.storefront.theme-builder .home-hero__slide h1 {
        max-width: 100%;
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1.12;
    }

    body.storefront .home-hero__slide p,
    body.storefront.theme-solution-market .home-hero__slide p,
    body.storefront.theme-builder .home-hero__slide p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
    }

    body.storefront .builder-logo-strip,
    body.storefront.theme-solution-market .builder-logo-strip {
        margin-top: 10px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }

    body.storefront .builder-logo-strip div {
        width: 100%;
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    body.storefront .builder-logo-strip span {
        flex: 0 0 auto;
    }

    body.storefront .category-strip,
    body.storefront.theme-solution-market .category-strip,
    body.storefront.theme-builder .category-strip {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    body.storefront .category-strip a,
    body.storefront.theme-solution-market .category-strip a,
    body.storefront.theme-builder .category-strip a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        white-space: nowrap;
    }

    body.storefront .product-grid,
    body.storefront.theme-basic .product-grid,
    body.storefront.theme-modern .product-grid,
    body.storefront.theme-minimal .product-grid,
    body.storefront.theme-premium .product-grid,
    body.storefront.theme-fashion .product-grid,
    body.storefront.theme-beauty .product-grid,
    body.storefront.theme-food .product-grid,
    body.storefront.theme-digital .product-grid,
    body.storefront.theme-b2b .product-grid,
    body.storefront.theme-lifestyle .product-grid,
    body.storefront.theme-builder .product-grid,
    body.storefront.theme-solution-market .product-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    body.storefront .product-card,
    body.storefront.theme-builder .product-card,
    body.storefront.theme-solution-market .product-card,
    body.storefront.theme-minimal .product-card,
    body.storefront.theme-food .product-card {
        width: 100%;
        min-width: 0;
        display: grid;
    }

    body.storefront .product-card__image,
    body.storefront.theme-builder .product-card__image,
    body.storefront.theme-solution-market .product-card__image,
    body.storefront.theme-fashion .product-card__image,
    body.storefront.theme-beauty .product-card__image,
    body.storefront.theme-food .product-card__image {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }

    body.storefront .home-promo-grid,
    body.storefront .home-info-grid,
    body.storefront .home-editorial,
    body.storefront .home-editorial__products,
    body.storefront .builder-card-grid,
    body.storefront .builder-product-feature,
    body.storefront.theme-solution-market .home-promo-grid,
    body.storefront.theme-solution-market .home-info-grid,
    body.storefront.theme-builder .home-promo-grid,
    body.storefront.theme-builder .home-info-grid {
        grid-template-columns: 1fr !important;
    }

    body.storefront .home-promo-card,
    body.storefront .home-info-grid article,
    body.storefront.theme-solution-market .home-promo-card,
    body.storefront.theme-solution-market .home-info-grid article,
    body.storefront.theme-builder .home-promo-card,
    body.storefront.theme-builder .home-info-grid article {
        min-height: auto;
        padding: 22px;
    }

    .support-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    body.storefront > h1,
    body.storefront > h2,
    body.storefront .builder-section h2,
    body.storefront .builder-faq h2 {
        font-size: 25px;
    }

    body.storefront .home-hero__slide h1,
    body.storefront.theme-solution-market .home-hero__slide h1,
    body.storefront.theme-builder .home-hero__slide h1 {
        font-size: 29px;
    }

    body.storefront .store-header__brand img,
    body.storefront .store-header__mark {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }
}
body.storefront.theme-pc-parts-modern {
    background:
        radial-gradient(circle at 85% 5%, rgba(37, 99, 235, .12), transparent 28rem),
        var(--store-bg-color);
}
body.storefront.theme-pc-parts-modern .store-header {
    border-bottom: 1px solid #1e293b;
    background: rgba(15, 23, 42, .97);
    color: #fff;
}
body.storefront.theme-pc-parts-modern .store-header a,
body.storefront.theme-pc-parts-modern .store-header strong {
    color: #fff;
}
body.storefront.theme-pc-parts-modern .store-header__mark {
    background: linear-gradient(135deg, #2563eb, #22d3ee);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}
body.storefront.theme-pc-parts-modern .category-strip {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
}
body.storefront.theme-pc-parts-modern .category-strip a {
    border-color: #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    font-weight: 800;
}
body.storefront.theme-pc-parts-modern .product-card {
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
body.storefront.theme-pc-parts-modern .product-card:hover {
    border-color: #60a5fa;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .13);
    transform: translateY(-3px);
}
body.storefront.theme-pc-parts-modern .product-card__image {
    background: linear-gradient(145deg, #f8fafc, #eef2f7);
}
body.storefront.theme-pc-parts-modern .product-card__cta {
    border-radius: 8px;
    background: #0f172a;
}
body.storefront.theme-pc-parts-modern .home-hero__slide {
    min-height: 390px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 82% 42%, rgba(34, 211, 238, .3), transparent 13rem),
        linear-gradient(125deg, #0f172a 0%, #172554 48%, #075985 100%);
}
body.storefront.theme-pc-parts-modern .home-hero__slide small {
    color: #67e8f9;
    font-weight: 900;
    letter-spacing: 2px;
}
body.storefront.theme-pc-parts-modern .home-hero__slide h1 {
    max-width: 720px;
    font-size: clamp(38px, 5vw, 64px);
}
body.storefront.theme-pc-parts-modern .home-hero__slide p {
    max-width: 620px;
    color: #cbd5e1;
}
body.storefront.theme-pc-parts-modern .home-promo-card--large {
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}
body.storefront.theme-pc-parts-modern .home-promo-card--large small,
body.storefront.theme-pc-parts-modern .home-promo-card--large strong,
body.storefront.theme-pc-parts-modern .home-promo-card--large p {
    color: #fff;
}
