/* =====================================================
   150 — ONE FIFTY
   Nothing Over 150
   ===================================================== */


/* ================= ROOT ================= */

:root {
    --blue: #0047AB;
    --coral: #FF6F61;
    --cream: #F5F5F0;

    --white: #FFFFFF;
    --black: #111111;
    --gray: #666666;
    --light-gray: #E5E5E0;

    --container: 1200px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--cream);
    color: var(--black);

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= HEADER ================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container);
    margin: auto;

    min-height: 78px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* BRAND */

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.brand-number {
    color: var(--blue);

    font-size: 30px;
    font-weight: 900;

    letter-spacing: -2px;
}

.brand-tagline {
    color: var(--coral);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-top: 4px;
}


/* DESKTOP NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;

    color: #444;

    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--blue);
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.mobile-menu-button {
    width: 40px;
    height: 40px;

    border: 0;
    background: transparent;

    border-radius: 50%;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);
}

.icon-button:hover,
.mobile-menu-button:hover {
    background: var(--cream);
}

.icon-button span {
    font-size: 23px;
}

.mobile-menu-button {
    display: none;
    font-size: 20px;
}


/* MOBILE NAV */

.mobile-nav {
    display: none;

    padding: 10px 24px 20px;

    background: var(--white);

    border-top: 1px solid var(--light-gray);
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 13px 0;

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid var(--light-gray);
}


/* ================= HERO ================= */

.hero {
    max-width: var(--container);

    margin: 0 auto;

    min-height: 560px;

    padding: 80px 24px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: center;

    gap: 60px;
}

.hero-label,
.section-label {
    color: var(--coral);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    margin-top: 14px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.95;

    letter-spacing: -4px;

    max-width: 700px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-description {
    max-width: 570px;

    margin-top: 28px;

    color: var(--gray);

    font-size: 18px;
}

.hero-buttons {
    margin-top: 34px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* BUTTONS */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--blue);
    color: var(--white);

    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.2);
}

.button-secondary {
    background: var(--white);
    color: var(--blue);

    border: 1px solid var(--blue);
}

.button-light {
    background: var(--white);
    color: var(--blue);
}


/* HERO CARD */

.hero-card {
    display: flex;
    justify-content: center;
}

.hero-card-inner {
    width: min(100%, 390px);
    aspect-ratio: 1.6;

    border-radius: var(--radius-large);

    padding: 32px;

    background: var(--blue);

    color: var(--white);

    box-shadow: 0 25px 60px rgba(0, 71, 171, 0.25);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transform: rotate(3deg);
}

.hero-card-small {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.8);
}

.hero-card-inner strong {
    font-size: 100px;
    line-height: 0.8;

    letter-spacing: -8px;
}

.hero-card-inner > span:last-child {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ================= SHOP HERO ================= */

.shop-hero {
    max-width: var(--container);

    margin: 0 auto;

    padding: 65px 24px 35px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 280px;

    align-items: center;

    gap: 50px;
}


.shop-hero-content {
    padding: 45px;

    border-radius: var(--radius-large);

    background: var(--blue);

    color: var(--white);

    box-shadow:
        0 20px 50px rgba(0, 71, 171, 0.18);
}


.shop-hero-label {
    color: var(--coral);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}


.shop-hero h1 {
    max-width: 650px;

    margin-top: 10px;

    font-size:
        clamp(42px, 6vw, 70px);

    line-height: 0.98;

    letter-spacing: -3px;
}


.shop-hero h1 span {
    color: var(--coral);
}


.shop-hero-content p {
    max-width: 610px;

    margin-top: 22px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 16px;
}


/* SHOP 150 MARK */

.shop-hero-mark {
    aspect-ratio: 1 / 1;

    padding: 28px;

    border-radius: var(--radius-large);

    background: var(--coral);

    color: var(--white);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.1);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transform: rotate(3deg);
}


