:root {
    --sf-bg: #ffffff;
    --sf-text: #0c0c0c;
    --sf-muted: #666666;
    --sf-line: #e7e7e7;
    --sf-soft: #f6f6f6;
    --sf-black: #000000;
    --sf-accent: #10b981;
    --sf-white: #ffffff;
    --sf-font-body: 'Sora', sans-serif;
    --sf-font-heading: 'Bebas Neue', sans-serif;
    --sf-space-1: 10px;
    --sf-space-2: 16px;
    --sf-space-3: 24px;
    --sf-space-4: 36px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.storefront-body {
    font-family: var(--sf-font-body);
    background: var(--sf-bg);
    color: var(--sf-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: inherit;
}

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

.sf-shell,
.sf-page {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}

.sf-main {
    min-height: 48vh;
}

.sf-page {
    padding: 56px 0;
}

.sf-kicker {
    margin: 0;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--sf-muted);
    font-weight: 600;
}

.sf-heading {
    margin: 10px 0 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(46px, 7.2vw, 96px);
    line-height: 0.86;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sf-copy {
    margin: 16px 0 0;
    max-width: 680px;
    color: var(--sf-muted);
    line-height: 1.65;
}

/* Shop page hero center alignment — compact spacing */
.sf-page-shop .sf-hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 28vh;
    padding: 24px 0 18px;
}

.sf-page-shop .sf-hero-center .sf-kicker {
    margin: 0 auto;
}

.sf-page-shop .sf-hero-center .sf-heading {
    margin: 10px auto 0;
}

.sf-page-shop .sf-hero-center .sf-copy {
    margin: 16px auto 0;
}

/* Collapsible Filter System */
.sf-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 28px 0 0;
    flex-wrap: wrap;
}

.sf-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.sf-filter-trigger:hover {
    border-color: #1a1a1a;
    background: #fafafa;
}

.sf-filter-trigger i:first-child {
    font-size: 14px;
    color: #666;
}

.sf-filter-chevron {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-filter-trigger[aria-expanded="true"] .sf-filter-chevron {
    transform: rotate(180deg);
}

.sf-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 0;
    line-height: 1;
}

.sf-filter-panel {
    margin: 16px 0 0;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-filter-panel:not([hidden]) {
    max-height: 600px;
    opacity: 1;
    margin-bottom: 8px;
}

.sf-action-row {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sf-meta-row {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.sf-rule {
    border-top: 1px solid var(--sf-line);
    margin: 34px 0;
}

.sf-btn,
.sf-btn-outline,
.sf-btn-link {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--sf-black);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sf-btn {
    background: var(--sf-black);
    color: var(--sf-white);
}

.sf-btn:hover {
    background: var(--sf-accent);
    border-color: var(--sf-accent);
    color: var(--sf-white);
    transform: translateY(-1px);
}

.sf-btn-outline,
.sf-btn-link {
    background: transparent;
    color: var(--sf-black);
}

.sf-btn-outline:hover,
.sf-btn-link:hover {
    background: var(--sf-black);
    color: var(--sf-white);
    transform: translateY(-1px);
}

.app-toast-container {
    position: fixed;
    top: 78px;
    right: 16px;
    z-index: 100;
    display: grid;
    gap: 8px;
}

.app-toast {
    min-width: 220px;
    background: var(--sf-bg);
    border: 1px solid var(--sf-line);
    padding: 10px 12px;
    font-size: 12px;
}

.app-toast-success {
    border-left: 3px solid #2d8d52;
}

.app-toast-error {
    border-left: 3px solid #bb3838;
}

.sf-topline {
    background: var(--sf-black);
    color: var(--sf-white);
    min-height: 34px;
    display: grid;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
}

.sf-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--sf-bg);
    border-bottom: 1px solid var(--sf-line);
    backdrop-filter: blur(10px);
}

.sf-header-row {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.sf-header-row .sf-logo { justify-self: start; }
.sf-header-row .sf-nav { justify-self: center; }
.sf-header-row .sf-actions { justify-self: end; }

.sf-mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--sf-line);
    background: var(--sf-bg);
    align-items: center;
    justify-content: center;
}

.sf-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sf-nav a {
    position: relative;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sf-muted);
}

.sf-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: var(--sf-black);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.sf-nav a:hover,
.sf-nav a.is-active {
    color: var(--sf-black);
}

.sf-nav a:hover::after,
.sf-nav a.is-active::after {
    transform: scaleX(1);
}

/* ============================================================
   Brand Dropdown — Premium navigation component
   ============================================================ */
.sf-brand-dropdown {
    position: relative;
    display: inline-block;
}

.sf-brand-trigger {
    position: relative;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sf-muted);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.18s ease;
}

.sf-brand-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--sf-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.sf-brand-trigger:hover,
.sf-brand-trigger[aria-expanded="true"] {
    color: var(--sf-black);
}

.sf-brand-trigger:hover::after,
.sf-brand-trigger[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.sf-brand-chevron {
    font-size: 9px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-brand-trigger[aria-expanded="true"] .sf-brand-chevron {
    transform: rotate(180deg);
}

.sf-brand-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 420px;
    max-width: 520px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 100;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.sf-brand-menu:not([hidden]) {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.sf-brand-menu-inner {
    max-height: 480px;
    overflow-y: auto;
    padding: 16px;
}

.sf-brand-search {
    position: relative;
    margin-bottom: 14px;
}

.sf-brand-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    pointer-events: none;
}

.sf-brand-search input {
    width: 100%;
    height: 38px;
    padding: 0 12px 0 36px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 13px;
    transition: border-color 0.2s ease;
}

.sf-brand-search input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.sf-brand-section {
    margin-bottom: 18px;
}

.sf-brand-section:last-child {
    margin-bottom: 0;
}

.sf-brand-section-title {
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    margin: 0 0 10px;
}

.sf-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sf-brand-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 80px;
}

.sf-brand-item:hover {
    border-color: #1a1a1a;
    background: #fafafa;
    transform: translateY(-1px);
}

.sf-brand-item.is-active {
    border-color: #1a1a1a;
    background: #f5f5f5;
}

.sf-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 6px;
}

