:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-muted: #f2f2f4;
    --text-primary: #0a0a0a;
    --text-secondary: #6e6e73;
    --border: #d2d2d7;
    --accent: #111111;
    --shadow: 0 30px 60px rgba(3, 7, 18, 0.08);
    --radius-large: 32px;
    --radius-medium: 22px;
    --radius-small: 12px;
    --font-body: 'Manrope', 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --site-header-height: clamp(72px, 12vw, 120px);
}

@font-face {
    font-family: 'IntegralCF';
    src: url('/fonts/Fontspring-DEMO-integralcf-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.cart-open {
    overflow: hidden;
}

.cart-toast {
    position: fixed;
    top: 20px;
    right: 24px;
    transform: translateY(-12px);
    border-radius: 999px;
    background: rgba(6, 8, 12, 0.92);
    color: #f5f5f7;
    font-size: 11px;
    letter-spacing: 0.1ем;
    text-transform: uppercase;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 4000;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.cart-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(18px, 4vw, 28px) clamp(20px, 5vw, 64px);
    background-color: #050505;
    color: #f5f5f7;
    min-height: var(--site-header-height);
}

.site-header .brand {
    position: relative;
    display: flex;
    align-items: center;
    height: clamp(36px, 6vw, 52px);
    width: clamp(150px, 18vw, 240px);
    overflow: visible;
}

.site-header .brand img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: clamp(82px, 14vw, 140px);
    display: block;
    pointer-events: none;
}

.header-actions {
    display: flex;
    gap: clamp(12px, 3vw, 28px);
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-actions a {
    color: inherit;
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.header-actions a:hover {
    opacity: 1;
}

.header-actions .cart-toggle {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #050505;
    background-color: #f5f5f7;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.cart-count {
    margin-left: 8px;
}

@media (max-width: 680px) {
    .site-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 14px 14px;
        text-align: center;
    }

    .site-header .brand {
        order: 1;
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .site-header .brand img {
        position: static;
        transform: none;
        height: clamp(42px, 14vw, 60px);
    }

    .header-actions {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        letter-spacing: 0.1em;
        flex-wrap: nowrap;
        width: 100%;
    }

    .header-actions a,
    .header-actions .cart-toggle {
        padding: 6px 10px;
        border-radius: 999px;
        border: none;
        background: none;
        opacity: 0.72;
        white-space: nowrap;
    }

    .header-actions .cart-toggle {
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.32);
        color: #050505;
        background-color: #f5f5f7;
        opacity: 1;
    }

    .header-actions .cart-count {
        margin-left: 6px;
    }
}

.hero {
    margin: clamp(32px, 6vw, 96px) clamp(20px, 5vw, 64px);
}

.intro {
    background-color: #050505;
    color: #f5f5f7;
    padding: clamp(40px, 10vw, 96px) clamp(24px, 6vw, 72px) clamp(40px, 8vw, 80px);
    text-align: center;
}

.intro-inner {
    width: min(480px, 90vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.8vw, 24px);
    text-align: center;
}

.intro-logo {
    width: clamp(200px, 32vw, 360px);
    height: auto;
    filter: brightness(1.2);
    margin-left: -20px;
}

.intro-name {
    margin: clamp(8px, 1.4vw, 16px) 0 0;
    font-size: clamp(62px, 9vw, 120px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'IntegralCF', sans-serif;
    font-weight: 800;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
    display: block;
    text-align: center;
    margin-inline: auto;
    line-height: 1;
}

.intro-tagline {
    margin: clamp(4px, 1vw, 10px) 0 0;
    font-size: clamp(16px, 2.4vw, 20px);
    color: rgba(245, 245, 247, 0.76);
    letter-spacing: 0.12em;
    max-width: 48ch;
    text-align: center;
    margin-left: -25px;
}

.intro-gradient {
    height: clamp(180px, 24vw, 280px);
    margin-top: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 0%,
        rgba(5, 5, 5, 0.95) 15%,
        rgba(5, 5, 5, 0.82) 38%,
        rgba(5, 5, 5, 0.6) 60%,
        rgba(5, 5, 5, 0.32) 82%,
        rgba(245, 245, 247, 0) 100%
    );
}

.btn-primary,
.btn-ghost {
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text-primary);
    background-color: transparent;
}

.hero-media {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    background-color: var(--surface-muted);
}

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