.shop-hero-mark > span {
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.shop-hero-mark strong {
    font-size: 82px;

    line-height: 0.9;

    letter-spacing: -6px;
}


.shop-hero-mark small {
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* ================= SHOP ================= */

.shop-section {
    padding-top: 45px;
}


.shop-heading {
    margin-bottom: 30px;

    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 20px;
}


.shop-heading h2 {
    margin-top: 4px;

    font-size: 34px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.shop-product-count {
    color: var(--gray);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

/* SHOP CATEGORY FILTER */

.shop-category-filter {
    margin-bottom: 28px;

    display: flex;

    align-items: center;

    gap: 9px;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: thin;
}


.shop-category-button {
    flex-shrink: 0;

    min-height: 40px;

    padding: 0 18px;

    border:
        1px solid var(--light-gray);

    border-radius: 999px;

    background: var(--white);

    color: var(--black);

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.shop-category-button:hover {
    border-color: var(--blue);

    color: var(--blue);

    transform: translateY(-1px);
}


.shop-category-button.active {
    border-color: var(--blue);

    background: var(--blue);

    color: var(--white);
}


.shop-category-button.active:hover {
    color: var(--white);
}


.shop-filter-loading,
.shop-filter-error {
    color: var(--gray);

    font-size: 13px;
    font-weight: 700;
}


.shop-filter-error {
    color: var(--coral);
}

/* SHOP PRODUCT SEARCH */

.shop-search {
    position: relative;

    margin-bottom: 28px;
}


.shop-search-icon {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--gray);

    font-size: 22px;

    pointer-events: none;
}


.shop-search-input {
    width: 100%;
    height: 54px;

    padding:
        0 50px;

    border:
        1px solid var(--light-gray);

    border-radius: 16px;

    outline: none;

    background: var(--white);

    color: var(--black);

    font: inherit;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.shop-search-input::placeholder {
    color: var(--gray);

    opacity: 0.75;
}


.shop-search-input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(0, 71, 171, 0.08);
}


/*
 * Remove browser-specific decoration
 * from the search field where supported.
 */

.shop-search-input::-webkit-search-cancel-button {
    cursor: pointer;
}

/* SHOP AVAILABILITY FILTER */

.shop-availability-filter {
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 14px 16px;

    border: 1px solid var(--light-gray);
    border-radius: 16px;

    background: var(--white);
}


.shop-filter-label {
    color: var(--black);

    font-size: 13px;
    font-weight: 800;
}


.shop-availability-options {
    display: flex;
    align-items: center;

    gap: 6px;
}


.shop-availability-button {
    min-height: 36px;

    padding: 0 14px;

    border: 1px solid transparent;
    border-radius: 999px;

    background: transparent;

    color: var(--gray);

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.shop-availability-button:hover {
    color: var(--blue);

    background:
        rgba(0, 71, 171, 0.06);
}


.shop-availability-button.active {
    border-color: var(--blue);

    background: var(--blue);

    color: var(--white);
}


.shop-availability-button.active:hover {
    color: var(--white);

    background: var(--blue);
}

/* SHOP SORT */

.shop-sort {
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 14px 16px;

    border: 1px solid var(--light-gray);
    border-radius: 16px;

    background: var(--white);
}


.shop-sort-select {
    min-width: 190px;
    height: 40px;

    padding: 0 36px 0 12px;

    border: 1px solid var(--light-gray);
    border-radius: 10px;

    background: var(--white);

    color: var(--black);

    font: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    outline: none;
}


.shop-sort-select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(0, 71, 171, 0.08);
}

/* ================= SECTIONS ================= */

.section {
    max-width: var(--container);

    margin: 0 auto;

    padding: 80px 24px;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 20px;

    margin-bottom: 32px;
}

.section-heading h2 {
    margin-top: 4px;

    font-size: 34px;

    line-height: 1.1;

    letter-spacing: -1px;
}

.view-all {
    color: var(--blue);

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;
}

.view-all:hover {
    color: var(--coral);
}


/* ================= CATEGORIES ================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.category-card {
    background: var(--white);

    border-radius: var(--radius-medium);

    padding: 14px;

    box-shadow: var(--shadow);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.category-placeholder {
    aspect-ratio: 1.2;

    border-radius: 14px;

    background: var(--cream);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
}

.category-card h3 {
    margin: 16px 4px 0;

    font-size: 18px;
}

.category-card p {
    margin: 2px 4px 8px;

    font-size: 13px;

    color: var(--gray);
}

/* CATEGORY LOADING / EMPTY / ERROR STATE */

.category-loading,
.category-state {
    grid-column: 1 / -1;

    min-height: 180px;

    padding: 30px;

    background: var(--white);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--gray);
}


.category-loading {
    font-size: 14px;
    font-weight: 700;
}


.category-state strong {
    color: var(--black);

    font-size: 18px;
}


.category-state span {
    margin-top: 4px;

    font-size: 14px;

    color: var(--gray);
}

/* ================= MEMBERSHIP ================= */

.membership-section {
    max-width: var(--container);

    margin: 40px auto 80px;

    padding: 60px;

    border-radius: var(--radius-large);

    background: var(--blue);

    color: var(--white);

    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 50px;
}

.membership-section .section-label {
    color: var(--coral);
}

.membership-section h2 {
    margin-top: 10px;

    font-size: 42px;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.membership-content > p {
    max-width: 600px;

    margin: 20px 0 28px;

    color: rgba(255, 255, 255, 0.8);
}

.membership-points-card {
    aspect-ratio: 1.55;

    padding: 25px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membership-points-card span {
    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;
}

.membership-points-card strong {
    font-size: 62px;

    line-height: 1;

    margin-top: 8px;
}

.membership-points-card p {
    font-weight: 800;

    letter-spacing: 2px;
}

.membership-points-card small {
    margin-top: 20px;

    opacity: 0.7;
}

/* ================= PRODUCT GRID ================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* PRODUCT CARD */

.product-card {
    min-width: 0;

    overflow: hidden;

    background: var(--white);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.1);
}


/* PRODUCT IMAGE */

.product-image-wrapper {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: var(--white);
}


.product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.3s ease;
}


.product-card:hover .product-image {
    transform: scale(1.03);
}


/* NEW BADGE */

.product-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 6px 10px;

    border-radius: 999px;

    background: var(--coral);

    color: var(--white);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* AVAILABILITY */

.product-status {
    position: absolute;

    right: 12px;
    bottom: 12px;

    padding: 6px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.7px;
}


.product-status.available {
    background: var(--blue);

    color: var(--white);
}


.product-status.sold-out {
    background: var(--black);

    color: var(--white);
}


/* PRODUCT INFORMATION */

.product-info {
    padding: 17px;
}


.product-code {
    display: block;

    margin-bottom: 5px;

    color: var(--gray);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.product-info h3 {
    min-height: 48px;

    font-size: 16px;

    line-height: 1.45;
}


.product-price {
    display: block;

    margin-top: 12px;

    color: var(--blue);

    font-size: 18px;
    font-weight: 900;
}


/* LOADING / ERROR */

.product-loading,
.product-state {
    grid-column: 1 / -1;

    min-height: 220px;

    padding: 30px;

    background: var(--white);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--gray);
}


.product-loading {
    font-size: 14px;
    font-weight: 700;
}


.product-state strong {
    color: var(--black);

    font-size: 18px;
}


.product-state span {
    margin-top: 4px;

    color: var(--gray);

    font-size: 14px;
}


/*
 * Empty state sits across the
 * complete product grid.
 */

.product-grid > .empty-products {
    grid-column: 1 / -1;
}

/* =====================================================
   MEMBER EARLY ACCESS PRODUCT CARD
   ===================================================== */

.member-early-access-card {
    display: flex;
    flex-direction: column;

    background: var(--white);

    border:
        1px solid rgba(0, 71, 171, 0.12);

    cursor: pointer;
}


/* LOCKED VISUAL AREA */

.member-early-access-visual {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    padding: 22px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 111, 97, 0.22),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 255, 255, 0.16),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #0047AB 0%,
            #073875 100%
        );

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--white);
}