.sf-brand-initial {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sf-brand-name {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

.sf-brand-count {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 9px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 0;
}

.sf-brand-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sf-brand-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sf-brand-list-item:hover {
    background: #f8f8f8;
}

.sf-brand-list-item.is-active {
    background: #f0f0f0;
}

.sf-brand-list-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
}

.sf-brand-list-count {
    font-size: 11px;
    color: #999;
}

.sf-brand-empty {
    padding: 32px 20px;
    text-align: center;
    color: #999;
}

.sf-brand-empty i {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: 0.4;
}

.sf-brand-empty p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .sf-brand-menu {
        left: 0;
        right: 0;
        transform: none;
        min-width: 0;
        max-width: none;
        margin: 0 10px;
    }

    .sf-brand-menu:not([hidden]) {
        transform: translateY(0);
    }

    .sf-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sf-brand-item {
        min-height: 70px;
        padding: 12px 8px;
    }

    .sf-brand-logo,
    .sf-brand-initial {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .sf-brand-name {
        font-size: 10px;
    }
}

.sf-logo {
    font-family: var(--sf-font-heading);
    font-size: 42px;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sf-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-actions a {
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--sf-text);
    font-size: 12px;
}

.sf-actions a:hover {
    border-color: var(--sf-line);
    background: var(--sf-soft);
}

.sf-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 15px;
    height: 15px;
    border-radius: 0;
    background: var(--sf-black);
    color: var(--sf-white);
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sf-mobile-nav {
    display: none;
    border-top: 1px solid var(--sf-line);
    padding: 10px 0 14px;
}

.sf-mobile-nav a {
    display: block;
    padding: 9px 0;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.sf-mobile-nav.is-open {
    display: block;
}

.sf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.sf-home-hero-full {
    position: relative;
    min-height: clamp(520px, 76vh, 860px);
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.62)),
        var(--hero-bg, linear-gradient(145deg, #101010 0%, #232323 45%, #090909 100%));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sf-home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 0;
    color: #fff;
    padding: 72px 0;
}

.sf-home-hero-kicker {
    color: rgba(255, 255, 255, 0.84);
}

.sf-home-hero-title {
    margin: 10px 0 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(58px, 10.2vw, 136px);
    line-height: 0.82;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    max-width: 980px;
}

.sf-home-hero-sub {
    margin: 18px 0 0;
    max-width: 660px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.sf-home-hero-content .sf-btn {
    background: var(--sf-white);
    color: var(--sf-black);
    border-color: var(--sf-white);
}

.sf-home-hero-content .sf-btn:hover {
    background: var(--sf-accent);
    border-color: var(--sf-accent);
    color: var(--sf-white);
}

.sf-home-hero-content .sf-btn-outline {
    border-color: var(--sf-white);
    color: var(--sf-white);
}

.sf-home-hero-content .sf-btn-outline:hover {
    background: var(--sf-white);
    color: var(--sf-black);
}

.sf-home-hero-content .sf-chip {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(10, 10, 10, 0.2);
}

.sf-hero-title {
    margin: 14px 0 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(56px, 9.5vw, 128px);
    line-height: 0.82;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sf-hero-sub {
    margin: 18px 0 0;
    color: var(--sf-muted);
    max-width: 520px;
    font-size: 13px;
}

.sf-hero-media {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.sf-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-chip-row {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-chip {
    border: 1px solid var(--sf-line);
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.sf-metric-band {
    margin-top: 16px;
    border-top: 1px solid var(--sf-line);
    border-bottom: 1px solid var(--sf-line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-metric-item {
    padding: 16px 14px;
    border-right: 1px solid var(--sf-line);
}

.sf-metric-item:last-child {
    border-right: 0;
}

.sf-metric-item strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.2px;
}

.sf-metric-item span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #666;
    margin-top: 2px;
}

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

.sf-section-title {
    margin: 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(36px, 5vw, 74px);
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sf-home-tight {
    padding-top: 0 !important;
}

.sf-home-editorial-title {
    font-size: 42px !important;
}

.sf-media-cover {
    padding: 0;
    background: var(--sf-soft);
}

.sf-media-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.sf-category-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sf-grid-2,
.sf-grid-3,
.sf-grid-4 {
    display: grid;
    gap: 16px;
}

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

.sf-block {
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 24px;
}

.sf-block-muted {
    background: var(--sf-soft);
}

/* ============================================================
   Product Card — Premium borderless design with hover swap
   ============================================================ */
.sf-product-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sf-product-media {
    position: relative;
    display: block;
    background: #f4f1ec;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
}

.sf-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.55s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.sf-product-img-primary { opacity: 1; z-index: 1; }
.sf-product-img-secondary { opacity: 0; z-index: 2; }

.sf-product-card:hover .sf-product-img-primary { opacity: 0; transform: scale(1.03); }
.sf-product-card:hover .sf-product-img-secondary { opacity: 1; transform: scale(1.03); }

/* Fade-up overlay tint for premium feel */
.sf-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sf-product-card:hover .sf-product-media::after { opacity: 1; }

.sf-product-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

/* Badges (top-left, circular) */
.sf-product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sf-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sf-badge-new { background: #f0a04b; }
.sf-badge-sale { background: #c44545; }

/* Quick action icons — vertical stack, slides in on hover */
.sf-product-quick {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.sf-product-card:hover .sf-product-quick,
.sf-product-card:focus-within .sf-product-quick {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sf-quick-form { margin: 0; line-height: 0; }

.sf-quick-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border: 0;
    background: #fff;
    color: #1a1a1a;
    border-radius: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sf-quick-btn i { font-size: 14px; line-height: 1; }

.sf-quick-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.04);
}

.sf-quick-btn.is-active {
    background: #1a1a1a;
    color: #fff;
}

.sf-quick-btn:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

.sf-quick-tip {
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 0;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.sf-quick-btn:hover .sf-quick-tip { opacity: 1; }

/* Stagger entrance for the icons */
.sf-product-card:hover .sf-product-quick > *:nth-child(1),
.sf-product-card:focus-within .sf-product-quick > *:nth-child(1) { transition-delay: 0.02s; }
.sf-product-card:hover .sf-product-quick > *:nth-child(2),
.sf-product-card:focus-within .sf-product-quick > *:nth-child(2) { transition-delay: 0.06s; }
.sf-product-card:hover .sf-product-quick > *:nth-child(3),
.sf-product-card:focus-within .sf-product-quick > *:nth-child(3) { transition-delay: 0.10s; }

.sf-product-quick > * {
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Meta */
.sf-product-meta {
    margin-top: 16px;
    display: grid;
    gap: 4px;
}

.sf-product-name {
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a1a;
    text-decoration: none;
}

.sf-product-name:hover { color: #555; }

.sf-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sf-price-main {
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

.sf-price-compare {
    font-size: 12px;
    color: #b0b0b0;
    text-decoration: line-through;
}

/* Mobile: always show quick actions (no hover on touch) */
@media (hover: none), (max-width: 640px) {
    .sf-product-quick {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .sf-quick-btn { width: 34px; height: 34px; }
    .sf-quick-btn i { font-size: 12px; }
    .sf-quick-tip { display: none; }
    .sf-badge { min-width: 38px; height: 38px; font-size: 9px; }
    .sf-product-name { font-size: 13px; }
    .sf-product-price { font-size: 12px; }
}

/* ============================================================
   Quick View Modal
   ============================================================ */
.sf-qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sf-qv-overlay.is-open { display: flex; opacity: 1; }

.sf-qv-modal {
    background: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.sf-qv-overlay.is-open .sf-qv-modal { transform: translateY(0) scale(1); }

.sf-qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.sf-qv-close:hover { background: #1a1a1a; color: #fff; }

.sf-qv-image {
    background: #f4f1ec;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.sf-qv-image img { width: 100%; height: 100%; object-fit: cover; }

.sf-qv-body {
    padding: 36px 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-qv-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.sf-qv-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.sf-qv-price { font-size: 18px; color: #555; font-weight: 400; }
.sf-qv-compare { font-size: 14px; color: #b0b0b0; text-decoration: line-through; }

.sf-qv-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #666;
}

.sf-qv-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 12px;
}

.sf-qv-btn {
    flex: 1;
    height: 46px;
    border-radius: 0;
    border: 0;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sf-qv-btn-add { background: #1a1a1a; color: #fff; }
.sf-qv-btn-add:hover { background: #333; }

.sf-qv-btn-view { background: transparent; color: #1a1a1a; border: 1px solid #1a1a1a; }
.sf-qv-btn-view:hover { background: #1a1a1a; color: #fff; }

@media (max-width: 720px) {
    .sf-qv-modal { grid-template-columns: 1fr; max-height: 95vh; }
    .sf-qv-image { aspect-ratio: 4 / 3; }
    .sf-qv-body { padding: 24px 20px; }
    .sf-qv-name { font-size: 18px; }
}

.sf-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

.sf-filter-grid .sf-btn {
    width: 100%;
}

.sf-input,
.sf-select,
.sf-textarea,
.storefront-body .form-control,
.storefront-body .form-select {
    width: 100%;
    border: 1px solid var(--sf-line);
    background: #fff;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-radius: 0;
    box-shadow: none;
}

.sf-textarea {
    min-height: 132px;
    resize: vertical;
}

.storefront-body .form-control:focus,
.storefront-body .form-select:focus {
    border-color: #000;
    box-shadow: none;
}

.sf-breadcrumb {
    margin: 0;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #595959;
}

.sf-breadcrumb .sep {
    margin: 0 6px;
}

.sf-pagination {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.pagination {
    gap: 6px;
    margin: 0;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    min-width: 40px;
    text-align: center;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background: #fafafa;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.pagination .active .page-link {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.pagination .disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #e8e8e8;
}

.sf-empty {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    padding: 36px;
    text-align: center;
}

.sf-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.sf-detail-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-gallery-main {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.sf-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-thumb-row {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-thumb {
    width: 66px;
    height: 78px;
    border: 1px solid var(--sf-line);
    padding: 0;
    background: #fff;
    opacity: 0.7;
}

.sf-thumb.is-active {
    border-color: #000;
    opacity: 1;
}

.sf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-detail-title {
    margin: 8px 0 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(44px, 6.2vw, 92px);
    line-height: 0.86;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sf-detail-price {
    margin: 12px 0 14px;
    font-size: 30px;
    font-weight: 700;
}

.sf-option-group {
    margin: 14px 0;
}

.sf-option-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.sf-option-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-option-btn {
    min-width: 42px;
    height: 36px;
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 0 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.sf-option-btn.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sf-shipping-options {
    display: grid;
    gap: 8px;
}

.sf-shipping-option {
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "radio title cost"
        "radio meta cost";
    column-gap: 10px;
    row-gap: 2px;
    align-items: center;
    cursor: pointer;
}

.sf-shipping-option input {
    grid-area: radio;
    margin: 0;
}

.sf-shipping-main {
    grid-area: title;
    font-size: 12px;
    font-weight: 600;
}

.sf-shipping-meta {
    grid-area: meta;
    font-size: 11px;
    color: #666;
}

.sf-shipping-cost {
    grid-area: cost;
    font-size: 12px;
}

.sf-shipping-option input:checked ~ .sf-shipping-main,
.sf-shipping-option input:checked ~ .sf-shipping-cost {
    color: #000;
}

.sf-swatch {
    width: 28px;
    height: 28px;
    border-radius: 0;
    border: 1px solid #111;
}

.sf-qty {
    display: grid;
    grid-template-columns: 42px 52px 42px;
    height: 40px;
    border: 1px solid var(--sf-line);
    width: max-content;
}

.sf-qty button {
    border: 0;
    background: #fff;
    font-size: 18px;
}

.sf-qty input {
    border: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.sf-qty input::-webkit-outer-spin-button,
.sf-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sf-qty input[type=number] {
    -moz-appearance: textfield;
}

.sf-info-line {
    margin-top: 14px;
    color: #555;
    font-size: 12px;
    border-top: 1px solid var(--sf-line);
    padding-top: 12px;
}

.sf-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
}

.sf-cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 12px;
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.sf-cart-image {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.sf-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-cart-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.sf-cart-meta {
    margin: 4px 0 0;
    font-size: 11px;
    color: #666;
}

.sf-order-box {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    padding: 20px;
    position: sticky;
    top: 96px;
}

.sf-order-title {
    margin: 0 0 14px;
    font-family: var(--sf-font-heading);
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.sf-order-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    padding: 5px 0;
}

.sf-auth-wrap {
    width: min(520px, calc(100% - 56px));
    margin: 54px auto;
}

.sf-auth-card {
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 30px;
}

.sf-account-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
}

.sf-account-sidebar {
    border: 1px solid var(--sf-line);
    background: #fff;
}

.sf-account-link {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid var(--sf-line);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.sf-account-link.is-active {
    background: #000;
    color: #fff;
}

.sf-account-content {
    border: 1px solid var(--sf-line);
    background: #fff;
    padding: 24px;
}

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

.sf-stat {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    padding: 16px;
}

.sf-stat strong {
    display: block;
    font-size: 22px;
}

.sf-stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.sf-tracking-panel {
    border: 1px solid var(--sf-line);
    background: var(--sf-soft);
    padding: 16px;
}

.sf-tracking-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.sf-tracking-pill {
    border: 1px solid #000;
    padding: 4px 10px;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
    background: #fff;
}

.sf-tracking-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #444;
}

.sf-tracking-timeline {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.sf-tracking-step {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.sf-tracking-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: 1px solid #999;
    margin-top: 2px;
    background: #fff;
}

.sf-tracking-step h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.sf-tracking-step p {
    margin: 2px 0 0;
    font-size: 11px;
    color: #666;
}

.sf-tracking-step.is-complete .sf-tracking-dot {
    border-color: #000;
    background: #000;
}

.sf-tracking-step.is-current .sf-tracking-dot {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.sf-table-wrap {
    overflow-x: auto;
}

.sf-table {
    width: 100%;
    border-collapse: collapse;
}

.sf-table th,
.sf-table td {
    border-bottom: 1px solid var(--sf-line);
    padding: 10px 8px;
    font-size: 12px;
    text-align: left;
}

.sf-table tbody tr:hover {
    background: #fafafa;
}

.sf-table th {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.sf-badge {
    border: 1px solid #000;
    padding: 2px 7px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.sf-badge.dark {
    background: #000;
    color: #fff;
}

.sf-newsletter-band {
    border-top: 1px solid var(--sf-line);
    border-bottom: 1px solid var(--sf-line);
    padding: 36px 0;
    text-align: center;
}

.sf-newsletter-band h2 {
    margin: 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(34px, 5vw, 72px);
    line-height: 0.9;
    text-transform: uppercase;
}

.sf-newsletter-band p {
    margin: 10px auto 0;
    max-width: 560px;
    color: #555;
    font-size: 13px;
}

.sf-newsletter-form {
    margin: 14px auto 0;
    width: min(400px, 100%);
    border: 1px solid var(--sf-line);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
}

.sf-newsletter-form input {
    border: 0;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}

.sf-newsletter-form button {
    border: 0;
    background: #fff;
    font-size: 18px;
}

/* Footer */
.th-footer {
    margin-top: 26px;
    background: linear-gradient(180deg, #151525 0%, #11111b 100%);
    color: #f3f3f3;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(36px, 5vw, 56px) 0 22px;
}

.th-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(120px, 1fr));
    gap: clamp(20px, 2.5vw, 40px);
}

.th-footer-top section {
    min-width: 0;
}

.th-footer-newsletter {
    padding-right: 12px;
}

.th-newsletter-title {
    margin: 0;
    font-family: var(--sf-font-heading);
    text-transform: uppercase;
    font-size: clamp(40px, 6.5vw, 68px);
    line-height: 0.82;
    letter-spacing: 0.7px;
}

.th-newsletter-copy {
    margin-top: 8px;
    max-width: 44ch;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.65;
}

.th-newsletter-form {
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: min(420px, 100%);
    padding-bottom: 8px;
}

.th-newsletter-form input,
.th-newsletter-form button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0;
    outline: none;
}

.th-newsletter-form input {
    min-width: 0;
}

.th-newsletter-form button {
    cursor: pointer;
    justify-self: end;
    transition: color 0.2s ease;
}

.th-newsletter-form button:hover {
    color: var(--sf-accent);
}

.th-footer-col-title {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.8px;
}

.th-footer-links {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.th-footer-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    opacity: 0.88;
    line-height: 1.45;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.th-footer-links a:hover {
    opacity: 1;
}

.th-footer-brand {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.th-footer-brand-left {
    justify-content: flex-start;
    text-align: left;
}

.th-footer-brand-center {
    justify-content: center;
    text-align: center;
}

.th-footer-brand-right {
    justify-content: flex-end;
    text-align: right;
}

.th-footer-brand-center .th-mark-large,
.th-footer-brand-right .th-mark-large {
    margin-left: 0;
}

.th-wordmark {
    margin: 0;
    font-family: var(--sf-font-heading);
    text-transform: uppercase;
    font-size: clamp(66px, 16vw, 240px);
    line-height: 0.78;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
}

.th-footer-tagline {
    margin: 8px 0 0;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    max-width: 58ch;
    line-height: 1.6;
}

.th-mark-large {
    flex: 0 0 auto;
    width: clamp(88px, 10vw, 150px);
    height: clamp(88px, 10vw, 150px);
    display: inline-flex;
}

.th-mark-large svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
}

.th-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.th-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.th-social-icon:hover,
.th-social-icon:focus-visible {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.th-footer-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.th-footer-social + .th-footer-bottom {
    border-top: 0;
    margin-top: 14px;
    padding-top: 0;
}

.th-footer-legal {
    margin: 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.th-footer-meta-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.th-footer-meta-links a {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.82;
}

.th-footer-meta-links a:hover {
    opacity: 1;
}

@media (max-width: 1099px) {
    .sf-shell,
    .sf-page,
    .sf-auth-wrap {
        width: min(1240px, calc(100% - 34px));
    }

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

    .sf-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sf-hero,
    .sf-detail,
    .sf-cart-layout,
    .sf-account-layout {
        grid-template-columns: 1fr;
    }

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

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

    .th-footer-newsletter {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .sf-page-shop .sf-hero-center {
        min-height: 24vh;
        padding: 20px 0 16px;
    }
}

@media (max-width: 767px) {
    .sf-shell,
    .sf-page,
    .sf-auth-wrap {
        width: calc(100% - 20px);
    }

    .sf-header-row {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .sf-mobile-toggle {
        display: inline-flex;
    }

    .sf-nav {
        display: none;
    }

    .sf-logo {
        justify-self: center;
        font-size: 34px;
    }

    .sf-grid-4,
    .sf-grid-3,
    .sf-grid-2,
    .sf-filter-grid,
    .sf-stats {
        grid-template-columns: 1fr;
    }

    .sf-product-actions {
        gap: 6px;
    }

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

    .sf-metric-item:nth-child(2n) {
        border-right: 0;
    }

    .sf-category-grid {
        grid-template-columns: 1fr;
    }

    .sf-page {
        padding: 38px 0;
    }

    .sf-page-shop .sf-hero-center {
        min-height: 22vh;
        padding: 18px 0 14px;
    }

    .sf-filter-bar {
        margin: 20px 0 0;
    }

    .sf-filter-trigger {
        padding: 9px 14px;
        font-size: 12px;
    }

    .sf-filter-panel {
        padding: 16px;
    }

    .sf-pagination {
        margin-top: 24px;
        padding-top: 18px;
    }

    .pagination .page-link {
        font-size: 11px;
        padding: 7px 11px;
        min-width: 36px;
    }

    .sf-home-hero-full {
        min-height: 62vh;
    }

    .sf-home-hero-content {
        padding: 52px 0;
    }

    .sf-home-hero-title {
        font-size: clamp(44px, 13.5vw, 70px);
    }

    .sf-home-hero-sub {
        font-size: 13px;
        max-width: 92%;
    }

    .sf-mobile-nav {
        display: none;
    }

    .sf-mobile-nav.is-open {
        display: block;
    }

    .sf-cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .th-footer {
        margin-top: 12px;
        padding: 30px 0 18px;
    }

    .th-footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .th-footer-newsletter {
        grid-column: auto;
    }

    .th-newsletter-title {
        font-size: clamp(36px, 13vw, 56px);
    }

    .th-newsletter-copy {
        max-width: none;
    }

    .th-newsletter-form {
        max-width: none;
    }

    .th-newsletter-form input,
    .th-newsletter-form button {
        font-size: 12px;
    }

    .th-footer-brand {
        margin-top: 20px;
        padding-top: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .th-wordmark {
        font-size: clamp(52px, 17vw, 90px);
        line-height: 0.82;
    }

    .th-mark-large {
        width: 82px;
        height: 82px;
    }

    .th-footer-bottom {
        margin-top: 12px;
        padding-top: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .sf-product-actions {
        grid-template-columns: 1fr;
    }

    .sf-mini-btn {
        height: 42px;
    }

    .th-newsletter-title {
        font-size: clamp(32px, 14vw, 46px);
    }

    .th-footer-col-title {
        font-size: 12px;
    }

    .th-footer-links a {
        font-size: 12px;
    }

    .th-footer-meta-links {
        gap: 10px;
    }
}

/* ─────────────────────────────────────────────────────────────────────
   Premium Product Detail Page (PDP)
   Namespace: .pdp-*
   ───────────────────────────────────────────────────────────────────── */
.pdp {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 24px 56px;
}

.pdp-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--sf-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pdp-crumbs a {
    color: var(--sf-muted);
    transition: color 0.2s;
}
.pdp-crumbs a:hover { color: var(--sf-text); }
.pdp-crumb-current {
    color: var(--sf-text);
    font-weight: 600;
}

/* Layout grid */
.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

/* ─── Gallery ─────────────────────────────────── */
.pdp-gallery {
    position: sticky;
    top: 96px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}

.pdp-gallery-stage {
    position: relative;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: var(--sf-soft);
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.pdp-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
}
.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
}
.pdp-main-image.is-zooming img {
    transform: scale(1.6);
}
.pdp-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--sf-muted);
}

.pdp-badge {
    position: absolute;
    top: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pdp-badge-sale {
    left: 16px;
    background: var(--sf-text);
    color: var(--sf-white);
}
.pdp-badge-new {
    right: 16px;
    background: var(--sf-white);
    color: var(--sf-text);
    border: 1px solid var(--sf-line);
}

.pdp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--sf-line);
    color: var(--sf-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
}
.pdp-arrow:hover { background: var(--sf-white); transform: translateY(-50%) scale(1.06); }
.pdp-arrow-prev { left: 12px; }
.pdp-arrow-next { right: 12px; }

.pdp-zoom-lens { display: none; }

.pdp-thumbs {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
}
.pdp-thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    background: var(--sf-soft);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
}
.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp-thumb:hover { transform: translateY(-1px); }
.pdp-thumb.is-active { border-color: var(--sf-text); }

/* ─── Info column ─────────────────────────────── */
.pdp-info-inner {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pdp-brand {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--sf-muted);
    font-weight: 600;
}

.pdp-title {
    margin: 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--sf-text);
}

.pdp-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sf-muted);
    width: fit-content;
}
.pdp-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5b301;
    font-size: 13px;
}
.pdp-stars-lg { font-size: 18px; }
.pdp-rating-value { color: var(--sf-text); font-weight: 600; }

.pdp-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    padding-top: 4px;
}
.pdp-price-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--sf-text);
    letter-spacing: -0.01em;
}
.pdp-price-compare {
    font-size: 18px;
    color: var(--sf-muted);
    text-decoration: line-through;
}
.pdp-price-save {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    padding: 4px 10px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
}

.pdp-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
}
.pdp-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
}
.pdp-stock-in .pdp-stock-dot { background: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18); }
.pdp-stock-low .pdp-stock-dot { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18); }
.pdp-stock-out .pdp-stock-dot { background: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18); }
.pdp-stock-preorder .pdp-stock-dot { background: #6366f1; box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18); }
.pdp-stock-in { color: #047857; }
.pdp-stock-low { color: #b45309; }
.pdp-stock-out { color: #b91c1c; }
.pdp-stock-preorder { color: #4338ca; }

.pdp-short-desc {
    margin: 0;
    color: var(--sf-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Form & options */
.pdp-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 8px;
    border-top: 1px solid var(--sf-line);
}
.pdp-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp-option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdp-option-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--sf-text);
}
.pdp-option-value {
    font-size: 13px;
    color: var(--sf-muted);
}
.pdp-size-guide {
    background: none;
    border: none;
    color: var(--sf-muted);
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}
.pdp-size-guide:hover { color: var(--sf-text); }

.pdp-color-row,
.pdp-size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-color {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 2px solid transparent;
    background: none;
    padding: 2px;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
}
.pdp-color-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 1px solid var(--sf-line);
}
.pdp-color:hover { transform: scale(1.06); }
.pdp-color.is-active { border-color: var(--sf-text); }

.pdp-size {
    min-width: 52px;
    height: 44px;
    padding: 0 14px;
    background: var(--sf-white);
    border: 1px solid var(--sf-line);
    border-radius: 0;
    color: var(--sf-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.pdp-size:hover { border-color: var(--sf-text); }
.pdp-size.is-active {
    background: var(--sf-text);
    color: var(--sf-white);
    border-color: var(--sf-text);
}

.pdp-action-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
}
.pdp-qty {
    display: inline-flex;
    align-items: center;
    height: 52px;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    overflow: hidden;
}
.pdp-qty button {
    width: 44px;
    height: 100%;
    border: none;
    background: var(--sf-white);
    cursor: pointer;
    font-size: 18px;
    color: var(--sf-text);
    transition: background 0.15s;
}
.pdp-qty button:hover { background: var(--sf-soft); }
.pdp-qty input {
    width: 56px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty input[type=number] { appearance: textfield; -moz-appearance: textfield; }

.pdp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.pdp-cta-primary {
    background: var(--sf-text);
    color: var(--sf-white);
}
.pdp-cta-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.pdp-cta-primary:disabled {
    background: #c4c4c4;
    cursor: not-allowed;
}
.pdp-cta-buy {
    background: var(--sf-white);
    color: var(--sf-text);
    border: 1.5px solid var(--sf-text);
}
.pdp-cta-buy:hover:not(:disabled) {
    background: var(--sf-text);
    color: var(--sf-white);
}

.pdp-secondary-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}
.pdp-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 22px;
    background: var(--sf-soft);
    border: none;
    border-radius: 0;
    color: var(--sf-text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.pdp-wishlist:hover { background: var(--sf-text); color: var(--sf-white); }
.pdp-wishlist.is-saved { background: var(--sf-text); color: var(--sf-white); }
.pdp-wishlist.is-saved i { color: #ef4444; }

/* Trust signals */
.pdp-trust {
    list-style: none;
    margin: 8px 0 0;
    padding: 18px;
    background: var(--sf-soft);
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-size: 13px;
}
.pdp-trust li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--sf-muted);
}
.pdp-trust li i {
    color: var(--sf-text);
    font-size: 16px;
    margin-top: 2px;
}
.pdp-trust strong { color: var(--sf-text); font-weight: 600; }

/* Accordion */
.pdp-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--sf-line);
    margin-top: 8px;
}
.pdp-acc {
    border-bottom: 1px solid var(--sf-line);
}
.pdp-acc summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sf-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s;
}
.pdp-acc[open] summary::after { content: '−'; }
.pdp-acc-body {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sf-muted);
}
.pdp-specs {
    margin: 0;
    display: grid;
    gap: 8px;
}
.pdp-specs > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}
.pdp-specs dt {
    font-weight: 600;
    color: var(--sf-text);
}
.pdp-specs dd { margin: 0; }

/* ─── Sections (highlights / fbt / reviews / related) ─── */
.pdp-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px;
}
.pdp-section-head {
    margin-bottom: 32px;
}
.pdp-section-head-center {
    text-align: center;
}
.pdp-eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sf-muted);
}
.pdp-section-title {
    margin: 0;
    font-family: var(--sf-font-heading);
    font-size: clamp(26px, 3.2vw, 38px);
    letter-spacing: 0.01em;
    color: var(--sf-text);
}

/* Highlights */
.pdp-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pdp-highlight {
    text-align: center;
    padding: 28px 20px;
    background: var(--sf-soft);
    border-radius: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pdp-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.pdp-highlight i {
    font-size: 28px;
    color: var(--sf-text);
    margin-bottom: 14px;
}
.pdp-highlight h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}
.pdp-highlight p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Frequently Bought Together */
.pdp-fbt {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.pdp-fbt-stack {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}
.pdp-fbt-card {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 220px;
    padding: 14px;
    background: var(--sf-white);
    border: 1px solid var(--sf-line);
    border-radius: 0;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
.pdp-fbt-card:hover { border-color: var(--sf-text); transform: translateY(-2px); }
.pdp-fbt-card img {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: 0;
    background: var(--sf-soft);
}
.pdp-fbt-current { border-color: var(--sf-text); }
.pdp-fbt-label {
    margin: 0 0 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sf-muted);
}
.pdp-fbt-name {
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}
.pdp-fbt-price {
    margin: 0;
    font-size: 14px;
    color: var(--sf-text);
    font-weight: 600;
}
.pdp-fbt-plus {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 300;
    color: var(--sf-muted);
}
.pdp-fbt-summary {
    padding: 24px;
    background: var(--sf-soft);
    border-radius: 0;
    text-align: center;
}
.pdp-fbt-total-label {
    margin: 0 0 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sf-muted);
}
.pdp-fbt-total {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.pdp-fbt-add {
    width: 100%;
}
.pdp-fbt-note {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--sf-muted);
}
.pdp-fbt-note i { color: #10b981; }

/* Reviews */
.pdp-reviews {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}
.pdp-reviews-summary {
    position: sticky;
    top: 96px;
    padding: 28px;
    background: var(--sf-soft);
    border-radius: 0;
}
.pdp-reviews-score {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--sf-line);
}
.pdp-reviews-avg {
    display: block;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.pdp-reviews-total {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--sf-muted);
}
.pdp-reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pdp-bar-row {
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}
.pdp-bar-label {
    color: var(--sf-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pdp-bar-label i { color: #f5b301; font-size: 11px; }
.pdp-bar {
    height: 6px;
    background: var(--sf-line);
    border-radius: 0;
    overflow: hidden;
}
.pdp-bar-fill {
    height: 100%;
    background: var(--sf-text);
    border-radius: 0;
    transition: width 0.4s ease;
}
.pdp-bar-count {
    text-align: right;
    color: var(--sf-muted);
}
.pdp-reviews-recommend {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--sf-line);
    text-align: center;
    font-size: 13px;
    color: var(--sf-muted);
}
.pdp-recommend-pct {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--sf-text);
    line-height: 1;
    margin-bottom: 4px;
}

.pdp-reviews-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sf-line);
}
.pdp-review-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.pdp-review-filter {
    padding: 8px 16px;
    background: var(--sf-soft);
    border: none;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--sf-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.pdp-review-filter:hover { color: var(--sf-text); }
.pdp-review-filter.is-active {
    background: var(--sf-text);
    color: var(--sf-white);
}
.pdp-review-write {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: none;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--sf-text);
    cursor: pointer;
    transition: all 0.2s;
}
.pdp-review-write:hover { background: var(--sf-text); color: var(--sf-white); border-color: var(--sf-text); }

.pdp-review {
    padding: 24px 0;
    border-bottom: 1px solid var(--sf-line);
}
.pdp-review:last-child { border-bottom: none; }
.pdp-review-head {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.pdp-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--sf-text);
    color: var(--sf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.pdp-review-name {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pdp-verified {
    color: #047857;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pdp-review-date {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--sf-muted);
}
.pdp-review-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}
.pdp-review-body {
    margin: 0;
    color: var(--sf-text);
    line-height: 1.6;
    font-size: 14px;
}
.pdp-review-photos {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pdp-review-photos img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.2s;
}
.pdp-review-photos img:hover { transform: scale(1.04); }
.pdp-reviews-empty {
    padding: 56px 24px;
    text-align: center;
    color: var(--sf-muted);
    background: var(--sf-soft);
    border-radius: 0;
}
.pdp-reviews-empty i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

/* Related products */
.pdp-related {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Sticky mobile CTA */
.pdp-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--sf-line);
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
.pdp-sticky-cta.is-visible { transform: translateY(0); }
.pdp-sticky-info { flex: 1; min-width: 0; }
.pdp-sticky-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pdp-sticky-price {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--sf-muted);
}
.pdp-sticky-cta .pdp-cta { height: 46px; padding: 0 22px; }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1099px) {
    .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
    .pdp-gallery { position: static; }
    .pdp-info-inner { position: static; }
    .pdp-reviews { grid-template-columns: 1fr; gap: 32px; }
    .pdp-reviews-summary { position: static; }
    .pdp-fbt { grid-template-columns: 1fr; }
    .pdp-highlights { grid-template-columns: repeat(2, 1fr); }
    .pdp-related { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .pdp { padding: 16px 16px 32px; }
    .pdp-section { padding: 40px 16px; }
    .pdp-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pdp-gallery-stage { grid-column: 1 / 2; aspect-ratio: 1 / 1; }
    .pdp-thumbs {
        grid-column: 1 / 2;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .pdp-thumb { width: 64px; height: 80px; }
    .pdp-arrow { display: none; }
    .pdp-main-image { cursor: default; }
    .pdp-main-image.is-zooming img { transform: none; }
    .pdp-trust { grid-template-columns: 1fr; }
    .pdp-action-row { grid-template-columns: 1fr; }
    .pdp-qty { width: 100%; justify-content: center; }
    .pdp-qty input { flex: 1; }
    .pdp-secondary-row { grid-template-columns: 1fr; }
    .pdp-related { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pdp-highlights { grid-template-columns: 1fr; }
    .pdp-specs > div { grid-template-columns: 110px 1fr; }
    .pdp-fbt-plus { display: none; }
    .pdp-fbt-card { flex: 1 1 100%; }

    /* Add bottom space so sticky CTA doesn't cover content */
    body.storefront-body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .pdp-title { font-size: 26px; }
    .pdp-price-main { font-size: 24px; }
    .pdp-reviews-avg { font-size: 44px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM CART & CHECKOUT STYLES
   Modern, conversion-focused design for cart and checkout pages
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   PREMIUM CART PAGE
   ───────────────────────────────────────────────────────────────────────── */

.premium-cart {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.premium-cart-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

/* Cart Main Section */
.premium-cart-main {
    min-width: 0;
}

.premium-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sf-line);
}

.premium-cart-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--sf-text);
}

.premium-cart-count {
    font-size: 14px;
    color: var(--sf-muted);
    margin: 0;
}

.premium-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Item Card */
.premium-cart-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 24px;
    background: var(--sf-soft);
    border: 1px solid var(--sf-line);
    border-radius: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-cart-card:hover {
    border-color: var(--sf-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.premium-cart-img {
    position: relative;
    width: 120px;
    height: 150px;
    background: #fff;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

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

.premium-cart-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.premium-cart-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.premium-cart-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--sf-text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.premium-cart-name:hover {
    color: var(--sf-muted);
}

.premium-cart-variant {
    font-size: 13px;
    color: var(--sf-muted);
    margin: 0;
}

.premium-cart-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--sf-text);
    margin: 0;
}

.premium-cart-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

/* Quantity Selector */
.premium-qty-selector {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.premium-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--sf-text);
    cursor: pointer;
    transition: background-color 0.2s;
}

.premium-qty-btn:hover:not(:disabled) {
    background: var(--sf-soft);
}

.premium-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.premium-qty-value {
    min-width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--sf-text);
    padding: 0 4px;
}

.premium-cart-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--sf-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.premium-cart-remove:hover {
    color: #dc2626;
}

.premium-cart-remove svg {
    flex-shrink: 0;
}

.premium-cart-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.premium-cart-subtotal-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--sf-text);
}

.premium-cart-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--sf-line);
}

.premium-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sf-text);
    text-decoration: none;
    transition: gap 0.2s;
}

.premium-continue-link:hover {
    gap: 6px;
}

/* Cart Summary Sidebar */
.premium-cart-summary {
    position: sticky;
    top: 24px;
}

.premium-summary-sticky {
    background: var(--sf-soft);
    border: 1px solid var(--sf-line);
    border-radius: 0;
    padding: 28px;
}

.premium-summary-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px;
    color: var(--sf-text);
}

/* Promo Code Section */
.premium-promo-section {
    margin-bottom: 24px;
}

.premium-promo-form {
    margin: 0;
}

.premium-promo-input-wrap {
    display: flex;
    gap: 8px;
}

.premium-promo-input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-promo-input:focus {
    outline: none;
    border-color: var(--sf-text);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.premium-promo-btn {
    height: 44px;
    padding: 0 20px;
    border: 1px solid var(--sf-text);
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--sf-text);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.premium-promo-btn:hover {
    background: var(--sf-text);
    color: #fff;
}

.premium-promo-applied {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 0;
    font-size: 13px;
    color: #166534;
}

.premium-promo-applied svg {
    flex-shrink: 0;
    stroke: #16a34a;
}

/* Summary Breakdown */
.premium-summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--sf-text);
}

.premium-summary-discount {
    color: #16a34a;
}

.premium-summary-muted {
    color: var(--sf-muted);
    font-size: 14px;
}

.premium-summary-divider {
    height: 1px;
    background: var(--sf-line);
    margin: 20px 0;
}

.premium-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--sf-text);
}

.premium-summary-total-value {
    font-size: 24px;
}

/* Checkout Button */
.premium-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    margin-top: 24px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: var(--sf-text);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.premium-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.premium-checkout-btn svg {
    flex-shrink: 0;
}

/* Trust Signals */
.premium-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sf-line);
}

.premium-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--sf-muted);
}

.premium-trust-item svg {
    flex-shrink: 0;
    stroke: var(--sf-muted);
}

/* Empty Cart State */
.premium-cart-empty {
    max-width: 480px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 24px;
}

.premium-empty-icon {
    margin-bottom: 24px;
    color: var(--sf-muted);
}

.premium-empty-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--sf-text);
}

.premium-empty-text {
    font-size: 15px;
    color: var(--sf-muted);
    line-height: 1.6;
    margin: 0 0 32px;
}

.premium-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border: none;
    border-radius: 0;
    background: var(--sf-text);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.premium-empty-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────
   PREMIUM CHECKOUT PAGE
   ───────────────────────────────────────────────────────────────────────── */

.premium-checkout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.premium-checkout-container {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

/* Checkout Main Section */
.premium-checkout-main {
    min-width: 0;
}

.premium-checkout-header {
    margin-bottom: 40px;
}

.premium-checkout-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--sf-text);
}

