@charset "UTF-8";

:root {
    --adaptive-accent: #f04452;
    --adaptive-accent-dark: #c92534;
    --adaptive-ink: #1f2933;
    --adaptive-muted: #6b7280;
    --adaptive-line: #e6e8ec;
    --adaptive-page: #f3f4f6;
    --adaptive-card: #ffffff;
    --adaptive-shadow: 0 12px 30px rgba(31, 41, 51, 0.12);
    --adaptive-bottom-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #dfe3e8;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background: #dfe3e8;
    color: var(--adaptive-ink);
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

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

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.adaptive-mobile-shell {
    width: 100%;
    max-width: 540px;
    min-height: 100vh;
    margin: 0 auto;
    background: var(--adaptive-page);
    box-shadow: 0 0 0 1px rgba(31, 41, 51, 0.06);
    padding-bottom: calc(var(--adaptive-bottom-height) + env(safe-area-inset-bottom));
}

.adaptive-mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--adaptive-line);
    backdrop-filter: blur(14px);
}

.adaptive-mobile-header.is-scrolled {
    box-shadow: 0 8px 20px rgba(31, 41, 51, 0.08);
}

.adaptive-mobile-header__main {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 56px;
    padding: 0 10px;
}

.adaptive-mobile-header__brand {
    min-width: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #14171f;
}

.adaptive-mobile-header__brand span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.adaptive-mobile-header__brand.has-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.adaptive-mobile-header__brand img {
    display: block;
    width: auto;
    max-width: min(210px, 56vw);
    max-height: 40px;
    object-fit: contain;
}

.adaptive-mobile-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.adaptive-icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--adaptive-ink);
}

.adaptive-icon-button:focus-visible,
.adaptive-search-panel__close:focus-visible,
.adaptive-bottom-nav a:focus-visible {
    outline: 3px solid rgba(240, 68, 82, 0.25);
    outline-offset: 2px;
}

.adaptive-icon-button--light {
    color: #ffffff;
}

.adaptive-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
}

.adaptive-icon::before,
.adaptive-icon::after {
    content: "";
    position: absolute;
    display: block;
}

.adaptive-icon--menu::before {
    top: 4px;
    left: 2px;
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.adaptive-icon--search::before {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.adaptive-icon--search::after {
    right: 3px;
    bottom: 4px;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.adaptive-icon--cart::before {
    left: 4px;
    top: 5px;
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 2px 2px 5px 5px;
}

.adaptive-icon--cart::after {
    left: 7px;
    top: 2px;
    width: 8px;
    height: 6px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.adaptive-icon--close::before,
.adaptive-icon--close::after {
    left: 10px;
    top: 2px;
    width: 2px;
    height: 18px;
    background: currentColor;
}

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

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

.adaptive-icon--category::before,
.adaptive-icon--home::before,
.adaptive-icon--user::before,
.adaptive-icon--order::before {
    inset: 4px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.adaptive-icon--home::after {
    left: 4px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}

.adaptive-icon--user::before {
    top: 3px;
    left: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.adaptive-icon--user::after {
    left: 4px;
    bottom: 3px;
    width: 14px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 10px 10px 4px 4px;
}

.adaptive-icon--order::after {
    top: 8px;
    left: 7px;
    width: 8px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 5px 0 currentColor;
}

.adaptive-cart-button__count {
    position: absolute;
    top: 4px;
    right: 3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.adaptive-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 12px;
    border-top: 1px solid var(--adaptive-line);
}

.adaptive-search-panel[hidden] {
    display: none;
}

.adaptive-search-panel__field {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d8dce2;
    border-radius: 8px;
    background: #f7f8fa;
    color: var(--adaptive-muted);
}

.adaptive-search-panel__field input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--adaptive-ink);
}

.adaptive-search-panel__close {
    height: 42px;
    border-radius: 8px;
    background: #2f3641;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.adaptive-mobile-main {
    background: var(--adaptive-page);
}

.adaptive-hero {
    background: #ffffff;
    padding: 14px 14px 0;
}

.adaptive-hero__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 8px;
    scrollbar-width: none;
}

.adaptive-hero__track::-webkit-scrollbar {
    display: none;
}

.adaptive-hero__slide {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 8px;
    background: #20242d;
    scroll-snap-align: start;
}

.adaptive-hero__slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.adaptive-hero__slide--registered img {
    object-fit: cover;
}

.adaptive-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64));
}

.adaptive-hero__copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #ffffff;
}

.adaptive-hero__copy strong {
    display: block;
    max-width: 360px;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 850;
}

.adaptive-hero__copy span {
    display: block;
    max-width: 360px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.45;
}

.adaptive-hero__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    padding: 10px 0 6px;
}

.adaptive-hero__dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c7cbd1;
}

.adaptive-hero__dots span.is-active {
    width: 18px;
    background: var(--adaptive-accent);
}

.adaptive-quick-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: #ffffff;
    border-top: 1px solid var(--adaptive-line);
    border-bottom: 1px solid var(--adaptive-line);
}

.adaptive-quick-grid__item {
    display: flex;
    min-width: 0;
    min-height: 86px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 4px;
    border-right: 1px solid #f0f1f3;
    border-bottom: 1px solid #f0f1f3;
    text-align: center;
}