.collection {
    margin: clamp(32px, 6vw, 96px) clamp(20px, 5vw, 64px);
    display: grid;
    gap: clamp(32px, 5vw, 56px);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.collection-header h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: -0.02em;
}

.collection-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 40ch;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: clamp(18px, 4vw, 24px);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background-color: var(--surface);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 70px rgba(3, 7, 18, 0.12);
}

.product-info {
    flex: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
}

.product-info-compact {
    gap: 16px;
}

.product-card-summary {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2.5vw, 20px);
    min-height: 52px;
    width: 100%;
    flex-wrap: wrap;
}

.product-card-footer .product-price {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
    border-radius: clamp(10px, 2vw, 14px);
    background: #0f0f10;
    color: #f5f5f7;
    font-size: clamp(10px, 1.8vw, 12px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-width: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-card-cta:hover {
    background: #1a1b21;
}

.product-media {
    display: block;
    border-radius: var(--radius-small);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
}

.product-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.media-toggle {
    position: absolute;
    top: 50%;
    right: clamp(8px, 2vw, 16px);
    transform: translateY(-50%);
    width: clamp(32px, 6vw, 44px);
    height: clamp(32px, 6vw, 44px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(5, 5, 5, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2.5vw, 18px);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    backdrop-filter: blur(6px);
    opacity: 0.85;
    z-index: 10;
    pointer-events: auto;
}

.media-toggle:hover {
    background-color: rgba(5, 5, 5, 0.7);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

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

.product-info .product-name {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-info-compact {
    gap: 14px;
}

.product-card-summary {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-price {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 14px;
}

.add-to-cart {
    padding: 12px 20px;
    border-radius: 999px;
    background-color: var(--surface-muted);
    border: 1px solid var(--border);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.add-to-cart:hover {
    background-color: #e5e5ea;
    border-color: #bfbfc4;
}

.site-footer {
    margin-top: clamp(64px, 8vw, 120px);
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
    background-color: #050505;
    color: #f5f5f7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 32px);
    align-items: start;
}

@media (max-width: 768px) {
    .site-footer {
        grid-template-columns: 1fr;
        gap: clamp(28px, 5vw, 40px);
        text-align: center;
    }
    
    .footer-meta {
        justify-self: center;
        text-align: center;
    }
}

.brand-footer {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 48px;
}

.brand-footer img {
    height: clamp(72px, 15vw, 160px);
    transform: translateY(-8px);
    display: block;
}

.footer-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64);
    max-width: 36ch;
    font-size: 14px;
}

.footer-links {
    display: grid;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.footer-meta {
    justify-self: end;
    text-align: right;
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(500px, 100vw);
    height: 100vh;
    padding: clamp(28px, 5vw, 44px) clamp(24px, 5vw, 36px);
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 32px);
    background: #ffffff;
    color: #111318;
    border-left: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: -28px 0 72px rgba(12, 16, 24, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3200;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 19, 24, 0.18) transparent;
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.cart-header-copy {
    display: grid;
    gap: 4px;
}

.cart-eyebrow {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(15, 17, 20, 0.54);
}

.cart-header h3 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #0c1016;
}

.cart-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(15, 17, 20, 0.08);
    background: #f5f6f8;
    color: #0c1016;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.cart-close:hover {
    border-color: rgba(15, 17, 20, 0.2);
    background-color: #ffffff;
    transform: translateY(-2px);
}

.cart-progress {
    display: grid;
    gap: 12px;
    padding: 20px 22px;
    border-radius: 22px;
    background: #f6f7fa;
    border: 1px solid rgba(15, 17, 20, 0.06);
}

.cart-progress-text {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(15, 17, 20, 0.64);
}

.cart-progress-track {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #e6e8ed;
    overflow: hidden;
}

.cart-progress-fill {
    display: block;
    height: 100%;
    background: #0c1016;
    border-radius: inherit;
    transition: width 0.3s ease;
}

.cart-items {
    display: grid;
    gap: clamp(18px, 3vw, 24px);
}

.cart-entry {
    display: grid;
    grid-template-columns: minmax(0, 140px) 1fr;
    gap: clamp(16px, 2.6vw, 24px);
    padding: clamp(18px, 2.8vw, 24px) clamp(22px, 3.6vw, 28px);
    border-radius: 32px;
    border: 1px solid rgba(17, 19, 24, 0.08);
    background: #f6f7fa;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    align-items: start;
    align-self: stretch;
}

.cart-entry-media {
    width: 140px;
    margin-left: -4px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    background: #f2f4f7;
    border: 1px solid rgba(17, 19, 24, 0.08);
    justify-self: start;
}

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

.cart-entry-content {
    display: grid;
    gap: clamp(14px, 2.6vw, 20px);
    min-width: 0;
}

.cart-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.cart-entry-heading {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.cart-entry-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0b0d12;
    overflow-wrap: anywhere;
}

.cart-entry-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-entry-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f3f5f8;
    border: 1px solid rgba(17, 19, 24, 0.08);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17, 19, 24, 0.54);
}

.cart-entry-chip span {
    font-weight: 500;
    color: rgba(17, 19, 24, 0.4);
}

.cart-entry-chip strong {
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #0b0d12;
}

.cart-entry-chip-swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--swatch, #0b0d12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.cart-entry-remove {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(17, 19, 24, 0.46);
    background: none;
    border: none;
    padding: 4px 0;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cart-entry-remove:hover {
    color: #0b0d12;
}

.cart-entry-meta {
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: rgba(17, 19, 24, 0.48);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-entry-price {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #0b0d12;
}

.cart-entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cart-entry-stepper {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    background: #ffffff;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0b0d12;
}

.cart-qty-value {
    min-width: 26px;
    text-align: center;
}

.qty-btn {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    font-size: 18px;
    line-height: 1;
    color: #0b0d12;
}

.cart-entry-total {
    display: grid;
    gap: 4px;
    text-align: right;
    margin-left: auto;
}

.cart-entry-total-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 19, 24, 0.45);
}

.cart-entry-total-value {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0b0d12;
}

@media (max-width: 620px) {
    .cart-entry {
        grid-template-columns: 1fr;
        padding: clamp(18px, 7vw, 22px) clamp(18px, 7vw, 26px);
    }

    .cart-entry-media {
        width: min(240px, 72vw);
        margin: 0 auto;
    }
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(8, 10, 14, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    z-index: 900;
}

.cart-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: rgba(15, 17, 20, 0.44);
    font-size: 14px;
    letter-spacing: 0.1em;
}

/* Checkout page */

.checkout-page {
    background: #fbfbfd;
    min-height: 100vh;
    color: var(--text-primary);
    padding-top: 0;
}

.checkout-bar {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(18px, 4vw, 32px) clamp(24px, 6vw, 64px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 17, 20, 0.08);
}

.checkout-logo {
    display: inline-flex;
    align-items: center;
}

.checkout-logo img {
    height: clamp(44px, 6vw, 68px);
    width: auto;
    display: block;
}

.checkout-links {
    display: inline-flex;
    align-items: center;
    gap: clamp(16px, 4vw, 32px);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-links a {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.checkout-links a:hover {
    opacity: 1;
}

.checkout-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.checkout-actions {
    gap: clamp(16px, 4vw, 32px);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-link {
    padding: 10px 0;
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.checkout-link:hover {
    opacity: 1;
}

.checkout-main {
    max-width: 1088px;
    margin: clamp(40px, 8vw, 96px) auto clamp(72px, 10vw, 128px);
    padding: 0 clamp(24px, 6vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr);
    grid-template-areas:
        "form summary"
        "bottom summary";
    gap: clamp(32px, 7vw, 72px);
    align-items: start;
    grid-auto-rows: auto;
}

.checkout-form-section {
    grid-area: form;
}

.checkout-summary {
    grid-area: summary;
}

.checkout-bottom {
    grid-area: bottom;
    width: 100%;
    align-self: stretch;
}

@media (min-width: 1081px) {
    .checkout-bottom {
        margin-top: calc(-1 * clamp(24px, 6vw, 56px));
    }
}

.checkout-pane {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 34px;
    border: 1px solid rgba(15, 17, 20, 0.08);
    padding: clamp(32px, 4vw, 48px);
    display: grid;
    gap: clamp(24px, 5vw, 40px);
    box-shadow: 0 32px 80px rgba(12, 14, 18, 0.08);
}

.checkout-pane-summary {
    position: sticky;
    top: clamp(120px, 18vw, 180px);
}

.pane-header h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.pane-header p {
    margin: 10px 0 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkout-form {
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

.checkout-bottom {
    grid-area: bottom;
    width: 100%;
    align-self: stretch;
}

.checkout-bottom-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    border: 1px solid rgba(15, 17, 20, 0.06);
    box-shadow: 0 24px 60px rgba(12, 14, 18, 0.08);
    padding: clamp(24px, 4.6vw, 36px);
    margin-top: 0;
    display: grid;
    gap: clamp(16px, 4vw, 24px);
    align-self: start;
}

.checkout-bottom .form-consent {
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.checkout-bottom .form-error[data-error-for="policyConsent"] {
    margin: 0;
}

.checkout-bottom .btn-submit-order {
    width: 100%;
    justify-self: stretch;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 32px);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(18, 20, 24, 0.64);
}

.form-group input,
.form-group textarea {
    border-radius: 16px;
    border: 1px solid rgba(18, 20, 24, 0.12);
    padding: 16px 18px;
    font-family: inherit;
    font-size: 15px;
    background-color: #f5f6f8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #050505;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.1);
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
    background-color: rgba(229, 57, 53, 0.05);
}

.form-error {
    margin: 4px 0 0;
    font-size: 12px;
    color: #e53935;
    letter-spacing: 0.04em;
    min-height: 16px;
}

.form-consent + .form-error {
    margin-top: 8px;
}

.form-consent.is-invalid {
    color: #e53935;
}

.form-consent.is-invalid input {
    outline: 2px solid #e53935;
    outline-offset: 2px;
}

.form-actions {
    display: grid;
    gap: 12px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(18, 20, 24, 0.7);
}

.checkout-bottom .form-consent input {
    margin-top: 3px;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid rgba(18, 20, 24, 0.3);
    accent-color: #050505;
}

.form-consent a {
    color: var(--text-primary);
    text-decoration: underline;
}

.form-consent a:hover {
    color: #050505;
}

.form-hint {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(18, 20, 24, 0.6);
    line-height: 1.6;
}

/* Legal pages */

.legal-page {
    background: #fbfbfd;
    color: var(--text-primary);
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.legal-page .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.legal-content {
    padding: clamp(32px, 6vw, 72px) clamp(20px, 6vw, 64px);
}

.legal-container {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 44px);
}

.legal-header h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 44px);
    letter-spacing: -0.02em;
}

.legal-header p {
    margin: 0 0 12px;
    color: rgba(18, 20, 24, 0.68);
}

.legal-container section {
    display: grid;
    gap: 12px;
}

.legal-container h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.legal-container ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

.legal-container li {
    color: rgba(18, 20, 24, 0.78);
}

.legal-footer {
    border-top: 1px solid rgba(18, 20, 24, 0.08);
    padding-top: 16px;
    font-size: 13px;
    color: rgba(18, 20, 24, 0.6);
}

.legal-container a {
    color: inherit;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #050505;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.summary-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.summary-subtitle {
    margin: 10px 0 0;
    font-size: 13px;
    color: rgba(18, 20, 24, 0.6);
    letter-spacing: 0.04em;
}

.summary-edit {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(18, 20, 24, 0.18);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.summary-edit:hover {
    border-color: rgba(18, 20, 24, 0.3);
    background-color: rgba(18, 20, 24, 0.04);
}

.summary-items {
    display: grid;
    gap: 18px;
}

.summary-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(18, 20, 24, 0.06);
    box-shadow: 0 14px 32px rgba(18, 20, 24, 0.08);
    color: #0f0f10;
}

.summary-item img {
    width: 70px;
    height: 86px;
    object-fit: contain;
    border-radius: 16px;
    background: #f7f8fb;
    box-shadow: inset 0 0 0 1px rgba(18, 20, 24, 0.05);
}

.summary-item-body {
    display: grid;
    gap: 10px;
}

.summary-item-body h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f0f10;
}

.summary-variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.summary-variant-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(18, 20, 24, 0.04);
    border: 1px solid rgba(18, 20, 24, 0.05);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(18, 20, 24, 0.58);
}

.summary-variant-chip strong {
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #0f0f10;
}

.summary-variant-color {
    background: rgba(18, 20, 24, 0.08);
}

.summary-variant-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--swatch, #0f0f10);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 3px rgba(18, 20, 24, 0.12);
}

.summary-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(18, 20, 24, 0.55);
}