/* SUBTLE 150 BACKGROUND MARK */

.member-early-access-visual::before {
    content: "150";

    position: absolute;

    right: -12px;
    bottom: -28px;

    color:
        rgba(255, 255, 255, 0.06);

    font-size: 110px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -8px;

    pointer-events: none;
}


/* LOCK */

.member-early-access-lock {
    position: relative;
    z-index: 1;

    width: 54px;
    height: 54px;

    margin-bottom: 14px;

    border:
        1px solid rgba(255, 255, 255, 0.24);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    backdrop-filter: blur(8px);
}


/* 150 BRAND */

.member-early-access-brand {
    position: relative;
    z-index: 1;

    font-size: 46px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -4px;
}


/* MEMBER EARLY ACCESS BADGE */

.member-early-access-badge {
    position: relative;
    z-index: 1;

    margin-top: 12px;

    padding: 6px 10px;

    border-radius: 999px;

    background: var(--coral);

    color: var(--white);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;
}


/* INFORMATION AREA */

.member-early-access-info {
    padding: 17px;
}


.member-early-access-info h3 {
    min-height: 48px;

    color: var(--black);

    font-size: 16px;

    line-height: 1.45;
}


.member-early-access-info p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.55;
}


/* LOGIN / JOIN ACTION */

.member-early-access-action {
    display: inline-flex;

    margin-top: 14px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.7px;
}