.premium-checkout-steps {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-step {
    font-size: 13px;
    font-weight: 500;
    color: var(--sf-muted);
    padding: 6px 14px;
    border-radius: 0;
    background: var(--sf-soft);
}

.premium-step.active {
    color: #fff;
    background: var(--sf-text);
}

.premium-step-divider {
    width: 24px;
    height: 1px;
    background: var(--sf-line);
}

/* Checkout Sections */
.premium-checkout-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--sf-line);
}

.premium-checkout-section:last-of-type {
    border-bottom: none;
}

.premium-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--sf-text);
}

.premium-section-hint {
    font-size: 14px;
    color: var(--sf-muted);
    margin: 0 0 20px;
}

.premium-link {
    color: var(--sf-text);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.premium-link:hover {
    opacity: 0.7;
}

/* Form Elements */
.premium-form-group {
    margin-bottom: 20px;
}

.premium-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.premium-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.premium-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--sf-text);
}

.premium-required {
    color: #dc2626;
}

.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--sf-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    outline: none;
    border-color: var(--sf-text);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.premium-textarea {
    resize: vertical;
    min-height: 80px;
}

.premium-error-text {
    font-size: 13px;
    color: #dc2626;
    margin-top: 8px;
}

/* Shipping Options */
.premium-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-radio-card {
    position: relative;
    display: block;
    padding: 16px;
    border: 2px solid var(--sf-line);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-radio-card:hover {
    border-color: var(--sf-text);
}

.premium-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.premium-radio-card input[type="radio"]:checked + .premium-radio-content {
    font-weight: 500;
}

.premium-radio-card input[type="radio"]:checked ~ * {
    border-color: var(--sf-text);
}

.premium-radio-card:has(input:checked) {
    border-color: var(--sf-text);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.premium-radio-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.premium-radio-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.premium-radio-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--sf-text);
}