.summary-footer {
    display: grid;
    gap: 18px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.summary-note {
    margin: 0;
    font-size: 12px;
    color: rgba(18, 20, 24, 0.6);
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.summary-empty {
    text-align: center;
    padding: 32px 0;
    color: rgba(18, 20, 24, 0.6);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.checkout-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.6);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5000;
    padding: 24px;
}

.checkout-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 32px;
    padding: clamp(32px, 6vw, 52px);
    box-shadow: 0 40px 120px rgba(5, 5, 5, 0.28);
    display: grid;
    gap: 18px;
    text-align: center;
    max-width: min(460px, 90vw);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
}

.checkout-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: #050505;
    color: #fff;
    font-size: 24px;
    justify-self: center;
}

.checkout-modal-card h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.01em;
}

.checkout-modal-card p {
    margin: 0;
    color: rgba(18, 20, 24, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.checkout-modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 1080px) {
    .checkout-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "form"
            "summary"
            "bottom";
        gap: clamp(28px, 8vw, 48px);
    }

    .checkout-pane-summary {
        position: static;
    }

    .checkout-bottom {
        margin-top: 0;
    }
}

@media (max-width: 780px) {
    .checkout-bar {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
        padding: clamp(18px, 6vw, 28px);
    }

    .checkout-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 11px;
    }

    .checkout-main {
        margin: clamp(32px, 10vw, 72px) auto clamp(56px, 12vw, 96px);
        padding: 0 clamp(16px, 7vw, 32px);
    }

    .checkout-pane {
        border-radius: 26px;
        padding: clamp(24px, 8vw, 36px);
    }

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


    .summary-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 18px;
        border-radius: 24px;
        box-shadow: 0 14px 28px rgba(18, 20, 24, 0.08);
    }

    .summary-item img {
        margin: 0 auto 8px;
        width: 92px;
        height: 92px;
        border-radius: 20px;
    }

    .summary-item-body {
        gap: 10px;
    }

    .summary-item-body h4 {
        font-size: 13px;
        letter-spacing: 0.14em;
    }

    .summary-variant-list {
        justify-content: center;
    }

    .summary-item-meta {
        justify-content: center;
        gap: 16px;
        font-size: 11px;
    }

    .checkout-bottom-card {
        border-radius: 26px;
        padding: clamp(24px, 7vw, 36px);
    }

    .checkout-modal-card {
        padding: 32px 24px;
    }
}