.member-early-access-action::after {
    content: " →";

    margin-left: 4px;
}


/* 24 HOUR MESSAGE */

.member-early-access-time {
    display: block;

    margin-top: 8px;

    color: var(--gray);

    font-size: 10px;

    line-height: 1.4;
}


/* HOVER */

.member-early-access-card:hover
.member-early-access-visual {
    filter: brightness(1.04);
}

/* ================= EMPTY PRODUCTS ================= */

.empty-products {
    min-height: 300px;

    background: var(--white);

    border-radius: var(--radius-medium);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: var(--shadow);
}

.empty-products-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 22px;
}

.empty-products h3 {
    margin-top: 18px;

    font-size: 21px;
}

.empty-products p {
    color: var(--gray);

    margin-top: 5px;
}


/* ================= FOOTER ================= */

.site-footer {
    background: var(--white);

    border-top: 1px solid var(--light-gray);

    padding: 60px 24px 25px;
}

.footer-container {
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;
}

.footer-logo {
    color: var(--blue);

    font-size: 42px;
    font-weight: 900;

    letter-spacing: -3px;
}

.footer-brand p {
    color: var(--gray);

    margin-top: 5px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 5px;

    font-size: 14px;
}

.footer-column a {
    color: var(--gray);

    font-size: 13px;
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-bottom {
    max-width: var(--container);

    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid var(--light-gray);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--gray);

    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* ================= TABLET ================= */

@media (max-width: 900px) {

    .shop-hero {
    grid-template-columns: 1fr;

    gap: 25px;
}


.shop-hero-mark {
    width: 280px;

    margin: 0 auto;
}

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 60px;

        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        margin-top: 20px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
    grid-template-columns:
        repeat(2, 1fr);
}

    .membership-section {
        grid-template-columns: 1fr;

        margin-left: 24px;
        margin-right: 24px;

        padding: 45px;
    }

    .membership-points-card {
        max-width: 360px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   PRODUCT DETAILS
   ===================================================== */

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 28px;
}

.product-detail-image {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    background: var(--off-white);
}

.product-detail-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 20px;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
}

.product-detail-info .product-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
}

.product-detail-info .product-code {
    display: block;
    margin-bottom: 10px;
}

