/* aml-shop-css-v20260517d — follows store editor theme tokens (same as homepage) */
body.shop-tpl-apple_minimal_luxury.shop-body-premium {
    margin: 0;
    font-family: var(--aml-font, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif);
    background: var(--store-bg, #ffffff);
    color: var(--store-text, #1d1d1f);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --aml-bg: var(--store-bg, #ffffff);
    --aml-black: var(--store-text, #1d1d1f);
    --aml-accent: var(--store-accent, #5e6b7a);
    --aml-primary: var(--store-primary, #1d1d1f);
    --aml-cta: var(--store-button, #1d1d1f);
    --aml-surface: color-mix(in srgb, var(--store-bg, #ffffff) 90%, var(--store-text, #1d1d1f) 10%);
    --aml-silver: color-mix(in srgb, var(--store-bg, #ffffff) 82%, var(--store-text, #1d1d1f) 18%);
    --aml-border: color-mix(in srgb, var(--store-text, #1d1d1f) 12%, transparent);
    --aml-border-soft: color-mix(in srgb, var(--store-text, #1d1d1f) 7%, transparent);
    --aml-muted: color-mix(in srgb, var(--store-text, #1d1d1f) 56%, var(--store-bg, #ffffff) 44%);
    --aml-radius: max(14px, min(22px, calc(var(--store-btn-radius, 12px) + 8px)));
    --aml-btn-radius: max(10px, min(999px, var(--store-btn-radius, 12px)));
    --aml-radius-sm: 14px;
    --aml-pill: 999px;
    --aml-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 10px 32px rgba(0, 0, 0, 0.035);
    --aml-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.04), 0 28px 56px rgba(0, 0, 0, 0.075);
    --aml-glass: color-mix(in srgb, var(--store-card-bg, #ffffff) 90%, transparent);
    --aml-ease-lift: cubic-bezier(0.22, 1, 0.36, 1);
    --aml-safe-top: env(safe-area-inset-top, 0px);
    --aml-header-gap: 6px;
    --aml-topbar-h: 54px;
    --aml-shop-bar-top: 62px;
    scroll-padding-top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + 20px);
}

body.shop-tpl-apple_minimal_luxury .aml-page {
    min-height: 100vh;
    padding-bottom: max(88px, calc(72px + env(safe-area-inset-bottom)));
}

body.shop-tpl-apple_minimal_luxury .aml-shell {
    width: min(1280px, calc(100% - 56px));
    margin-inline: auto;
}
@media (max-width: 640px) {
    body.shop-tpl-apple_minimal_luxury .aml-shell { width: calc(100% - 32px); }
}

/* ── Floating glass nav ── */
body.shop-tpl-apple_minimal_luxury .aml-topbar {
    position: sticky;
    top: var(--aml-safe-top);
    z-index: 200;
    margin: 8px 0 6px;
    padding: 8px 14px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) minmax(160px, 360px) auto;
    grid-template-areas: "back brand search actions";
    align-items: center;
    gap: 10px;
    background: var(--aml-glass);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--aml-border-soft);
    border-radius: var(--aml-pill);
    box-shadow: var(--aml-shadow);
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-home { grid-area: back; }
body.shop-tpl-apple_minimal_luxury .aml-topbar-brand { grid-area: brand; }
body.shop-tpl-apple_minimal_luxury .aml-topbar-search { grid-area: search; }
body.shop-tpl-apple_minimal_luxury .aml-topbar-actions { grid-area: actions; }

body.shop-tpl-apple_minimal_luxury .aml-topbar-home {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--aml-border);
    background: var(--store-card-bg, #fff);
    color: var(--aml-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-home:hover {
    transform: translateY(-1px);
    box-shadow: var(--aml-shadow);
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-brand {
    text-align: center;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.03em;
    color: var(--store-primary, var(--aml-black));
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: none;
    margin: 0;
    padding: 0 14px;
    height: 36px;
    border-radius: var(--aml-pill);
    border: 1px solid var(--aml-border);
    background: var(--aml-surface);
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-search i {
    color: var(--aml-muted);
    font-size: 14px;
    flex-shrink: 0;
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--aml-black);
    outline: none;
    min-width: 0;
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-search input::placeholder {
    color: var(--aml-muted);
}
body.shop-tpl-apple_minimal_luxury .aml-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
body.shop-tpl-apple_minimal_luxury .aml-icon-btn {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--aml-border);
    background: var(--store-card-bg, #fff);
    color: var(--aml-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--aml-shadow);
}
body.shop-tpl-apple_minimal_luxury .aml-icon-btn.is-saved {
    color: #b42318;
    border-color: rgba(180, 35, 24, 0.25);
}
body.shop-tpl-apple_minimal_luxury .aml-icon-btn .aml-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: var(--aml-pill);
    background: var(--aml-cta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}
body.shop-tpl-apple_minimal_luxury .aml-icon-btn .aml-badge.is-on {
    display: flex;
}

/* ── Hero ── */
body.shop-tpl-apple_minimal_luxury .aml-hero {
    text-align: center;
    padding: clamp(48px, 8vw, 96px) 20px clamp(32px, 5vw, 56px);
    scroll-margin-top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + 16px);
}
body.shop-tpl-apple_minimal_luxury .aml-hero-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aml-accent);
}
body.shop-tpl-apple_minimal_luxury .aml-hero-title {
    margin: 16px 0 0;
    font-family: var(--aml-heading-font, inherit);
    font-size: clamp(38px, 5.2vw, 60px);
    font-weight: 600;
    letter-spacing: -0.048em;
    line-height: 1.04;
    color: var(--store-primary, var(--aml-black));
}
body.shop-tpl-apple_minimal_luxury .aml-hero-lead {
    margin: 22px auto 0;
    max-width: 52ch;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.7;
    font-weight: 400;
    color: var(--aml-muted);
}

/* ── Sticky filters ── */
body.shop-tpl-apple_minimal_luxury .aml-shop-bar {
    position: sticky;
    top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + var(--aml-header-gap));
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0 12px;
    margin-bottom: 0;
    background: color-mix(in srgb, var(--store-bg, #fff) 96%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--aml-border-soft);
    scroll-margin-top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + 12px);
}
body.shop-tpl-apple_minimal_luxury .aml-shop-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
}
body.shop-tpl-apple_minimal_luxury .aml-pills {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 2px;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
}
body.shop-tpl-apple_minimal_luxury .aml-pills::-webkit-scrollbar {
    display: none;
}
body.shop-tpl-apple_minimal_luxury .aml-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid var(--aml-border-soft);
    background: var(--aml-surface);
    color: var(--aml-black);
    border-radius: var(--aml-pill);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.015em;
    cursor: pointer;
    transition: background 0.28s var(--aml-ease-lift), color 0.28s ease, border-color 0.28s ease, transform 0.28s var(--aml-ease-lift), box-shadow 0.28s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-pill:hover {
    border-color: color-mix(in srgb, var(--store-primary, var(--aml-black)) 28%, transparent);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body.shop-tpl-apple_minimal_luxury .aml-pill.is-active {
    background: var(--aml-cta);
    border-color: var(--aml-cta);
    color: #fff;
}
body.shop-tpl-apple_minimal_luxury .aml-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
body.shop-tpl-apple_minimal_luxury .aml-sort-wrap label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aml-muted);
}
body.shop-tpl-apple_minimal_luxury .aml-sort-wrap select {
    appearance: none;
    border: 1px solid var(--aml-border);
    background: var(--store-card-bg, #fff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236e6e73' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
    border-radius: var(--aml-pill);
    padding: 8px 30px 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--aml-black);
    cursor: pointer;
}

body.shop-tpl-apple_minimal_luxury .aml-results-meta {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: var(--aml-muted);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* ── Product grid ── */
body.shop-tpl-apple_minimal_luxury .aml-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 2.8vw, 34px);
    padding-top: 8px;
    padding-bottom: 80px;
    align-items: stretch;
}
body.shop-tpl-apple_minimal_luxury .aml-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--store-card-bg, #fff);
    border: 1px solid var(--aml-border-soft);
    border-radius: var(--aml-radius);
    overflow: hidden;
    box-shadow: var(--aml-shadow);
    transition: transform 0.42s var(--aml-ease-lift), box-shadow 0.42s var(--aml-ease-lift), border-color 0.42s ease;
    will-change: transform;
}
body.shop-tpl-apple_minimal_luxury .aml-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--aml-shadow-hover);
    border-color: color-mix(in srgb, var(--store-primary, var(--aml-black)) 22%, transparent);
}
body.shop-tpl-apple_minimal_luxury .aml-card.is-hidden {
    display: none !important;
}
body.shop-tpl-apple_minimal_luxury .aml-card-media {
    position: relative;
    aspect-ratio: 1 / 1.06;
    background: linear-gradient(
        168deg,
        color-mix(in srgb, var(--store-bg, #fff) 78%, var(--store-text, #1d1d1f) 22%) 0%,
        color-mix(in srgb, var(--store-card-bg, #fff) 94%, var(--store-text, #1d1d1f) 6%) 48%,
        var(--store-card-bg, #fff) 100%
    );
    overflow: hidden;
    isolation: isolate;
}
body.shop-tpl-apple_minimal_luxury .aml-card-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
body.shop-tpl-apple_minimal_luxury .aml-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    padding: 0;
    display: block;
    transform: scale(1.03);
    transition: transform 0.55s var(--aml-ease-lift), opacity 0.35s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-card:hover .aml-card-media img {
    transform: scale(1.07);
}
body.shop-tpl-apple_minimal_luxury .aml-card-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--aml-border);
    background: color-mix(in srgb, var(--store-card-bg, #fff) 94%, transparent);
    color: var(--aml-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-card-wish:hover {
    transform: scale(1.06);
}
body.shop-tpl-apple_minimal_luxury .aml-card-wish.is-saved {
    color: #b42318;
}
body.shop-tpl-apple_minimal_luxury .aml-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
body.shop-tpl-apple_minimal_luxury .aml-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.28;
}
body.shop-tpl-apple_minimal_luxury .aml-card-title a {
    color: inherit;
    text-decoration: none;
}
body.shop-tpl-apple_minimal_luxury .aml-card-meta {
    margin: 0;
    font-size: 13px;
    line-height: 1.58;
    color: var(--aml-muted);
    min-height: 1.2em;
}
body.shop-tpl-apple_minimal_luxury .aml-card-price {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: var(--store-primary, var(--aml-black));
}
body.shop-tpl-apple_minimal_luxury .aml-card-price old {
    font-size: 0.75em;
    font-weight: 500;
    color: var(--aml-muted);
    text-decoration: line-through;
    margin-left: 6px;
}
body.shop-tpl-apple_minimal_luxury .aml-card-actions {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    gap: 10px;
}
body.shop-tpl-apple_minimal_luxury .aml-btn {
    appearance: none;
    border: none;
    border-radius: var(--aml-btn-radius, var(--aml-pill));
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-btn:active {
    transform: scale(0.98);
}
body.shop-tpl-apple_minimal_luxury .aml-btn--primary {
    flex: 1;
    background: var(--aml-cta);
    color: #fff;
    border-radius: var(--aml-btn-radius);
}
body.shop-tpl-apple_minimal_luxury .aml-btn--primary:hover {
    opacity: 0.9;
}
body.shop-tpl-apple_minimal_luxury .aml-btn--secondary {
    width: 44px;
    padding: 0;
    background: var(--store-card-bg, #fff);
    color: var(--aml-black);
    border: 1px solid var(--aml-border);
}
body.shop-tpl-apple_minimal_luxury a.aml-btn--secondary {
    width: 100%;
    min-height: 44px;
    padding: 0 20px;
}
body.shop-tpl-apple_minimal_luxury .aml-btn--secondary.is-saved {
    color: #b42318;
    border-color: rgba(180, 35, 24, 0.28);
}

/* Empty */
body.shop-tpl-apple_minimal_luxury .aml-empty {
    text-align: center;
    padding: 80px 24px 120px;
}
body.shop-tpl-apple_minimal_luxury .aml-empty h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--store-primary, var(--aml-black));
}
body.shop-tpl-apple_minimal_luxury .aml-empty p {
    margin: 12px auto 0;
    max-width: 42ch;
    color: var(--aml-muted);
    line-height: 1.6;
}

/* Quick view modal */
body.shop-tpl-apple_minimal_luxury .aml-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}
body.shop-tpl-apple_minimal_luxury .aml-modal-back {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(15, 15, 18, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
body.shop-tpl-apple_minimal_luxury .aml-modal-panel {
    position: relative;
    width: min(520px, 100%);
    max-height: min(90vh, 720px);
    overflow: auto;
    background: color-mix(in srgb, var(--store-card-bg, #fff) 98%, transparent);
    border: 1px solid var(--aml-border);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.32s cubic-bezier(0.22, 0.85, 0.22, 1);
}
body.shop-tpl-apple_minimal_luxury .aml-modal.is-open .aml-modal-panel {
    transform: translateY(0) scale(1);
}
body.shop-tpl-apple_minimal_luxury .aml-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--aml-border);
    background: var(--store-card-bg, #fff);
    cursor: pointer;
}
body.shop-tpl-apple_minimal_luxury .aml-modal-img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    background: linear-gradient(
        165deg,
        color-mix(in srgb, var(--store-bg, #fff) 80%, var(--store-text, #1d1d1f) 20%) 0%,
        var(--store-card-bg, #fff) 100%
    );
}
body.shop-tpl-apple_minimal_luxury .aml-modal-body {
    padding: 24px 28px 28px;
}
body.shop-tpl-apple_minimal_luxury .aml-modal-body h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--store-primary, var(--aml-black));
}
body.shop-tpl-apple_minimal_luxury .aml-modal-price {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--store-primary, var(--aml-black));
}
body.shop-tpl-apple_minimal_luxury .aml-modal-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--aml-muted);
}
body.shop-tpl-apple_minimal_luxury .aml-modal-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.shop-tpl-apple_minimal_luxury .aml-modal-actions .aml-btn--primary {
    width: 100%;
}

/* Mobile sticky cart */
body.shop-tpl-apple_minimal_luxury .aml-sticky-buy {
    position: fixed;
    left: 50%;
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 180;
    width: min(400px, calc(100% - 32px));
    transform: translateX(-50%) translateY(120%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: var(--aml-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--aml-border-soft);
    border-radius: var(--aml-pill);
    box-shadow: var(--aml-shadow-hover);
    transition: transform 0.4s var(--aml-ease-lift), opacity 0.4s ease;
}
body.shop-tpl-apple_minimal_luxury .aml-sticky-buy.is-visible {
    transform: translateX(-50%) translateY(0);
}
body.shop-tpl-apple_minimal_luxury .aml-sticky-buy span {
    font-size: 13px;
    font-weight: 600;
    color: var(--aml-muted);
}
body.shop-tpl-apple_minimal_luxury .aml-sticky-buy a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--aml-cta);
    border-radius: var(--aml-btn-radius, var(--aml-pill));
    padding: 10px 18px;
}

@media (max-width: 1100px) {
    body.shop-tpl-apple_minimal_luxury .aml-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(20px, 2.5vw, 28px);
    }
}
@media (max-width: 860px) {
    body.shop-tpl-apple_minimal_luxury.shop-body-premium {
        --aml-topbar-h: 76px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding-top: 6px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-topbar {
        margin: 6px 0 4px;
        padding: 6px 10px;
        gap: 6px;
        grid-template-columns: 34px 1fr auto;
        grid-template-areas:
            "back brand actions"
            "search search search";
    }
    body.shop-tpl-apple_minimal_luxury .aml-topbar-home,
    body.shop-tpl-apple_minimal_luxury .aml-icon-btn {
        width: 34px;
        height: 34px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-topbar-search {
        height: 34px;
        padding: 0 12px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-topbar-brand {
        font-size: 14px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-shop-bar {
        top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + 4px);
        padding: 8px 0 10px;
        gap: 6px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-pills {
        mask-image: linear-gradient(90deg, #000 88%, transparent);
        -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
    }
}
@media (max-width: 640px) {
    body.shop-tpl-apple_minimal_luxury.shop-body-premium {
        --aml-topbar-h: 72px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-hero {
        padding: 32px 8px 24px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-hero-title {
        font-size: clamp(30px, 7.5vw, 38px);
    }
    body.shop-tpl-apple_minimal_luxury .aml-hero-lead {
        margin-top: 16px;
        font-size: 15px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-shop-bar {
        top: calc(var(--aml-safe-top) + var(--aml-topbar-h) + 4px);
        padding: 8px 0 10px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-pill {
        padding: 7px 14px;
        font-size: 12px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-sort-wrap label {
        display: none;
    }
    body.shop-tpl-apple_minimal_luxury .aml-grid {
        gap: 14px;
        padding-bottom: 64px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-card-body {
        padding: 14px 14px 16px;
        gap: 6px;
    }
    body.shop-tpl-apple_minimal_luxury .aml-card:hover {
        transform: translateY(-3px);
    }
    body.shop-tpl-apple_minimal_luxury .aml-sticky-buy {
        width: calc(100% - 20px);
        padding: 11px 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
    }
}
@media (prefers-reduced-motion: reduce) {
    body.shop-tpl-apple_minimal_luxury .aml-card,
    body.shop-tpl-apple_minimal_luxury .aml-card-media img,
    body.shop-tpl-apple_minimal_luxury .aml-pill,
    body.shop-tpl-apple_minimal_luxury .aml-modal-panel {
        transition: none !important;
    }
    body.shop-tpl-apple_minimal_luxury .aml-card:hover {
        transform: none;
    }
}