.adaptive-quick-grid__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-quick-grid__item strong {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #313946;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-quick-grid__item--rose span { background: #f04452; }
.adaptive-quick-grid__item--mint span { background: #2f9e8f; }
.adaptive-quick-grid__item--amber span { background: #d28a24; }
.adaptive-quick-grid__item--blue span { background: #3973c5; }
.adaptive-quick-grid__item--violet span { background: #7856b8; }
.adaptive-quick-grid__item--ink span { background: #344054; }
.adaptive-quick-grid__item--green span { background: #3f8f5b; }
.adaptive-quick-grid__item--sand span { background: #9a7b4f; }
.adaptive-quick-grid__item--sky span { background: #3c8cae; }
.adaptive-quick-grid__item--coral span { background: #d45c3f; }

.adaptive-section {
    margin-top: 12px;
    padding: 16px 14px 18px;
    background: var(--adaptive-page);
}

.adaptive-section--white {
    background: #ffffff;
}

.adaptive-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.adaptive-section__head h2 {
    min-width: 0;
    margin: 0;
    color: #2a3039;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
}

.adaptive-section__head h2 span {
    color: var(--adaptive-accent);
}

.adaptive-section__head a {
    flex: 0 0 auto;
    color: #7b828d;
    font-size: 13px;
    font-weight: 700;
}

.adaptive-empty {
    margin: 0;
    padding: 24px 10px;
    border-radius: 8px;
    background: #ffffff;
    color: #8a929e;
    text-align: center;
}

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

.adaptive-product-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    color: var(--adaptive-ink);
}

.adaptive-product-card__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9ecef;
}

.adaptive-product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.adaptive-product-card:active .adaptive-product-card__thumb img {
    transform: scale(1.02);
}

.adaptive-product-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6b7280;
    font-weight: 800;
}

.adaptive-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: #2d3440;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    padding: 6px 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-product-card__body {
    display: block;
    padding: 10px;
}

.adaptive-product-card__seller,
.adaptive-product-card__summary,
.adaptive-product-card__stats {
    display: block;
    overflow: hidden;
    color: var(--adaptive-muted);
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-product-card__title {
    display: -webkit-box;
    min-height: 37px;
    margin-top: 4px;
    overflow: hidden;
    color: #222833;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-product-card__summary {
    margin-top: 4px;
}

.adaptive-product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 0;
    margin-top: 8px;
    flex-wrap: wrap;
}

.adaptive-product-card__discount {
    color: var(--adaptive-accent);
    font-size: 13px;
    font-weight: 850;
}

.adaptive-product-card__price {
    color: #171b22;
    font-size: 15px;
    font-weight: 850;
}

.adaptive-product-card del {
    color: #9aa1aa;
    font-size: 12px;
}

.adaptive-product-card--grid {
    border: 1px solid #edf0f3;
}

.adaptive-product-card--grid .adaptive-product-card__thumb {
    aspect-ratio: 1 / 1;
}

.adaptive-product-card--grid .adaptive-product-card__seller,
.adaptive-product-card--grid .adaptive-product-card__summary,
.adaptive-product-card--grid .adaptive-product-card__badge,
.adaptive-product-card--grid del {
    display: none;
}

.adaptive-product-card--grid .adaptive-product-card__body {
    padding: 8px 4px 10px;
    text-align: center;
}

.adaptive-product-card--grid .adaptive-product-card__title {
    min-height: 34px;
    font-size: 13px;
}

.adaptive-product-card--grid .adaptive-product-card__price-row {
    justify-content: center;
}

.adaptive-product-card--catalog {
    border: 1px solid #edf0f3;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-product-card--catalog .adaptive-product-card__thumb {
    aspect-ratio: 1 / 1;
}

.adaptive-product-card--catalog .adaptive-product-card__summary {
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 252px;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.adaptive-scroll-row::-webkit-scrollbar {
    display: none;
}

.adaptive-product-card--wide {
    scroll-snap-align: start;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-product-card--wide .adaptive-product-card__thumb {
    height: 162px;
}

.adaptive-banner-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 14px 0;
}

.adaptive-banner-pair a {
    position: relative;
    min-height: 128px;
    overflow: hidden;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 16px;
}

.adaptive-banner-pair a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.adaptive-banner-pair strong,
.adaptive-banner-pair span {
    position: relative;
    display: block;
}

.adaptive-banner-pair strong {
    font-size: 17px;
    font-weight: 850;
}

.adaptive-banner-pair span {
    max-width: 180px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

.adaptive-banner-pair--single {
    grid-template-columns: 1fr;
}

.adaptive-banner-pair__registered {
    display: block;
    min-height: 128px;
    padding: 0;
    background: #f3f4f6;
}

.adaptive-banner-pair .adaptive-banner-pair__registered::before {
    display: none;
}

.adaptive-banner-pair__registered img {
    display: block;
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.adaptive-banner-fit--contain img {
    object-fit: contain;
    background: #f8fafc;
}

.adaptive-banner-fit--fill img {
    object-fit: fill;
}

.adaptive-banner-fit--cover img {
    object-fit: cover;
}

.adaptive-list-products {
    display: grid;
    gap: 12px;
}

.adaptive-product-card--list {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 140px;
    border: 1px solid #edf0f3;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-product-card--list .adaptive-product-card__thumb {
    height: 100%;
    min-height: 140px;
}

.adaptive-product-card--list .adaptive-product-card__body {
    align-self: center;
}

.adaptive-product-card__stats {
    margin-top: 8px;
}

.adaptive-section--atelier {
    padding-bottom: 22px;
}

.adaptive-atelier-list {
    display: grid;
    gap: 10px;
}

.adaptive-atelier-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 88px;
    padding: 10px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-atelier-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 8px;
    background: #e8ecef;
    color: #5f6875;
    font-size: 22px;
    font-weight: 850;
}

.adaptive-atelier-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-atelier-card__copy {
    min-width: 0;
}

.adaptive-atelier-card__copy strong,
.adaptive-atelier-card__copy span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adaptive-atelier-card__copy strong {
    color: #232a34;
    font-size: 15px;
    font-weight: 850;
    white-space: nowrap;
}

.adaptive-atelier-card__copy span {
    display: -webkit-box;
    margin-top: 5px;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-atelier-page {
    background:
        linear-gradient(180deg, #ffffff 0, #f6f7f9 320px, var(--adaptive-page) 100%);
}

.adaptive-atelier-hero {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 24px 14px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--adaptive-line);
}

.adaptive-atelier-hero__back,
.adaptive-atelier-hero__kicker {
    width: fit-content;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 900;
}

.adaptive-atelier-hero__back {
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid #f8ccd1;
    border-radius: 8px;
    background: #fff3f4;
}

.adaptive-atelier-hero h1 {
    margin: 0;
    color: #1f2933;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 950;
    word-break: keep-all;
}

.adaptive-atelier-hero h1 span {
    color: var(--adaptive-accent);
}

.adaptive-atelier-hero p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
}

.adaptive-atelier-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.adaptive-atelier-hero__stats strong {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 12px 8px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #f8fafb;
    color: #202733;
    text-align: center;
    font-size: 18px;
    font-weight: 950;
}

.adaptive-atelier-hero__stats span {
    color: var(--adaptive-muted);
    font-size: 11px;
    font-weight: 800;
}

.adaptive-atelier-featured {
    padding: 14px 0 8px;
}

.adaptive-atelier-featured .adaptive-section__head {
    padding: 0 14px;
}

.adaptive-atelier-featured__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-snap-type: x proximity;
}

.adaptive-atelier-featured__track::-webkit-scrollbar {
    display: none;
}

.adaptive-atelier-featured-card {
    flex: 0 0 210px;
    overflow: hidden;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    scroll-snap-align: start;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-atelier-featured-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
    background: #eef1f4;
    color: #6b7280;
    font-size: 30px;
    font-weight: 950;
}

.adaptive-atelier-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-atelier-featured-card__copy {
    display: grid;
    gap: 4px;
    padding: 12px;
}

.adaptive-atelier-featured-card__copy small {
    overflow: hidden;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-atelier-featured-card__copy strong {
    overflow: hidden;
    color: #232a34;
    font-size: 15px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-atelier-catalog {
    padding-top: 4px;
}

.adaptive-atelier-catalog__list {
    display: grid;
    gap: 12px;
}

.adaptive-atelier-catalog-card {
    overflow: hidden;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-atelier-catalog-card__main {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
}

.adaptive-atelier-catalog-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 118px;
    overflow: hidden;
    border-radius: 8px;
    background: #e9edf1;
    color: #5f6875;
    font-size: 28px;
    font-weight: 950;
}

.adaptive-atelier-catalog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-atelier-catalog-card__body {
    display: grid;
    align-content: start;
    min-width: 0;
}

.adaptive-atelier-catalog-card__body small {
    overflow: hidden;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-atelier-catalog-card__body strong {
    overflow: hidden;
    margin-top: 5px;
    color: #202733;
    font-size: 17px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-atelier-catalog-card__body em {
    overflow: hidden;
    margin-top: 5px;
    color: #343b47;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-atelier-catalog-card__body span {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-atelier-catalog-card__meta {
    display: flex;
    gap: 6px;
    padding: 0 12px 12px;
    flex-wrap: wrap;
}

.adaptive-atelier-catalog-card__meta span {
    min-height: 28px;
    padding: 6px 9px;
    border-radius: 8px;
    background: #f3f5f7;
    color: #47515f;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-atelier-catalog-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #edf0f3;
}

.adaptive-atelier-catalog-card__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #303846;
    font-size: 13px;
    font-weight: 900;
}

.adaptive-atelier-catalog-card__actions a:first-child {
    background: var(--adaptive-accent);
    color: #ffffff;
}

.adaptive-atelier-catalog-card__actions a + a {
    border-left: 1px solid #edf0f3;
}

.adaptive-atelier-profile {
    overflow: hidden;
    margin: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--adaptive-line);
}

.adaptive-atelier-profile__banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.adaptive-atelier-profile__content {
    display: grid;
    gap: 10px;
    padding: 16px 14px 18px;
}

.adaptive-atelier-profile__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    overflow: hidden;
    margin-top: -42px;
    border: 4px solid #ffffff;
    border-radius: 14px;
    background: #e9edf1;
    color: #5f6875;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.16);
    font-size: 30px;
    font-weight: 950;
}

.adaptive-atelier-profile__banner + .adaptive-atelier-profile__content .adaptive-atelier-profile__avatar {
    margin-top: -58px;
}

.adaptive-atelier-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-atelier-profile__content small {
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 900;
}

.adaptive-atelier-profile__content h1 {
    margin: 0;
    color: #202733;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 950;
    word-break: keep-all;
}

.adaptive-atelier-profile__content p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
}

.adaptive-atelier-profile__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.adaptive-atelier-profile__badges span {
    min-height: 30px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f3f5f7;
    color: #47515f;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-atelier-profile__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 2px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.adaptive-atelier-info p {
    margin: 0;
    color: #394150;
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

.adaptive-atelier-info dl {
    display: grid;
    gap: 0;
    margin: 14px 0 0;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    overflow: hidden;
}

.adaptive-atelier-info dl div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #edf0f3;
    background: #ffffff;
}

.adaptive-atelier-info dl div:last-child {
    border-bottom: 0;
}

.adaptive-atelier-info dt,
.adaptive-atelier-info dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-atelier-info dt {
    color: #202733;
    font-weight: 900;
}

.adaptive-atelier-info dd {
    min-width: 0;
    color: var(--adaptive-muted);
    word-break: break-word;
}

.adaptive-minishop-page {
    background:
        linear-gradient(180deg, #ffffff 0, #f6f7f9 360px, var(--adaptive-page) 100%);
}

.adaptive-minishop-directory-hero {
    display: grid;
    gap: 12px;
    padding: 24px 14px 18px;
    border-bottom: 1px solid var(--adaptive-line);
    background: #ffffff;
}

.adaptive-minishop-directory-hero a {
    width: fit-content;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid #f8ccd1;
    border-radius: 8px;
    background: #fff3f4;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 900;
}

.adaptive-minishop-directory-hero h1 {
    margin: 0;
    color: #1f2933;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 950;
    word-break: keep-all;
}

.adaptive-minishop-directory-hero p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
}

.adaptive-minishop-directory-list {
    display: grid;
    gap: 12px;
}

.adaptive-minishop-directory-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 12px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-minishop-directory-card > span {
    grid-row: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    overflow: hidden;
    border-radius: 8px;
    background: #e9edf1;
    color: #5f6875;
    font-size: 28px;
    font-weight: 950;
}

.adaptive-minishop-directory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-minishop-directory-card strong,
.adaptive-minishop-directory-card small,
.adaptive-minishop-directory-card em {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adaptive-minishop-directory-card strong {
    align-self: end;
    color: #202733;
    font-size: 17px;
    font-weight: 950;
    white-space: nowrap;
}

.adaptive-minishop-directory-card small {
    display: -webkit-box;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-minishop-directory-card em {
    align-self: start;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
    white-space: nowrap;
}

.adaptive-minishop-hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #202733;
    color: #ffffff;
}

.adaptive-minishop-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-minishop-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 20, 28, 0.14) 0%, rgba(16, 20, 28, 0.72) 68%, rgba(16, 20, 28, 0.88) 100%);
}

.adaptive-minishop-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 10px;
    min-height: 360px;
    padding: 24px 14px 18px;
}

.adaptive-minishop-hero__content > a {
    width: fit-content;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.adaptive-minishop-hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.adaptive-minishop-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-minishop-hero small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 900;
}

.adaptive-minishop-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.14;
    font-weight: 950;
    word-break: keep-all;
}

.adaptive-minishop-hero p {
    display: -webkit-box;
    overflow: hidden;
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.adaptive-minishop-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.adaptive-minishop-hero__stats strong {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 11px 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 950;
    backdrop-filter: blur(8px);
}

.adaptive-minishop-hero__stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
}

.adaptive-minishop-tabs,
.adaptive-minishop-category-row,
.adaptive-minishop-sort {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 12px 14px;
    background: #ffffff;
    border-bottom: 1px solid var(--adaptive-line);
    scroll-snap-type: x proximity;
}

.adaptive-minishop-tabs::-webkit-scrollbar,
.adaptive-minishop-category-row::-webkit-scrollbar,
.adaptive-minishop-sort::-webkit-scrollbar,
.adaptive-minishop-featured__track::-webkit-scrollbar {
    display: none;
}

.adaptive-minishop-tabs a,
.adaptive-minishop-sort a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    background: #ffffff;
    color: #47515f;
    font-size: 13px;
    font-weight: 850;
    scroll-snap-align: start;
}

.adaptive-minishop-tabs a.is-active,
.adaptive-minishop-sort a.is-active {
    border-color: var(--adaptive-accent);
    background: var(--adaptive-accent);
    color: #ffffff;
}

.adaptive-minishop-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 8px;
    padding: 14px;
    background: #ffffff;
}

.adaptive-minishop-search label {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    min-height: 44px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #f8fafb;
}

.adaptive-minishop-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #202733;
    outline: 0;
}