.premium-radio-subtitle {
    font-size: 13px;
    color: var(--sf-muted);
}

.premium-radio-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--sf-text);
}

.premium-radio-free {
    color: #16a34a;
}

/* Payment Trust Badges */
.premium-payment-trust {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding: 16px;
    background: var(--sf-soft);
    border-radius: 0;
}

.premium-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sf-muted);
}

.premium-trust-badge svg {
    flex-shrink: 0;
    stroke: var(--sf-muted);
}

/* Submit Buttons */
.premium-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: var(--sf-text);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.premium-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-submit-btn svg {
    flex-shrink: 0;
}

.premium-submit-mobile {
    display: none;
    margin-top: 32px;
}

.premium-submit-desktop {
    margin-top: 24px;
}

/* Checkout Summary Sidebar */
.premium-checkout-summary {
    position: sticky;
    top: 24px;
}

.premium-order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.premium-order-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: start;
}

.premium-order-img {
    position: relative;
    width: 64px;
    height: 80px;
    background: #fff;
    border: 1px solid var(--sf-line);
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.premium-order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-order-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.premium-order-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    background: var(--sf-text);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 0;
}

.premium-order-details {
    min-width: 0;
}

.premium-order-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--sf-text);
    margin: 0 0 4px;
    line-height: 1.4;
}