.order-note {
    display: grid;
    gap: 12px;
}

.order-note label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 17, 20, 0.5);
}

.order-note textarea {
    min-height: 120px;
    border-radius: 18px;
    border: 1px solid rgba(15, 17, 20, 0.08);
    background: #f6f7fa;
    color: #0c1016;
    padding: 18px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-note textarea::placeholder {
    color: rgba(245, 245, 247, 0.4);
}

.order-note textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.32);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.cart-summary {
    display: grid;
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 17, 20, 0.08);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 17, 20, 0.5);
}

.cart-total strong {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0c1016;
}

.cart-hint {
    margin: 0;
    font-size: 12px;
    color: rgba(15, 17, 20, 0.44);
    letter-spacing: 0.08em;
    line-height: 1.7;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(8, 10, 14, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    z-index: 900;
}

.cart-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: rgba(15, 17, 20, 0.44);
    font-size: 14px;
    letter-spacing: 0.1em;
}

.product-main {
    margin: clamp(32px, 6vw, 96px) clamp(20px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

@media (max-width: 1024px) {
    .product-main {
        gap: clamp(24px, 5vw, 48px);
    }
}

.product-hero {
    border-radius: var(--radius-large);
    overflow: hidden;
    background-color: var(--surface);
    box-shadow: var(--shadow);
    position: relative;
}

.product-hero img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    aspect-ratio: 4 / 5;
}

.hero-media-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform-origin: center;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(5, 5, 5, 0.45);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    backdrop-filter: blur(5px);
    opacity: 0.85;
}