.adaptive-minishop-search button {
    min-height: 44px;
    border-radius: 8px;
    background: #202733;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.adaptive-minishop-featured {
    padding: 14px 0 8px;
}

.adaptive-minishop-featured .adaptive-section__head {
    padding: 0 14px;
}

.adaptive-minishop-featured__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-padding: 14px;
    scroll-snap-type: x mandatory;
}

.adaptive-minishop-featured__track .adaptive-minishop-product {
    flex: 0 0 calc((100% - 10px) / 2);
    scroll-snap-align: start;
}

.adaptive-minishop-products {
    padding-top: 4px;
}

.adaptive-minishop-product-list {
    display: grid;
    gap: 12px;
}

.adaptive-minishop-product {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 136px;
    overflow: hidden;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(31, 41, 51, 0.04);
}

.adaptive-minishop-featured__track .adaptive-minishop-product {
    grid-template-columns: 1fr;
    min-height: 0;
}

.adaptive-minishop-product__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 136px;
    background: #e9edf1;
    color: #5f6875;
    font-size: 24px;
    font-weight: 950;
}

.adaptive-minishop-featured__track .adaptive-minishop-product__image {
    height: 132px;
    min-height: 132px;
}

.adaptive-minishop-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-minishop-product__image em {
    position: absolute;
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    min-height: 24px;
    overflow: hidden;
    padding: 5px 7px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.92);
    color: #202733;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-minishop-product__body {
    display: grid;
    align-content: center;
    min-width: 0;
    padding: 12px 12px 12px 0;
}

