:root {
    --norka-ivory: #F7F3ED;
    --norka-white: #FFFFFF;
    --norka-gold: #C8A46A;
    --norka-gold-dark: #9A7746;
    --norka-graphite: #252525;
    --norka-muted: #77716B;
    --norka-silver: #C9C9C7;

    --store-border: rgba(37, 37, 37, .12);
    --store-shadow: 0 18px 50px rgba(37, 37, 37, .07);
    --store-radius: 2px;
    --store-container: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--norka-ivory);
    color: var(--norka-graphite);
    font-family: "Inter", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

.store-container {
    width: min(calc(100% - 40px), var(--store-container));
    margin-inline: auto;
}

.announcement-bar {
    padding: 9px 0;
    background: var(--norka-graphite);
    color: rgba(255,255,255,.88);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.announcement-bar .store-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--store-border);
    background: rgba(247, 243, 237, .94);
    backdrop-filter: blur(14px);
}

.store-header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.store-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: .9;
}

.store-brand-main {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: .02em;
}

.store-brand-sub {
    margin-top: 7px;
    color: var(--norka-gold-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.store-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-self: start;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}

.store-nav a {
    position: relative;
}

.store-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--norka-gold);
    transition: right .2s ease;
}

.store-nav a:hover::after {
    right: 0;
}

.store-actions {
    display: flex;
    justify-self: end;
    gap: 10px;
}

.store-icon-link {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    font-size: 20px;
}

.store-icon-link:hover {
    border-color: var(--store-border);
    background: rgba(255,255,255,.6);
}

.store-cart-link {
    position: relative;
}

.store-cart-count {
    position: absolute;
    top: -1px;
    right: -1px;
    min-width: 17px;
    height: 17px;
    padding-inline: 4px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--norka-gold);
    color: var(--norka-white);
    font-size: 9px;
    font-weight: 700;
}

.store-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.store-menu-toggle span {
    display: block;
    height: 1px;
    margin: 6px 0;
    background: var(--norka-graphite);
}

.store-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 35%, rgba(200,164,106,.28), transparent 25%),
        linear-gradient(135deg, #f3eee6 0%, #e8e0d5 100%);
}

.store-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(25,25,25,.58) 0%,
            rgba(25,25,25,.28) 42%,
            rgba(25,25,25,.04) 72%,
            rgba(25,25,25,0) 100%
        );
}

.store-hero.no-image .store-hero-overlay {
    background:
        radial-gradient(circle at 75% 48%, rgba(200,164,106,.20), transparent 20%),
        linear-gradient(120deg, rgba(255,255,255,.2), rgba(255,255,255,0));
}

.store-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.store-hero.has-image .store-hero-content {
    color: white;
}

.store-kicker {
    margin: 0 0 14px;
    color: var(--norka-gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.store-hero.has-image .store-kicker {
    color: #f4d8a7;
}

.store-hero h1,
.store-section-heading h2,
.store-editorial h2,
.store-newsletter h2,
.store-footer-brand {
    font-family: "Cormorant Garamond", serif;
}

.store-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(56px, 7vw, 96px);
    line-height: .92;
    font-weight: 600;
    letter-spacing: -.03em;
}

.store-hero-text {
    max-width: 560px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.65;
}

.store-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.store-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.store-button:hover {
    transform: translateY(-1px);
}

.store-button-dark {
    background: var(--norka-graphite);
    color: white;
}

.store-button-dark:hover {
    background: var(--norka-gold-dark);
}

.store-button-ghost {
    border-color: currentColor;
    background: rgba(255,255,255,.08);
    color: inherit;
}

.store-section {
    padding: 96px 0;
}

.store-section-products {
    background: var(--norka-white);
}

.store-section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.store-section-heading.centered {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 45px;
    display: block;
    text-align: center;
}

.store-section-heading h2,
.store-editorial h2,
.store-newsletter h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
    font-weight: 600;
}

.store-section-heading p:not(.store-kicker) {
    color: var(--norka-muted);
    line-height: 1.7;
}

.store-text-link {
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--norka-gold);
    font-size: 13px;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #e9e1d5;
}

.category-card img,
.category-card-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .45s ease;
}

.category-card:hover img,
.category-card:hover .category-card-placeholder {
    transform: scale(1.03);
}

.category-card-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(200,164,106,.22), transparent 30%),
        linear-gradient(145deg, #ede6db, #d9ccba);
}

.category-card-placeholder span {
    font-family: "Cormorant Garamond", serif;
    font-size: 120px;
    color: rgba(37,37,37,.16);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20,20,20,.65),
        rgba(20,20,20,.03) 55%
    );
}