.premium-order-variant {
    font-size: 12px;
    color: var(--sf-muted);
    margin: 0;
}

.premium-order-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--sf-text);
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .premium-cart-container,
    .premium-checkout-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-cart-summary,
    .premium-checkout-summary {
        position: static;
    }

    .premium-submit-mobile {
        display: flex;
    }

    .premium-submit-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .premium-cart,
    .premium-checkout {
        padding: 24px 16px 60px;
    }

    .premium-cart-title,
    .premium-checkout-title {
        font-size: 26px;
    }

    .premium-cart-card {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 16px;
    }

    .premium-cart-img {
        width: 100px;
        height: 125px;
    }

    .premium-cart-subtotal {
        grid-column: 1 / -1;
        align-items: flex-start;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--sf-line);
    }

    .premium-form-row,
    .premium-form-row-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-checkout-steps {
        flex-wrap: wrap;
    }

    .premium-payment-trust {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .premium-cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .premium-cart-card {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .premium-cart-img {
        width: 80px;
        height: 100px;
    }

    .premium-cart-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .premium-summary-sticky {
        padding: 20px;
    }

    .premium-summary-title {
        font-size: 18px;
    }

    .premium-summary-total-value {
        font-size: 20px;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   ELITE CHECKOUT & ACCOUNT SYSTEM
   Premium, high-converting, native app-inspired design
   Zero border-radius - Sharp, modern, sophisticated aesthetic
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   ELITE CHECKOUT
   ───────────────────────────────────────────────────────────────────────── */

.elite-checkout {
    min-height: 100vh;
    background: #fafafa;
    padding: 0 0 80px;
}

/* Progress Bar */
.elite-progress-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.elite-progress-track {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 24px;
    height: 3px;
    background: #e5e5e5;
    position: relative;
}

.elite-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #000;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elite-progress-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elite-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elite-step-dot {
    width: 10px;
    height: 10px;
    background: #d4d4d4;
    transition: all 0.3s;
}

.elite-progress-step.active .elite-step-dot {
    background: #000;
    width: 12px;
    height: 12px;
}

.elite-step-label {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    transition: color 0.3s;
}

.elite-progress-step.active .elite-step-label {
    color: #000;
    font-weight: 600;
}

/* Checkout Grid */
.elite-checkout-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

/* Main Form */
.elite-checkout-main {
    min-width: 0;
}

.elite-express-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.elite-express-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.elite-express-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-express-subtitle {
    font-size: 13px;
    color: #737373;
}

.elite-express-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.elite-express-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form Sections */
.elite-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 28px;
    margin-bottom: 20px;
}

.elite-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.elite-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.elite-section-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #000;
    font-size: 13px;
    font-weight: 700;
}