.adaptive-minishop-featured__track .adaptive-minishop-product__body {
    padding: 12px;
}

.adaptive-minishop-product__body small,
.adaptive-minishop-product__body strong,
.adaptive-minishop-product__body span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adaptive-minishop-product__body small {
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.adaptive-minishop-product__body strong {
    margin-top: 4px;
    color: #202733;
    font-size: 16px;
    font-weight: 950;
    white-space: nowrap;
}

.adaptive-minishop-product__body span {
    display: -webkit-box;
    margin-top: 7px;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-minishop-product__body b {
    margin-top: 9px;
    color: #202733;
    font-size: 16px;
    font-weight: 950;
}

.adaptive-minishop-custom-preview,
.adaptive-minishop-custom-detail {
    margin-top: 10px;
}

.adaptive-minishop-custom-preview__summary,
.adaptive-minishop-custom-detail__hero,
.adaptive-minishop-custom-policy {
    display: grid;
    gap: 9px;
    padding: 14px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(32, 39, 51, 0.96), rgba(24, 111, 99, 0.92));
    color: #ffffff;
}

.adaptive-minishop-custom-preview__summary strong,
.adaptive-minishop-custom-detail__hero strong,
.adaptive-minishop-custom-policy strong {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    word-break: keep-all;
}

.adaptive-minishop-custom-preview__summary p,
.adaptive-minishop-custom-detail__hero p,
.adaptive-minishop-custom-policy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.6;
    word-break: keep-all;
}