.category-card-content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    color: white;
}

.category-card-content h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
}

.category-card-content span {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
}

.product-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--norka-ivory);
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.025);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    color: rgba(37,37,37,.25);
    background:
        radial-gradient(circle at 50% 40%, rgba(200,164,106,.18), transparent 30%),
        #f4efe8;
}

.product-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 7px 10px;
    background: rgba(255,255,255,.9);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-card-body {
    padding: 15px 2px 0;
}

.product-card-title {
    display: inline-block;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
}

.product-card-price {
    display: flex;
    gap: 9px;
    margin-top: 7px;
    align-items: center;
    font-size: 13px;
}

.price-current {
    font-weight: 700;
}

.price-old {
    color: var(--norka-muted);
    text-decoration: line-through;
}

.store-empty-state {
    padding: 32px;
    border: 1px dashed var(--store-border);
    background: var(--norka-ivory);
    color: var(--norka-muted);
    text-align: center;
}

.store-editorial {
    padding: 0;
    background: var(--norka-graphite);
    color: white;
}

.store-editorial-grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.store-editorial-copy {
    max-width: 620px;
    align-self: center;
    padding: 80px 60px 80px 0;
}

.store-editorial-copy .store-kicker {
    color: #e8c992;
}

.store-editorial-copy p:not(.store-kicker) {
    max-width: 520px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.store-editorial-copy .store-text-link {
    display: inline-block;
    margin-top: 16px;
}

.store-editorial-art {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background:
        radial-gradient(circle at center, rgba(200,164,106,.18), transparent 28%),
        linear-gradient(135deg, #373431, #171717);
}

.editorial-monogram {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    font-size: min(34vw, 420px);
    color: rgba(255,255,255,.08);
}

.editorial-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(200,164,106,.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 60%;
    aspect-ratio: 1 / 1;
}

.orbit-two {
    width: 82%;
    aspect-ratio: 1.7 / 1;
}

.editorial-star {
    position: absolute;
    color: #e2bd78;
    font-size: 28px;
}

.star-one {
    left: 28%;
    top: 26%;
}

.star-two {
    right: 24%;
    bottom: 26%;
}

.store-newsletter {
    padding: 78px 0;
    background: #e9dfd1;
}

.store-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.store-newsletter p:not(.store-kicker) {
    color: var(--norka-muted);
}

.store-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
}

.store-newsletter-form input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--store-border);
    border-right: 0;
    background: rgba(255,255,255,.7);
    outline: none;
}

.store-footer {
    padding: 68px 0 38px;
    background: #1d1d1d;
    color: rgba(255,255,255,.78);
}

.store-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 44px;
}

.store-footer-brand {
    color: white;
    font-size: 44px;
}

.store-footer h3 {
    margin-top: 0;
    color: white;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.store-footer a,
.store-footer p {
    display: block;
    margin: 0 0 10px;
    color: rgba(255,255,255,.64);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 960px) {
    .store-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .store-menu-toggle {
        display: block;
    }

    .store-brand {
        justify-self: center;
    }

    .store-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        background: var(--norka-ivory);
        border-bottom: 1px solid var(--store-border);
    }

    .store-nav.is-open {
        display: flex;
    }

    .store-hero {
        min-height: 620px;
    }

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

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

    .store-editorial-grid,
    .store-newsletter-inner,
    .store-footer-grid {
        grid-template-columns: 1fr;
    }

    .store-editorial-copy {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .store-container {
        width: min(calc(100% - 26px), var(--store-container));
    }

    .announcement-bar {
        font-size: 10px;
    }

    .announcement-divider,
    .announcement-bar span:last-child {
        display: none;
    }

    .store-header-inner {
        min-height: 72px;
    }

    .store-brand-main {
        font-size: 34px;
    }

    .store-actions .store-icon-link:first-child,
    .store-actions .store-icon-link:nth-child(2) {
        display: none;
    }

    .store-hero {
        min-height: 560px;
    }

    .store-hero-overlay {
        background: rgba(25,25,25,.36);
    }

    .store-hero h1 {
        font-size: 52px;
    }

    .store-hero-text {
        font-size: 16px;
    }

    .store-section {
        padding: 70px 0;
    }

    .store-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .category-card {
        min-height: 390px;
    }

    .product-grid {
        gap: 22px 10px;
    }

    .product-card-title {
        font-size: 18px;
    }

    .store-editorial-art {
        min-height: 400px;
    }

    .store-newsletter-form {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .store-newsletter-form input {
        border-right: 1px solid var(--store-border);
    }
}