.hero-media-toggle:hover {
    background: rgba(5, 5, 5, 0.7);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

.product-hero:not([data-has-gallery="true"]) .hero-media-toggle {
    display: none;
}

.product-secondary {
    margin-top: clamp(16px, 2.5vw, 32px);
    border-radius: var(--radius-large);
    overflow: hidden;
    background-color: var(--surface);
    box-shadow: var(--shadow);
    display: none;
}

.product-secondary.is-visible {
    display: block;
}

.product-secondary img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.product-info-panel {
    display: grid;
    gap: 24px;
}

.product-breadcrumb {
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--text-secondary);
}

.product-info-panel h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.01em;
}

.product-price-large {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.product-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background-color: rgba(15, 17, 20, 0.08);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 17, 20, 0.72);
    margin: 12px 0 20px;
}

.product-availability::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.18);
}

.product-availability[data-status="preorder"]::before {
    background-color: #f39c12;
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.2);
}

.product-availability[data-status="low"]::before {
    background-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.18);
}

.product-tagline {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(20, 22, 26, 0.58);
}

.product-tagline.is-hidden {
    display: none;
}

.product-customizer {
    display: grid;
    gap: clamp(24px, 4vw, 32px);
    padding: clamp(24px, 4vw, 32px);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 17, 20, 0.08);
    box-shadow: 0 16px 44px rgba(12, 14, 18, 0.06);
}