.adaptive-minishop-custom-preview__summary div,
.adaptive-minishop-custom-detail__hero div {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.adaptive-minishop-custom-preview__summary span,
.adaptive-minishop-custom-detail__hero span {
    min-height: 28px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-minishop-custom-preview__samples {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.adaptive-minishop-custom-sample {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-custom-sample__image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 118px;
    overflow: hidden;
    background: #eef2f4;
    color: #52606d;
}

.adaptive-minishop-custom-sample__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-minishop-custom-sample__image b {
    font-size: 22px;
    font-weight: 950;
}

.adaptive-minishop-custom-sample__image em {
    position: absolute;
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    min-height: 24px;
    overflow: hidden;
    padding: 5px 7px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.92);
    color: #202733;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-minishop-custom-sample__body {
    display: grid;
    align-content: center;
    min-width: 0;
    padding: 12px 12px 12px 0;
}

.adaptive-minishop-custom-sample__body small,
.adaptive-minishop-custom-sample__body strong,
.adaptive-minishop-custom-sample__body span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adaptive-minishop-custom-sample__body small {
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.adaptive-minishop-custom-sample__body strong {
    margin-top: 4px;
    color: #202733;
    font-size: 15px;
    font-weight: 950;
    white-space: nowrap;
}

.adaptive-minishop-custom-sample__body span {
    display: -webkit-box;
    margin-top: 7px;
    color: var(--adaptive-muted);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adaptive-minishop-custom-sample__body b {
    margin-top: 8px;
    color: #202733;
    font-size: 15px;
    font-weight: 950;
}

.adaptive-minishop-custom-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.adaptive-minishop-custom-metrics span {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 12px 8px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.adaptive-minishop-custom-metrics b {
    overflow: hidden;
    color: #202733;
    font-size: 14px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-minishop-custom-metrics small {
    color: var(--adaptive-muted);
    font-size: 11px;
    font-weight: 850;
}

.adaptive-minishop-custom-steps {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.adaptive-minishop-custom-steps article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 10px;
    padding: 12px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-custom-steps b {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.adaptive-minishop-custom-steps strong {
    color: #202733;
    font-size: 14px;
    font-weight: 950;
}

.adaptive-minishop-custom-steps p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 12px;
    line-height: 1.45;
}

.adaptive-minishop-custom-subhead {
    margin-top: 16px;
}

.adaptive-minishop-custom-policy {
    margin-top: 14px;
    background: #fff8ec;
    color: #202733;
}

.adaptive-minishop-custom-policy p {
    color: #6b5f51;
}

.adaptive-minishop-custom-form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-custom-form label {
    display: grid;
    gap: 6px;
}

.adaptive-minishop-custom-form label span {
    color: #202733;
    font-size: 12px;
    font-weight: 900;
}

.adaptive-minishop-custom-form input,
.adaptive-minishop-custom-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 11px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #f8fafb;
    color: #202733;
    box-sizing: border-box;
    font-size: 14px;
    outline: 0;
}

.adaptive-minishop-custom-form textarea {
    min-height: 118px;
    resize: vertical;
    line-height: 1.6;
}

.adaptive-minishop-custom-form__split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-minishop-custom-form button {
    min-height: 46px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
}

.adaptive-minishop-board-preview {
    display: grid;
    gap: 12px;
    padding: 0 14px 14px;
}

.adaptive-minishop-board-preview article {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-board-preview strong {
    color: #202733;
    font-size: 15px;
    font-weight: 950;
}

.adaptive-minishop-board-preview a,
.adaptive-minishop-board-preview span {
    overflow: hidden;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-minishop-board-preview a {
    color: #303846;
    font-weight: 800;
}

.adaptive-minishop-document__body {
    color: #394150;
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
}

.adaptive-minishop-board-list,
.adaptive-minishop-pagination {
    display: grid;
    gap: 10px;
}

.adaptive-minishop-board-list a {
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-board-list strong {
    overflow: hidden;
    color: #202733;
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-minishop-board-list span {
    color: var(--adaptive-muted);
    font-size: 12px;
}

.adaptive-minishop-board-detail {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-minishop-board-detail h2 {
    margin: 0;
    color: #202733;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
}

.adaptive-minishop-board-detail div {
    display: flex;
    gap: 8px;
    color: var(--adaptive-muted);
    font-size: 12px;
    flex-wrap: wrap;
}

.adaptive-minishop-board-detail img {
    width: 100%;
    border-radius: 8px;
}

.adaptive-minishop-board-detail p {
    margin: 0;
    color: #394150;
    font-size: 14px;
    line-height: 1.7;
}

.adaptive-minishop-line-button,
.adaptive-minishop-write-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.adaptive-minishop-pagination {
    grid-template-columns: repeat(auto-fit, minmax(34px, 1fr));
}

.adaptive-minishop-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #47515f;
    font-size: 13px;
    font-weight: 850;
}

.adaptive-minishop-pagination a.is-active {
    border-color: var(--adaptive-accent);
    background: var(--adaptive-accent);
    color: #ffffff;
}

.adaptive-minishop-notice {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff3f4;
    color: var(--adaptive-accent-dark);
    font-size: 13px;
    font-weight: 850;
}

.adaptive-minishop-write-form {
    display: grid;
    gap: 12px;
}

.adaptive-minishop-write-form label {
    display: grid;
    gap: 6px;
}

.adaptive-minishop-write-form label span {
    color: #202733;
    font-size: 13px;
    font-weight: 900;
}

.adaptive-minishop-write-form input,
.adaptive-minishop-write-form select,
.adaptive-minishop-write-form textarea {
    width: 100%;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #202733;
    font: inherit;
    outline: 0;
}

.adaptive-minishop-write-form input,
.adaptive-minishop-write-form select {
    min-height: 42px;
    padding: 0 10px;
}

.adaptive-minishop-write-form textarea {
    min-height: 150px;
    padding: 10px;
    resize: vertical;
}

.adaptive-minishop-write-form small {
    color: var(--adaptive-accent-dark);
    font-size: 12px;
    font-weight: 800;
}

.adaptive-mobile-footer {
    position: relative;
    padding: 22px 14px 96px;
    background: #555c66;
    color: #d7dbe0;
    text-align: center;
}

.adaptive-mobile-footer__actions {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.adaptive-mobile-footer__actions a {
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #68707b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
}

.adaptive-mobile-footer strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    font-weight: 850;
}

.adaptive-mobile-footer__links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 10px;
    flex-wrap: wrap;
}

.adaptive-mobile-footer__links a {
    color: #eef1f4;
    font-size: 13px;
}

.adaptive-mobile-footer p {
    margin: 0;
    color: #bac0c8;
    font-size: 12px;
}

.adaptive-top-button {
    position: fixed;
    right: max(14px, calc((100vw - 540px) / 2 + 14px));
    bottom: calc(var(--adaptive-bottom-height) + 14px + env(safe-area-inset-bottom));
    z-index: 40;
    width: 48px;
    height: 48px;
    border: 1px solid #d8dce2;
    border-radius: 8px;
    background: #ffffff;
    color: #2f3641;
    box-shadow: var(--adaptive-shadow);
    font-size: 12px;
    font-weight: 850;
}

.adaptive-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-width: 540px;
    min-height: calc(var(--adaptive-bottom-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateX(-50%);
    border-top: 1px solid #d8dce2;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 28px rgba(31, 41, 51, 0.08);
}

.adaptive-bottom-nav a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #66707d;
    font-size: 11px;
    font-weight: 750;
}

.adaptive-bottom-nav a.is-active {
    color: var(--adaptive-accent);
}

.adaptive-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(18, 24, 33, 0.45);
}

.adaptive-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: max(0px, calc((100vw - 540px) / 2));
    z-index: 90;
    width: min(88vw, 468px);
    max-width: 468px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-24px);
    background: #f4f5f7;
    box-shadow: 18px 0 40px rgba(31, 41, 51, 0.2);
    transition: opacity 0.18s ease, transform 0.22s ease, visibility 0.18s ease;
}

.adaptive-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

.adaptive-drawer__user {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-height: 76px;
    padding: 16px;
    background: var(--adaptive-accent);
    color: #ffffff;
}

.adaptive-drawer__user strong,
.adaptive-drawer__user span {
    display: block;
}

.adaptive-drawer__user strong {
    font-size: 17px;
    font-weight: 850;
}

.adaptive-drawer__user span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.35;
}

.adaptive-drawer__section {
    margin-top: 10px;
    padding: 14px 16px;
    background: #ffffff;
}

nav.adaptive-drawer__section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-drawer__section h2 {
    margin: 0 0 12px;
    color: #2a3039;
    font-size: 17px;
    font-weight: 850;
}

.adaptive-drawer__section a {
    display: block;
    min-height: 42px;
    padding: 12px 10px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
    color: #323a46;
    font-size: 14px;
    font-weight: 750;
}

.adaptive-drawer__category-list,
.adaptive-drawer__service-list {
    display: grid;
    gap: 8px;
}

.adaptive-drawer__empty {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 14px;
}

.adaptive-sub-hero {
    padding: 18px 14px 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--adaptive-line);
}

.adaptive-sub-hero a {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--adaptive-accent);
    font-size: 13px;
    font-weight: 800;
}

.adaptive-sub-hero h1 {
    margin: 0;
    color: #202733;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.adaptive-sub-hero p {
    margin: 8px 0 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.45;
}

.adaptive-filter-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 8px;
    padding: 12px 14px;
    background: #ffffff;
}

.adaptive-filter-search label {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 44px;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #d8dce2;
    border-radius: 8px;
    background: #f7f8fa;
    color: var(--adaptive-muted);
}

.adaptive-filter-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
}

.adaptive-filter-search button {
    height: 44px;
    border-radius: 8px;
    background: var(--adaptive-ink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
}

.adaptive-chip-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 14px 12px;
    background: #ffffff;
    border-bottom: 1px solid var(--adaptive-line);
    scrollbar-width: none;
}

.adaptive-chip-row::-webkit-scrollbar {
    display: none;
}

.adaptive-chip-row a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 9px 13px;
    border: 1px solid #dfe3e8;
    border-radius: 999px;
    background: #ffffff;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.adaptive-chip-row a.is-active {
    border-color: var(--adaptive-accent);
    background: var(--adaptive-accent);
    color: #ffffff;
}