/* User Badge */
.elite-user-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.elite-user-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.elite-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.elite-user-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-user-email {
    font-size: 13px;
    color: #737373;
}

/* Form Fields */
.elite-field-group {
    margin-bottom: 20px;
}

.elite-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.elite-field-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.elite-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.elite-input,
.elite-select,
.elite-textarea {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d4d4d4;
    background: #fff;
    font-size: 15px;
    font-family: inherit;
    color: #000;
    transition: all 0.2s;
}

.elite-input:focus,
.elite-select:focus,
.elite-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.elite-input::placeholder {
    color: #a3a3a3;
}

.elite-textarea {
    height: auto;
    padding: 14px;
    resize: vertical;
    min-height: 100px;
}

.elite-field-hint {
    display: block;
    font-size: 12px;
    color: #737373;
    margin-top: 6px;
}

.elite-error {
    font-size: 13px;
    color: #dc2626;
    margin-top: 8px;
}

/* Shipping Options */
.elite-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elite-radio-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 2px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.elite-radio-option:hover {
    border-color: #000;
}

.elite-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.elite-radio-option:has(input:checked) {
    border-color: #000;
    background: #fafafa;
}

.elite-radio-check {
    width: 20px;
    height: 20px;
    border: 2px solid #d4d4d4;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.elite-radio-option:has(input:checked) .elite-radio-check {
    border-color: #000;
    background: #000;
}