.config-header {
    display: grid;
    gap: 10px;
}

.config-kicker {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 11px;
    color: rgba(15, 17, 20, 0.48);
}

.config-header h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 36px);
    letter-spacing: -0.01em;
}

.config-header p {
    margin: 0;
    font-size: 15px;
    color: rgba(15, 17, 20, 0.62);
    max-width: 50ch;
    line-height: 1.6;
}

.config-grid {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
}

.product-selector.is-hidden {
    display: none;
}

.config-card {
    padding: clamp(18px, 3vw, 24px);
    border-radius: 20px;
    background: #f6f7fa;
    border: 1px solid rgba(15, 17, 20, 0.08);
    display: grid;
    gap: 16px;
}

.config-card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.config-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #0f0f10;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.config-card-head h3 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.config-card-head p {
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(15, 17, 20, 0.56);
    line-height: 1.55;
}

.config-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color-option,
.product-size-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(15, 17, 20, 0.12);
    background: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.product-color-option .product-color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--swatch, #d8d8d8);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.product-color-option .product-color-name {
    font-size: 11px;
    letter-spacing: 0.12em;
}

.product-size-option {
    min-width: 50px;
    justify-content: center;
}

.product-color-option.is-active,
.product-size-option.is-active {
    border-color: #0f0f10;
    background: #0f0f10;
    color: #fff;
}

.product-color-option:focus-visible,
.product-size-option:focus-visible {
    outline: 2px solid #0f0f10;
    outline-offset: 2px;
}

.config-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.btn-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    border-radius: 12px;
    background: #0f0f10;
    color: #f5f5f7;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-cta:hover {
    background: #1a1b21;
}

.btn-cta:disabled,
.btn-cta.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.config-hint {
    margin: 0;
    font-size: 13px;
    color: rgba(15, 17, 20, 0.6);
}

.product-overview {
    display: grid;
    gap: clamp(20px, 4vw, 30px);
    padding: clamp(24px, 4vw, 32px);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 17, 20, 0.06);
    box-shadow: 0 18px 44px rgba(12, 14, 18, 0.06);
}

.product-description {
    display: grid;
    gap: 12px;
    font-size: 16px;
    color: rgba(15, 17, 20, 0.7);
}

@media (max-width: 720px) {
    .product-customizer,
    .product-overview {
        padding: 20px;
        border-radius: 20px;
    }

    .config-card {
        padding: 18px;
    }

    .config-card-head {
        flex-direction: column;
        gap: 12px;
    }

    .config-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: left;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .hero {
        margin: 18px 16px 28px;
        padding: 28px 18px;
        gap: 28px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .collection {
        margin: 40px 16px;
    }

    .product-card {
        padding: clamp(16px, 4vw, 24px);
        gap: clamp(14px, 3vw, 20px);
    }
    
    .product-media {
        border-radius: clamp(10px, 2vw, 16px);
    }
    
    .product-info {
        gap: clamp(12px, 2.5vw, 16px);
    }

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

    .product-card-cta {
        width: 100%;
    }

    .product-main {
        margin: 32px 16px 64px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-customizer,
    .product-overview {
        padding: 18px;
        border-radius: 18px;
    }

    .config-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .config-hint {
        line-height: 1.5;
    }
}

@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 720px) {
    .hero-inner {
        padding: 28px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }
}

.cart-header,
.cart-progress,
.cart-items {
    width: 100%;
}

.checkout-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 10, 14, 0.28);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 4500;
}

.checkout-loader.visible {
    opacity: 1;
    pointer-events: auto;
}

.checkout-loader-card {
    display: grid;
    gap: 16px;
    padding: 28px 36px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: 0 28px 64px rgba(12, 16, 24, 0.15);
    text-align: center;
    color: #111318;
    font-size: 15px;
    letter-spacing: 0.04em;
}

.checkout-loader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(17, 19, 24, 0.12);
    border-top-color: #111318;
    margin: 0 auto;
    animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