.product-detail-info h1 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.product-detail-price {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.product-detail-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 12px;
    margin-bottom: 26px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.product-detail-status.available {
    color: #16733d;
    background: #e9f8ef;
}

.product-detail-status.sold-out {
    color: #b42318;
    background: #fef0ee;
}

.product-detail-description {
    width: 100%;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.75;
    white-space: pre-line;
}

.product-detail .product-state,
.product-detail .product-loading {
    grid-column: 1 / -1;
    width: 100%;
}

/* PRODUCT ORDERING */

.product-order-section {
    width: 100%;
    margin-top: 30px;
}

.product-order-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 14px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.product-order-whatsapp:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.product-order-alternatives {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    background: var(--off-white);
    text-align: center;
}

.product-order-alternatives strong {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 14px;
}

.product-order-alternatives p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 13px;
    line-height: 1.6;
}

.product-order-alternatives a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.product-order-alternatives a:hover {
    text-decoration: underline;
}

.product-order-alternatives .product-order-note {
    margin-top: 6px;
    font-size: 12px;
}

.product-order-alternatives a:hover {
    text-decoration: underline;
}

/* =====================================================
   PRODUCT WISHLIST
   ===================================================== */

.product-wishlist-button {
    width: 100%;
    min-height: 50px;
    margin-top: 22px;
    padding: 13px 18px;

    border: 2px solid var(--blue);
    border-radius: 14px;

    background: transparent;
    color: var(--blue);

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.product-wishlist-button:hover {
    transform: translateY(-1px);
    background: rgba(0, 71, 171, 0.06);
}

.product-wishlist-button.saved {
    background: var(--blue);
    color: var(--white);
}

.product-wishlist-button:disabled {
    cursor: wait;
    opacity: 0.6;
    transform: none;
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    /* PRODUCT DETAILS */

.product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 20px;
}

.product-detail-image {
    border-radius: 18px;
}

.product-detail-info {
    padding-top: 0;
}

.product-detail-info h1 {
    font-size: 30px;
}

.product-detail-price {
    font-size: 26px;
}

.product-detail-description {
    font-size: 15px;
    line-height: 1.7;
}

    .shop-sort {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
}


.shop-sort-select {
    width: 100%;
    min-width: 0;
}

    .shop-availability-filter {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
}


.shop-availability-options {
    width: 100%;
}


.shop-availability-button {
    flex: 1;

    padding-left: 8px;
    padding-right: 8px;
}

    .shop-hero {
    padding:
        35px 16px 20px;

    gap: 20px;
}


.shop-hero-content {
    padding: 32px 24px;
}


.shop-hero h1 {
    font-size: 44px;

    letter-spacing: -2px;
}


.shop-hero-content p {
    font-size: 14px;
}


.shop-hero-mark {
    width: min(85%, 250px);

    padding: 24px;
}


.shop-hero-mark strong {
    font-size: 70px;
}


.shop-heading {
    align-items: start;

    flex-direction: column;

    gap: 8px;
}


.shop-heading h2 {
    font-size: 29px;
}

    .header-container {
        min-height: 68px;

        padding: 0 16px;
    }

    .brand-number {
        font-size: 27px;
    }

    .header-actions {
        gap: 2px;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .account-button {
        display: none;
    }

    .hero {
        min-height: auto;

        padding: 60px 20px 50px;

        gap: 40px;
    }

    .hero h1 {
        font-size: 56px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-card-inner {
        width: 100%;

        padding: 25px;
    }

    .hero-card-inner strong {
        font-size: 80px;
    }

    .section {
        padding: 55px 16px;
    }

    .section-heading {
        align-items: start;

        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .category-card {
        padding: 10px;
    }

    .category-placeholder {
        font-size: 32px;
    }

    .category-card h3 {
        font-size: 16px;
    }

.product-grid {
    gap: 10px;
}


.product-info {
    padding: 13px;
}


.product-info h3 {
    min-height: 44px;

    font-size: 14px;
}


.product-price {
    margin-top: 9px;

    font-size: 16px;
}


.product-badge {
    top: 8px;
    left: 8px;

    padding: 5px 8px;
}


.product-status {
    right: 8px;
    bottom: 8px;

    padding: 5px 7px;

    font-size: 8px;
}

/* MEMBER EARLY ACCESS CARD */

.member-early-access-visual {
    padding: 14px;
}


.member-early-access-lock {
    width: 42px;
    height: 42px;

    margin-bottom: 10px;

    font-size: 18px;
}


.member-early-access-brand {
    font-size: 36px;

    letter-spacing: -3px;
}


.member-early-access-badge {
    margin-top: 9px;

    padding: 5px 7px;

    font-size: 7px;

    letter-spacing: 0.8px;
}


.member-early-access-info {
    padding: 13px;
}


.member-early-access-info h3 {
    min-height: 40px;

    font-size: 14px;
}


.member-early-access-info p {
    font-size: 11px;
}


.member-early-access-action {
    margin-top: 11px;

    font-size: 10px;
}


.member-early-access-time {
    font-size: 9px;
}

    .membership-section {
        margin: 20px 16px 55px;

        padding: 35px 25px;

        gap: 35px;
    }

    .membership-section h2 {
        font-size: 34px;
    }

    .membership-points-card {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        margin-top: 35px;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 5px;
    }

}

.assign-id-button {
    border: none;
    border-radius: 9px;
    padding: 9px 12px;
    background: #0047ab;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.assign-id-button:hover {
    opacity: 0.9;
}

.assign-id-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.assigned-label {
    font-size: 12px;
    font-weight: 700;
    color: #26703a;
}

/* =====================================================
   HOMEPAGE INFORMATION SECTIONS
   FAQ / DELIVERY / CONTACT
   ===================================================== */

.info-section {
    padding-top: 72px;
    padding-bottom: 72px;
}


.info-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}


.info-card {
    background: #ffffff;
    border: 1px solid rgba(0, 71, 171, 0.10);
    border-radius: 18px;
    padding: 26px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.05);
}


.info-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #10233f;
}