.elite-radio-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: #fff;
    transition: transform 0.2s;
}

.elite-radio-option:has(input:checked) .elite-radio-check::after {
    transform: translate(-50%, -50%) scale(1);
}

.elite-radio-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.elite-radio-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elite-radio-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-radio-subtitle {
    font-size: 13px;
    color: #737373;
}

.elite-radio-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Security Badges */
.elite-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    padding: 18px;
    background: #fafafa;
}

.elite-security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #525252;
}

.elite-security-badge svg {
    flex-shrink: 0;
    stroke: #525252;
}

/* Optional Section */
.elite-section-optional {
    background: transparent;
    border: none;
    padding: 0;
}

.elite-details {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 0;
}

.elite-details-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    list-style: none;
}

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

.elite-details-summary svg {
    transition: transform 0.3s;
}

.elite-details[open] .elite-details-summary svg {
    transform: rotate(180deg);
}

.elite-details-content {
    padding: 0 24px 24px;
}

/* Submit Buttons */
.elite-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.elite-submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.elite-submit-btn svg {
    flex-shrink: 0;
}

.elite-submit-mobile {
    display: none;
    margin-top: 24px;
}

.elite-submit-desktop {
    margin-top: 24px;
}

/* Sidebar */
.elite-checkout-sidebar {
    position: sticky;
    top: 100px;
}