.adaptive-section--catalog {
    margin-top: 0;
    background: #f3f4f6;
}

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

.adaptive-flash-stack {
    display: grid;
    gap: 8px;
    padding: 12px 14px 0;
}

.adaptive-flash {
    padding: 12px;
    border-radius: 8px;
    background: #eef6ff;
    color: #174777;
    font-size: 13px;
    font-weight: 750;
}

.adaptive-flash--error {
    background: #fff1f2;
    color: #be123c;
}

.adaptive-flash--success {
    background: #ecfdf3;
    color: #027a48;
}

.adaptive-page-main {
    padding-bottom: 18px;
}

.adaptive-sub-hero--compact h1 {
    font-size: 22px;
}

.adaptive-state-card {
    display: grid;
    gap: 10px;
    margin: 14px;
    padding: 20px 16px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.adaptive-state-card h2 {
    margin: 0;
    color: #202733;
    font-size: 18px;
    font-weight: 900;
}

.adaptive-state-card p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.5;
}

.adaptive-state-card a,
.adaptive-state-card__actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
}

.adaptive-state-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-state-card__actions a + a {
    background: #202733;
}

.adaptive-cart-form,
.adaptive-order-list,
.adaptive-checkout-form {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.adaptive-cart-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-cart-summary div,
.adaptive-summary-grid div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 14px 12px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-cart-summary span,
.adaptive-summary-grid span {
    color: var(--adaptive-muted);
    font-size: 12px;
    font-weight: 750;
}

.adaptive-cart-summary strong,
.adaptive-summary-grid strong {
    color: #202733;
    font-size: 18px;
    font-weight: 900;
    word-break: keep-all;
}

.adaptive-cart-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-cart-actions button,
.adaptive-cart-item__tools button,
.adaptive-order-card__actions button {
    min-height: 40px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #303846;
    font-size: 13px;
    font-weight: 850;
}

.adaptive-cart-group,
.adaptive-checkout-section,
.adaptive-total-card,
.adaptive-order-card,
.adaptive-member-card {
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-cart-group h2,
.adaptive-checkout-section h2 {
    margin: 0;
    padding: 14px;
    border-bottom: 1px solid var(--adaptive-line);
    color: #202733;
    font-size: 16px;
    font-weight: 900;
}

.adaptive-cart-item {
    display: grid;
    grid-template-columns: 48px 84px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid #eef0f3;
}

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

.adaptive-cart-item__check {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: var(--adaptive-muted);
    font-size: 11px;
    font-weight: 750;
}

.adaptive-cart-item__thumb,
.adaptive-order-card__thumb,
.adaptive-checkout-item__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #eef1f4;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

.adaptive-cart-item__thumb {
    width: 84px;
    height: 84px;
}

.adaptive-cart-item__thumb img,
.adaptive-order-card__thumb img,
.adaptive-checkout-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-cart-item__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.adaptive-cart-item__title {
    overflow: hidden;
    color: #202733;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.adaptive-cart-item__option,
.adaptive-cart-item__body em {
    color: var(--adaptive-muted);
    font-size: 12px;
    font-style: normal;
}

.adaptive-cart-item__body strong {
    color: #111827;
    font-size: 15px;
    font-weight: 900;
}

.adaptive-cart-item__tools {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px 58px;
    gap: 8px;
    align-items: end;
}

.adaptive-cart-item__tools label {
    display: grid;
    gap: 4px;
    color: var(--adaptive-muted);
    font-size: 12px;
    font-weight: 800;
}

.adaptive-cart-item__tools input,
.adaptive-form-grid input,
.adaptive-form-grid textarea,
.adaptive-date-range input {
    width: 100%;
    min-width: 0;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #202733;
    outline: 0;
}

.adaptive-cart-item__tools input {
    height: 40px;
    padding: 0 10px;
}

.adaptive-total-card {
    padding: 14px;
}

.adaptive-total-card dl {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
}

.adaptive-total-card div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #4b5563;
    font-size: 14px;
}

.adaptive-total-card dt,
.adaptive-total-card dd {
    margin: 0;
}

.adaptive-total-card .is-total {
    padding-top: 10px;
    border-top: 1px solid var(--adaptive-line);
    color: #111827;
    font-size: 17px;
    font-weight: 900;
}

.adaptive-total-card button {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.adaptive-filter-search--stacked {
    grid-template-columns: 1fr;
    gap: 8px;
}

.adaptive-date-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.adaptive-date-range input {
    height: 42px;
    padding: 0 10px;
    font-size: 13px;
}

.adaptive-chip-row--status {
    padding-top: 12px;
}

.adaptive-order-card {
    overflow: hidden;
}

.adaptive-order-card__head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--adaptive-line);
}

.adaptive-order-card__head div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.adaptive-order-card__head strong {
    color: #202733;
    font-size: 14px;
    font-weight: 900;
}

.adaptive-order-card__head span {
    overflow: hidden;
    color: var(--adaptive-muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-order-card__head em {
    flex: 0 0 auto;
    align-self: start;
    padding: 6px 8px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1d4f91;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.adaptive-order-card__body,
.adaptive-checkout-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
}

.adaptive-order-card__thumb,
.adaptive-checkout-item__thumb {
    width: 74px;
    height: 74px;
}

.adaptive-order-card__body div,
.adaptive-checkout-item div {
    display: grid;
    align-content: center;
    gap: 4px;
    min-width: 0;
}

.adaptive-order-card__body strong,
.adaptive-checkout-item strong {
    overflow: hidden;
    color: #202733;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-order-card__body span,
.adaptive-checkout-item span {
    color: var(--adaptive-muted);
    font-size: 12px;
}

.adaptive-order-card__body em,
.adaptive-checkout-item em {
    color: #111827;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.adaptive-order-card__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 14px 14px;
}

.adaptive-member-card {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 14px;
    padding: 16px;
}

.adaptive-member-card div {
    min-width: 0;
}

.adaptive-member-card span {
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 850;
}

.adaptive-member-card h2 {
    margin: 4px 0;
    color: #202733;
    font-size: 20px;
    font-weight: 900;
}

.adaptive-member-card p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.45;
}

.adaptive-member-card a {
    flex: 0 0 auto;
    align-self: start;
    padding: 8px 10px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #303846;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 14px 14px;
}

.adaptive-member-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 14px 14px;
}

.adaptive-member-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
    color: #303846;
    font-size: 14px;
    font-weight: 850;
}

.adaptive-member-orders,
.adaptive-form-grid,
.adaptive-radio-stack,
.adaptive-payment-grid {
    display: grid;
    gap: 8px;
}

.adaptive-member-order {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-member-order strong {
    overflow: hidden;
    color: #202733;
    font-size: 14px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adaptive-member-order span {
    color: var(--adaptive-muted);
    font-size: 12px;
}

.adaptive-checkout-section {
    padding-bottom: 14px;
}

.adaptive-radio-stack,
.adaptive-form-grid,
.adaptive-payment-grid,
.adaptive-checkout-help {
    padding: 0 14px;
}

.adaptive-installment-guide__content {
    overflow-x: auto;
    padding: 0 14px 14px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
}

.adaptive-installment-guide__content img,
.adaptive-installment-guide__content table {
    max-width: 100%;
}

.adaptive-radio-stack label,
.adaptive-payment-grid label,
.adaptive-address-choice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #303846;
    font-size: 14px;
    font-weight: 800;
}

.adaptive-address-choice span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.adaptive-address-choice em {
    color: var(--adaptive-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.4;
}

.adaptive-form-grid label {
    display: grid;
    gap: 6px;
    color: #303846;
    font-size: 13px;
    font-weight: 800;
}

.adaptive-form-grid input,
.adaptive-form-grid textarea {
    min-height: 42px;
    padding: 10px;
    font-size: 14px;
}

.adaptive-form-grid textarea {
    min-height: 84px;
    resize: vertical;
}

.adaptive-inline-check {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
}

.adaptive-checkout-help {
    margin: 10px 0 0;
    color: var(--adaptive-muted);
    font-size: 12px;
    line-height: 1.45;
}

.adaptive-total-card--sticky {
    position: sticky;
    bottom: calc(var(--adaptive-bottom-height) + env(safe-area-inset-bottom) + 8px);
    z-index: 20;
    box-shadow: var(--adaptive-shadow);
}

.adaptive-login-card,
.adaptive-login-guide,
.adaptive-customer-hero,
.adaptive-customer-grid,
.adaptive-static-card {
    margin: 14px;
}

.adaptive-login-card,
.adaptive-login-guide,
.adaptive-customer-hero,
.adaptive-static-card {
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-login-card {
    padding: 16px;
}

.adaptive-login-card__head h2,
.adaptive-login-guide h2,
.adaptive-customer-hero h2,
.adaptive-static-card h2 {
    margin: 0;
    color: #202733;
    font-size: 18px;
    font-weight: 900;
}

.adaptive-login-card__head p,
.adaptive-customer-hero p,
.adaptive-static-card p {
    margin: 8px 0 0;
    color: var(--adaptive-muted);
    font-size: 14px;
    line-height: 1.5;
}

.adaptive-form-alert {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #fff1f2;
    color: #be123c;
    font-size: 13px;
    font-weight: 800;
}

.adaptive-login-form {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.adaptive-login-form label {
    display: grid;
    gap: 6px;
    color: #303846;
    font-size: 13px;
    font-weight: 850;
}

.adaptive-login-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    outline: 0;
    color: #202733;
    font-size: 15px;
}

.adaptive-login-form small {
    color: #be123c;
    font-size: 12px;
    font-weight: 750;
}

.adaptive-login-form button {
    min-height: 48px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.adaptive-login-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.adaptive-login-links--account {
    grid-template-columns: 1fr;
}

.adaptive-login-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #303846;
    font-size: 14px;
    font-weight: 850;
}

.adaptive-login-guide {
    padding: 16px;
}

.adaptive-login-guide ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-form-alert--success {
    background: #f0fbf6;
    color: #16764d;
}

.adaptive-form-alert--notice {
    background: #f4f7ff;
    color: #315a9f;
}

.adaptive-recovery-card {
    margin: 14px;
    padding: 16px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-recovery-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.adaptive-recovery-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #303846;
    font-size: 14px;
    font-weight: 900;
}

.adaptive-recovery-tabs a.is-active {
    border-color: #202733;
    background: #202733;
    color: #ffffff;
}

.adaptive-recovery-head {
    display: grid;
    gap: 7px;
    margin-top: 4px;
}

.adaptive-recovery-head h2 {
    margin: 0;
    color: #202733;
    font-size: 18px;
    font-weight: 900;
}

.adaptive-recovery-head p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-recovery-form {
    margin-top: 14px;
}

.adaptive-recovery-result {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background: #f7fafc;
}

.adaptive-recovery-result strong {
    color: #202733;
    font-size: 16px;
    font-weight: 900;
}

.adaptive-recovery-result p {
    margin: 0;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-recovery-result span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #ffffff;
    color: #202733;
    font-weight: 900;
}

.adaptive-recovery-result small {
    color: #315a9f;
    font-size: 12px;
    line-height: 1.5;
}

.adaptive-recovery-primary-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 12px;
    border-radius: 8px;
    background: var(--adaptive-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.adaptive-customer-hero {
    padding: 18px 16px;
    background: #202733;
    color: #ffffff;
}

.adaptive-customer-hero span {
    display: block;
    margin-bottom: 6px;
    color: #ffb3bb;
    font-size: 12px;
    font-weight: 850;
}

.adaptive-customer-hero h2 {
    color: #ffffff;
}

.adaptive-customer-hero p {
    color: rgba(255, 255, 255, 0.78);
}

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

.adaptive-customer-grid a {
    display: grid;
    gap: 6px;
    min-height: 116px;
    padding: 14px;
    border: 1px solid var(--adaptive-line);
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-customer-grid strong {
    color: #202733;
    font-size: 15px;
    font-weight: 900;
}

.adaptive-customer-grid span {
    color: var(--adaptive-muted);
    font-size: 12px;
    line-height: 1.45;
}

.adaptive-customer-contact dl {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 14px;
}

.adaptive-customer-contact div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #eef0f3;
    color: #303846;
    font-size: 14px;
}

.adaptive-customer-contact div:last-child {
    border-bottom: 0;
}

.adaptive-customer-contact dt,
.adaptive-customer-contact dd {
    margin: 0;
}

.adaptive-customer-contact dt {
    flex: 0 0 auto;
    color: var(--adaptive-muted);
    font-weight: 800;
}

.adaptive-customer-contact dd {
    min-width: 0;
    text-align: right;
    font-weight: 850;
    word-break: break-word;
}

.adaptive-faq-list {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.adaptive-faq-list details {
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-faq-list summary {
    padding: 13px;
    color: #202733;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
}

.adaptive-faq-list p {
    margin: 0;
    padding: 0 13px 13px;
    color: var(--adaptive-muted);
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-static-card {
    padding: 16px;
}

.adaptive-static-card article + article {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--adaptive-line);
}

.adaptive-detail-main {
    padding-bottom: 184px;
}

.adaptive-detail-path {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px 14px;
    background: #ffffff;
    color: #727b88;
    font-size: 13px;
    font-weight: 750;
}

.adaptive-detail-path a {
    color: var(--adaptive-accent);
}

.adaptive-detail-gallery {
    background: #ffffff;
    padding: 0 14px 12px;
}

.adaptive-detail-gallery img,
.adaptive-detail-gallery__fallback {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    background: #e9ecef;
}

.adaptive-detail-gallery__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6875;
    font-size: 22px;
    font-weight: 900;
}

.adaptive-detail-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 14px 14px;
    background: #ffffff;
}

.adaptive-detail-thumbs button {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #eef1f4;
}

.adaptive-detail-thumbs button.is-active {
    border-color: var(--adaptive-accent);
}

.adaptive-detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adaptive-detail-summary,
.adaptive-detail-panel {
    margin-top: 10px;
    padding: 16px 14px;
    background: #ffffff;
}

.adaptive-detail-summary__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--adaptive-muted);
    font-size: 12px;
    font-weight: 750;
}

.adaptive-detail-summary h1 {
    margin: 9px 0 0;
    color: #202733;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 900;
}

.adaptive-detail-summary p {
    margin: 8px 0 0;
    color: #66707d;
    font-size: 14px;
    line-height: 1.45;
}

.adaptive-detail-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.adaptive-detail-price span {
    color: var(--adaptive-accent);
    font-size: 18px;
    font-weight: 900;
}

.adaptive-detail-price strong {
    color: #171b22;
    font-size: 24px;
    font-weight: 900;
}

.adaptive-detail-price del {
    color: #9aa1aa;
    font-size: 13px;
}

.adaptive-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7f8fa;
}

.adaptive-detail-rating strong {
    color: #f59f00;
    font-size: 18px;
}

.adaptive-detail-rating span {
    color: var(--adaptive-muted);
    font-size: 13px;
    font-weight: 700;
}

.adaptive-detail-panel h2 {
    margin: 0 0 12px;
    color: #202733;
    font-size: 18px;
    font-weight: 900;
}

.adaptive-detail-panel[id] {
    scroll-margin-top: 116px;
}

.adaptive-detail-info {
    display: grid;
    gap: 0;
    margin: 0;
}

.adaptive-detail-info div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #edf0f3;
}

.adaptive-detail-info div:first-child {
    border-top: 0;
}

.adaptive-detail-info dt {
    color: #7b8490;
    font-size: 13px;
    font-weight: 800;
}

.adaptive-detail-info dd {
    min-width: 0;
    margin: 0;
    color: #2f3641;
    font-size: 13px;
    line-height: 1.45;
}

.adaptive-detail-tabs {
    position: sticky;
    top: 57px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 10px;
    border-top: 1px solid var(--adaptive-line);
    border-bottom: 1px solid var(--adaptive-line);
    background: #ffffff;
}

.adaptive-detail-tabs a {
    min-height: 44px;
    padding: 14px 4px;
    text-align: center;
    color: #4b5563;
    font-size: 13px;
    font-weight: 850;
}

.adaptive-detail-text {
    margin: 0;
    color: #394150;
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

.adaptive-review-list,
.adaptive-inquiry-list {
    display: grid;
    gap: 10px;
}

.adaptive-review-list article,
.adaptive-inquiry-list article {
    padding: 12px;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #ffffff;
}

.adaptive-review-list strong,
.adaptive-inquiry-list strong {
    display: block;
    color: #232a34;
    font-size: 14px;
    font-weight: 850;
}

.adaptive-review-list span,
.adaptive-inquiry-list span {
    display: block;
    margin-top: 4px;
    color: var(--adaptive-accent);
    font-size: 12px;
    font-weight: 800;
}

.adaptive-review-list p {
    margin: 8px 0 0;
    color: #5f6875;
    font-size: 13px;
    line-height: 1.5;
}

.adaptive-purchase-bar {
    position: fixed;
    left: 50%;
    bottom: calc(var(--adaptive-bottom-height) + env(safe-area-inset-bottom));
    z-index: 65;
    display: grid;
    grid-template-columns: 86px 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 540px;
    padding: 10px 12px;
    transform: translateX(-50%);
    border-top: 1px solid #d8dce2;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 28px rgba(31, 41, 51, 0.08);
}

.adaptive-purchase-bar label {
    display: grid;
    gap: 3px;
}

.adaptive-purchase-bar label span {
    color: #7b8490;
    font-size: 11px;
    font-weight: 800;
}

.adaptive-purchase-bar input {
    width: 100%;
    height: 38px;
    border: 1px solid #d8dce2;
    border-radius: 8px;
    text-align: center;
    font-weight: 850;
}

.adaptive-purchase-bar button {
    height: 48px;
    align-self: end;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.adaptive-purchase-bar__cart {
    background: #344054;
}

.adaptive-purchase-bar__buy {
    background: var(--adaptive-accent);
}

@media (min-width: 541px) {
    .adaptive-mobile-shell {
        margin-top: 16px;
        margin-bottom: 16px;
        min-height: calc(100vh - 32px);
        border-radius: 16px;
        overflow: clip;
    }

    .adaptive-mobile-header {
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 380px) {
    .adaptive-quick-grid__item {
        min-height: 78px;
    }

    .adaptive-quick-grid__item span {
        width: 30px;
        height: 30px;
    }

    .adaptive-product-card--list {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .adaptive-product-card--list .adaptive-product-card__thumb {
        min-height: 132px;
    }

    .adaptive-atelier-catalog-card__main {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .adaptive-atelier-catalog-card__thumb {
        width: 86px;
        height: 112px;
    }

    .adaptive-minishop-product {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .adaptive-minishop-product__image {
        min-height: 128px;
    }

    .adaptive-minishop-directory-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .adaptive-minishop-directory-card > span {
        width: 82px;
        height: 82px;
    }
}