.info-card p {
    margin: 0;
    color: #5f6f82;
    line-height: 1.7;
}


/* ================= DELIVERY ================= */

#delivery {
    background:
        rgba(0, 71, 171, 0.035);
}


/* ================= CONTACT ================= */

.contact-section {
    text-align: left;
}


.contact-details {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}


.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 71, 171, 0.10);
    border-radius: 18px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.05);
}


.contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c7a8b;
}


.contact-item a {
    display: inline-block;
    width: fit-content;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0047ab;
    text-decoration: none;
    overflow-wrap: anywhere;
}


.contact-item a:hover {
    text-decoration: underline;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .info-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }


    .info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }


    .info-card {
        padding: 22px;
        border-radius: 16px;
    }


    .contact-details {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }


    .contact-item {
        padding: 22px;
        border-radius: 16px;
    }

}

/* =====================================================
   LEGAL PAGES
   ===================================================== */

.legal-page {
    max-width: 900px;
}


.legal-header {
    margin-bottom: 46px;
}


.legal-header h1 {
    margin: 8px 0 10px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}


.legal-header p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}


.legal-content {
    display: flex;
    flex-direction: column;
    gap: 38px;
}


.legal-content section {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light-gray);
}


.legal-content section:last-child {
    border-bottom: none;
}


.legal-content h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
}


.legal-content p {
    margin: 0 0 12px;
    color: var(--gray);
    line-height: 1.8;
}


.legal-content p:last-child {
    margin-bottom: 0;
}


.legal-content a {
    color: var(--blue);
    font-weight: 700;
}


.legal-content a:hover {
    color: var(--coral);
}


@media (max-width: 600px) {

    .legal-header {
        margin-bottom: 34px;
    }


    .legal-content {
        gap: 30px;
    }


    .legal-content section {
        padding-bottom: 26px;
    }


    .legal-content h2 {
        font-size: 19px;
    }

}