.elite-sidebar-sticky {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 28px;
}

.elite-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px;
}

/* Order Products */
.elite-order-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.elite-product-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: start;
}

.elite-product-image {
    position: relative;
    width: 64px;
    height: 80px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

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

.elite-product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.elite-product-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.elite-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.elite-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.elite-product-variant {
    font-size: 12px;
    color: #737373;
}

.elite-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* Divider */
.elite-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 24px 0;
}

/* Totals */
.elite-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elite-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #525252;
}

.elite-total-discount {
    color: #16a34a;
}

.elite-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.elite-grand-total-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.elite-currency {
    font-size: 13px;
    font-weight: 500;
    color: #737373;
}

.elite-amount {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Trust Footer */
.elite-trust-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.elite-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #737373;
}

.elite-trust-item svg {
    flex-shrink: 0;
    stroke: #737373;
}

/* ─────────────────────────────────────────────────────────────────────────
   ELITE ACCOUNT DASHBOARD
   ───────────────────────────────────────────────────────────────────────── */

.elite-account {
    min-height: 100vh;
    background: #fafafa;
}

/* Mobile Header */
.elite-account-mobile-header {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 40;
}

.elite-mobile-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.elite-mobile-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.elite-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.elite-mobile-greeting {
    font-size: 11px;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-mobile-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-mobile-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Account Grid */
.elite-account-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

/* Sidebar */
.elite-account-sidebar {
    background: #fff;
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.elite-sidebar-header {
    padding: 32px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.elite-user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.elite-user-avatar-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.elite-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elite-user-name-large {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.elite-user-email-small {
    font-size: 13px;
    color: #737373;
}

/* Navigation */
.elite-nav {
    flex: 1;
    padding: 20px 0;
}

.elite-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #525252;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.elite-nav-link:hover {
    background: #fafafa;
    color: #000;
}

.elite-nav-link.active {
    background: #fafafa;
    color: #000;
    font-weight: 600;
}

.elite-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #000;
}

.elite-nav-link svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.elite-nav-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

/* Sidebar Footer */
.elite-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
}

.elite-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 600;
    color: #525252;
    cursor: pointer;
    transition: all 0.2s;
}

.elite-logout-btn:hover {
    background: #fafafa;
    border-color: #000;
    color: #000;
}

.elite-logout-btn svg {
    flex-shrink: 0;
}

/* Main Content */
.elite-account-main {
    padding: 40px;
}

/* Welcome Section */
.elite-welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
}

.elite-welcome-content {
    flex: 1;
}

.elite-welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.elite-welcome-subtitle {
    font-size: 15px;
    color: #d4d4d4;
    margin: 0;
}

.elite-loyalty-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.elite-loyalty-badge svg {
    flex-shrink: 0;
    stroke: #fff;
}

.elite-loyalty-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.elite-loyalty-points {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.elite-loyalty-label {
    font-size: 12px;
    color: #d4d4d4;
}

/* Stats Grid */
.elite-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.elite-stat-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.elite-stat-card:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.elite-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.elite-stat-icon-orders {
    background: #eff6ff;
    color: #2563eb;
}

.elite-stat-icon-completed {
    background: #f0fdf4;
    color: #16a34a;
}

.elite-stat-icon-wishlist {
    background: #fef2f2;
    color: #dc2626;
}

.elite-stat-icon-points {
    background: #fef3c7;
    color: #f59e0b;
}

.elite-stat-icon svg {
    stroke: currentColor;
}

.elite-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elite-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.elite-stat-label {
    font-size: 13px;
    color: #737373;
}

/* Quick Actions */
.elite-quick-actions {
    margin-bottom: 40px;
}

.elite-section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px;
}

.elite-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.elite-action-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.elite-action-card:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.elite-action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    flex-shrink: 0;
}

.elite-action-icon svg {
    stroke: #000;
}

.elite-action-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.elite-action-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-action-subtitle {
    font-size: 13px;
    color: #737373;
}

.elite-action-arrow {
    flex-shrink: 0;
    stroke: #737373;
    transition: transform 0.2s;
}

.elite-action-card:hover .elite-action-arrow {
    transform: translateX(4px);
}

/* Recent Orders */
.elite-recent-orders {
    margin-bottom: 40px;
}

.elite-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.elite-view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: gap 0.2s;
}

.elite-view-all:hover {
    gap: 10px;
}

.elite-view-all svg {
    flex-shrink: 0;
}

.elite-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elite-order-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.elite-order-card:hover {
    border-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.elite-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.elite-order-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.elite-order-number svg {
    flex-shrink: 0;
    stroke: #000;
}

.elite-order-status {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-order-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.elite-order-status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.elite-order-status-completed {
    background: #d1fae5;
    color: #065f46;
}

.elite-order-status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.elite-order-details {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #737373;
}

.elite-order-separator {
    color: #d4d4d4;
}

/* Notifications Section */
.elite-notifications-section {
    margin-bottom: 40px;
}

.elite-notification-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 24px;
    display: flex;
    gap: 20px;
}

.elite-notification-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    flex-shrink: 0;
}

.elite-notification-icon svg {
    stroke: #000;
}

.elite-notification-content {
    flex: 1;
}

.elite-notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 6px;
}

.elite-notification-text {
    font-size: 14px;
    color: #737373;
    margin: 0 0 16px;
}

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

.elite-notification-btn {
    height: 40px;
    padding: 0 20px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.elite-notification-btn:hover {
    background: #1a1a1a;
}

.elite-notification-btn-secondary {
    height: 40px;
    padding: 0 20px;
    background: transparent;
    color: #000;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.elite-notification-btn-secondary:hover {
    border-color: #000;
}

/* Mobile Overlay */
.elite-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 39;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.elite-mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    /* Checkout */
    .elite-checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elite-checkout-sidebar {
        position: static;
    }

    .elite-submit-mobile {
        display: flex;
    }

    .elite-submit-desktop {
        display: none;
    }

    /* Account */
    .elite-account-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .elite-account-grid {
        grid-template-columns: 1fr;
    }

    .elite-account-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 40;
    }

    .elite-account-sidebar.active {
        transform: translateX(0);
    }

    .elite-mobile-overlay {
        display: block;
    }

    .elite-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .elite-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Checkout */
    .elite-checkout {
        padding-bottom: 60px;
    }

    .elite-progress-bar {
        padding: 16px 0;
    }

    .elite-progress-steps {
        padding: 0 16px;
    }

    .elite-step-label {
        font-size: 11px;
    }

    .elite-checkout-grid {
        padding: 24px 16px;
        gap: 24px;
    }

    .elite-section {
        padding: 20px;
    }

    .elite-field-row,
    .elite-field-row-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .elite-security-badges {
        flex-direction: column;
        gap: 12px;
    }

    /* Account */
    .elite-account-main {
        padding: 24px 16px;
    }

    .elite-welcome-section {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .elite-welcome-title {
        font-size: 24px;
    }

    .elite-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .elite-stat-card {
        padding: 20px;
    }

    .elite-order-details {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .elite-progress-step {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .elite-express-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .elite-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .elite-radio-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .elite-welcome-title {
        font-size: 20px;
    }

    .elite-loyalty-badge {
        width: 100%;
        justify-content: center;
    }
}
