:root {
    --bg: #ffffff;
    --ink: #222222;
    --muted: #5f5f5f;
    --soft: #f4f4f4;
    --panel: #f3f4f5;
    --line: #d7d7d7;
    --lime: #d9ff8f;
    --dark: #202020;
    --shop-width: 1360px;
    --serif: 'Amiri', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--serif);
}

strong,
b,
th,
dt,
label {
    font-weight: 400;
}

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

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

.announcement-bar {
    background: var(--dark);
    color: #f4f4f4;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 0.62rem 1rem;
}

.announcement-bar span {
    color: #bdbdbd;
    margin: 0 0.8rem;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.page-home .site-header-hero {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    color: #fff;
}

.page-home .site-header-hero .nav-links {
    color: rgba(255, 255, 255, 0.92);
}

.page-home .site-header-hero .nav-actions,
.page-home .site-header-hero .search-button,
.page-home .site-header-hero .account-link,
.page-home .site-header-hero .bag-button {
    color: #fff;
}

.page-home .site-header-hero .nav-links a.active {
    color: #1f1f1f;
}

.page-home .site-header-hero .logo img {
    filter: brightness(0) invert(1);
}

.site-header.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: var(--ink);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-home .site-header-hero.header-floating .nav-links {
    color: #30333a;
}

.page-home .site-header-hero.header-floating .nav-actions,
.page-home .site-header-hero.header-floating .search-button,
.page-home .site-header-hero.header-floating .account-link,
.page-home .site-header-hero.header-floating .bag-button {
    color: var(--ink);
}

.page-home .site-header-hero.header-floating .logo img {
    filter: none;
}

.site-header.header-hidden {
    transform: translateY(-110%);
}

.nav-wrapper {
    max-width: var(--shop-width);
    margin: 0 auto;
    min-height: 86px;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
}

.logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex: 0 0 auto;
}

.logo img {
    width: clamp(125px, 12vw, 175px);
    height: auto;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.7vw, 3rem);
    font-size: clamp(0.82rem, 0.92vw, 1rem);
    font-weight: 400;
    color: #30333a;
}

.nav-links a {
    position: relative;
    white-space: nowrap;
    padding: 0.1rem 0.2rem;
}

.nav-links a.active {
    background: var(--lime);
    color: #1f1f1f;
    padding: 0.18rem 1.18rem;
}

.nav-new sup,
.badge {
    background: var(--lime);
    color: #598100;
    border-radius: 50%;
    font-size: 0.66rem;
    line-height: 1;
}

.nav-new sup {
    position: absolute;
    top: -0.7rem;
    right: -1rem;
    padding: 0.32rem 0.24rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.icon-button,
.bag-button,
.account-link,
.search-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    position: relative;
    padding: 0;
}

.icon-button {
    min-width: 34px;
    min-height: 34px;
    font-size: 1.9rem;
    line-height: 1;
}

.search-button {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.search-button::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.5px;
    background: currentColor;
    right: -4px;
    bottom: 1px;
    transform: rotate(45deg);
    transform-origin: center;
}

.search-modal[hidden] {
    display: none;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.search-modal-panel {
    position: relative;
    width: min(720px, calc(100% - 2rem));
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.search-modal-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    border-bottom: 1px solid var(--line);
}

.search-modal-input {
    min-height: 64px;
    border: 0;
    padding: 0 1.25rem;
    font: inherit;
    font-size: 1.2rem;
    color: var(--ink);
    outline: none;
}

.search-modal-form .btn {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
}

.search-modal-suggestions {
    display: grid;
    max-height: min(520px, calc(100vh - 150px));
    overflow-y: auto;
}

.search-suggestion {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
}

.search-suggestion:last-child {
    border-bottom: 0;
}

.search-suggestion img {
    width: 72px;
    height: 84px;
    object-fit: contain;
    background: var(--panel);
}

.search-suggestion span {
    display: grid;
    gap: 0.2rem;
}

.search-suggestion small {
    color: var(--muted);
}

.search-suggestion strong {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.search-suggestion em {
    font-style: normal;
    color: var(--ink);
}

.search-empty {
    margin: 0;
    padding: 1.25rem;
    color: var(--muted);
}

.account-link {
    width: 21px;
    height: 21px;
}

.account-link::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 8px;
    width: 5px;
    height: 5px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.account-link::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 1px;
    width: 17px;
    height: 7px;
    border: 1.5px solid currentColor;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    border-bottom: 0;
}

.bag-button {
    width: 23px;
    height: 25px;
}

.bag-icon {
    position: absolute;
    inset: 7px 4px 2px;
    border: 1.5px solid currentColor;
}

.bag-icon::before {
    content: "";
    position: absolute;
    left: 3px;
    top: -7px;
    width: 6px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.mobile-menu-button {
    display: none;
    width: 31px;
    height: 24px;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 1.8px;
    background: currentColor;
    margin: 0 0 8px;
}

.mobile-menu-button span:last-child {
    margin-bottom: 0;
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 95;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100%;
    background: #fff;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.mobile-nav-panel > a {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.mobile-nav-open {
    overflow: hidden;
}

.page-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.alert {
    max-width: 1420px;
    margin: 1rem auto;
    padding: 0.85rem 1rem;
    border-radius: 0;
}

.alert-success {
    background: #eef8e7;
    color: #27601c;
}

.alert-error {
    background: #fde8ea;
    color: #8f1d2f;
}

.muted {
    color: var(--muted);
}

.hero-full {
    position: relative;
    width: 100%;
    height: calc(100vh - 42px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #31352f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
}

.hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.48));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(var(--shop-width), 94vw);
    margin: 0 auto;
    padding: 0 3vw 5.6rem;
    color: #fff;
}

.hero-content p {
    max-width: 980px;
    margin: 0 0 1rem;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 100;
}

.hero-content h1 {
    margin: 0;
    max-width: 980px;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-product-spot {
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lime);
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

.hero-product-spot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(217, 255, 143, 0.68);
    border-radius: 50%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.45rem;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--lime);
    border-color: var(--lime);
    color: #1b1b1b;
}

.btn.secondary {
    background: transparent;
}

.btn.full-width {
    width: 100%;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.2vw, 2.5rem);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.section-copy {
    color: var(--muted);
    max-width: 290px;
    margin: 0 0 2rem;
}

.home-feature {
    max-width: var(--shop-width);
    margin: 0 auto;
    padding: 5.5rem 3vw;
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.inspiration-section {
    max-width: var(--shop-width);
    margin: 0 auto;
    padding: 5.5rem 3vw 0;
}

.inspiration-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.inspiration-heading p {
    margin: 0 0 0.55rem;
    color: var(--muted);
    font-weight: 300;
}

.inspiration-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.2vw, 2.5rem);
    font-weight: 300;
    line-height: 1.08;
}

.inspiration-layout {
    display: grid;
    grid-template-columns: minmax(320px, 680px) minmax(300px, 1fr);
    gap: clamp(1.6rem, 4vw, 4.5rem);
    align-items: start;
}

.inspiration-image-wrap {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background: var(--panel);
}

.inspiration-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-spot {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lime);
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    color: #1b1b1b;
    font-size: 0.72rem;
    font-weight: 400;
}

.inspiration-spot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(217, 255, 143, 0.7);
}

.inspiration-products {
    display: grid;
    gap: 0.85rem;
}

.inspiration-product {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid var(--line);
    background: #fff;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.inspiration-product.is-highlighted,
.inspiration-product:hover,
.inspiration-product:focus-visible {
    border-color: var(--lime);
    background: #fbfff2;
    box-shadow: inset 0 0 0 1px var(--lime);
}

.inspiration-product img {
    width: 96px;
    height: 112px;
    object-fit: cover;
    background: var(--panel);
}

.inspiration-product span {
    min-width: 0;
    display: grid;
    gap: 0.18rem;
}

.inspiration-product small {
    color: var(--muted);
    font-size: 0.82rem;
}

.inspiration-product strong {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.15;
}

.inspiration-product em {
    font-style: normal;
    color: var(--ink);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;
    display: block;
    background: var(--panel);
    aspect-ratio: 0.86;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1rem, 2vw, 2rem);
    transition: transform 0.25s ease;
}

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

.quick-add-button {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-height: 44px;
    border: 1px solid var(--ink);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    display: grid;
    place-items: center;
    font: inherit;
    font-weight: 400;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    z-index: 2;
}

.quick-add-button:hover {
    background: #fff;
}

.product-card:hover .quick-add-button,
.product-card:focus-within .quick-add-button {
    opacity: 1;
    transform: translateY(0);
}

.save-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 16px;
    height: 23px;
    border: 2px solid #333;
    border-bottom: 0;
}

.save-icon::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -8px;
    height: 12px;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    transform: skewY(-28deg);
    transform-origin: left top;
}

.product-info {
    padding: 1rem 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
}

.product-info span {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-info h3 {
    margin: 0.12rem 0 0;
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 500;
    line-height: 1.2;
}

.product-info strong {
    margin-top: 0.12rem;
    font-weight: 400;
    white-space: nowrap;
}

.collection-page {
    max-width: var(--shop-width);
    margin: 0 auto;
    padding: 4.5rem 3vw 5rem;
}

.collection-intro {
    max-width: calc(var(--shop-width) / 2);
    margin-bottom: 2.5rem;
}

.collection-intro h1 {
    margin: 0 0 0.8rem;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: 0;
}

.collection-intro p {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.search-wrap {
    position: relative;
}

.form-control {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 0.68rem 0.82rem;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.45rem;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

select.form-control::-ms-expand {
    display: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.collection-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.filter-sidebar {
    position: sticky;
    top: 112px;
}

.filter-sidebar h2 {
    font-family: var(--serif);
    font-size: 1.65rem;
    margin: 0 0 1.5rem;
}

.filter-group {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

.filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    font-weight: 400;
    font-size: 1.08rem;
    margin-bottom: 1rem;
    text-align: left;
}

.filter-group.collapsed .filter-heading {
    margin-bottom: 0;
}

.filter-group.collapsed .filter-panel {
    display: none;
}

.filter-group.collapsed .filter-heading span {
    transform: rotate(180deg);
}

.filter-heading span {
    transition: transform 0.18s ease;
}

.filter-group a {
    display: flex;
    justify-content: space-between;
    padding: 0.48rem 0.55rem;
    color: #373737;
}

.filter-group a.selected {
    background: var(--lime);
}

.price-filter {
    display: block;
}

.price-filter .filter-panel {
    display: grid;
    gap: 0.75rem;
}

.price-filter label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.result-count {
    color: var(--muted);
    margin-top: 1.2rem;
    font-size: 0.92rem;
}

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

.collection-results {
    min-width: 0;
}

.collection-sort {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.4rem;
}

.collection-sort label {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-weight: 400;
    white-space: nowrap;
    font-size: 1.05rem;
}

.collection-sort select {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 400;
    padding: 0.1rem 1.25rem 0.1rem 0.2rem;
    cursor: pointer;
    outline: none;
}

.sort-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sort-select-wrap::after {
    content: "";
    position: absolute;
    right: 0.1rem;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    pointer-events: none;
}

.sort-select-wrap select::-ms-expand {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 3rem;
}

.pagination a {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
}

.pagination a.active {
    background: #171717;
    border-color: var(--ink);
    color: #fff;
}

.product-detail {
    max-width: var(--shop-width);
    margin: 0 auto;
    padding: 2rem 3vw 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.8fr);
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.product-gallery-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.gallery-main {
    grid-column: 1 / -1;
}

.gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-main,
.gallery-thumb {
    background: var(--panel);
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1.5rem, 5vw, 4rem);
}

.gallery-main {
    aspect-ratio: 1.08;
}

.gallery-thumb {
    aspect-ratio: 1;
    border: 1px solid transparent;
    background: var(--panel);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    border-color: var(--ink);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.product-gallery-progress {
    display: none;
}

.photo-viewer {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.82);
    display: grid;
    place-items: center;
    padding: 3rem;
}

.photo-viewer[hidden] {
    display: none;
}

.photo-viewer img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    background: var(--panel);
}

.photo-viewer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.product-purchase {
    position: sticky;
    top: 112px;
    padding-top: 0.2rem;
}

.breadcrumbs {
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.breadcrumbs span {
    margin: 0 0.45rem;
    color: #999;
}

.product-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

.product-heading p {
    margin: 0 0 0.4rem;
    color: var(--muted);
}

.product-heading h1,
.product-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.product-heading h1 {
    font-size: clamp(1.6rem, 2.3vw, 2.15rem);
}

.product-heading h2 {
    white-space: nowrap;
}

.stock-line {
    margin: 2.2rem 0 1.2rem;
    font-weight: 400;
}

.option-stack {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.product-purchase form {
    display: grid;
    gap: 0.9rem;
}

.product-purchase label {
    font-weight: 400;
}

.service-list {
    list-style: none;
    margin: 2rem 0 2.6rem;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    font-weight: 400;
}

.service-list li::after {
    content: "i";
    display: inline-grid;
    place-items: center;
    width: 15px;
    height: 15px;
    margin-left: 0.35rem;
    border: 1px solid #777;
    border-radius: 50%;
    font-size: 0.68rem;
    color: #777;
}

.product-story {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

.product-story h3 {
    margin: 0 0 0.75rem;
    font-family: var(--serif);
    font-size: 1.65rem;
    line-height: 1.15;
}

.product-story p {
    color: var(--muted);
    font-size: 1.03rem;
}

.product-follow-section {
    max-width: var(--shop-width) !important;
    margin: 0 auto;
    padding: 0 3vw 5rem !important;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

.section-heading p {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--muted);
}

.section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
}

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

.product-newsletter {
    width: 100%;
    max-width: none !important;
    margin: 0;
    padding: clamp(3.5rem, 7vw, 7rem) 3vw !important;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.product-newsletter-inner {
    width: min(720px, 100%);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 1.25rem;
}

.product-newsletter img {
    width: min(150px, 42vw);
    height: auto;
    filter: brightness(0) invert(1);
}

.newsletter-divider {
    width: min(220px, 48vw);
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.product-newsletter p {
    margin: 0;
    max-width: 560px;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.product-newsletter h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.2vw, 2rem);
    line-height: 0.98;
    font-weight: 500;
    max-width: 720px;
}

.newsletter-form {
    display: grid;
    gap: 0.8rem;
    width: min(560px, 100%);
    margin-top: 0.5rem;
    text-align: left;
}

.newsletter-form label {
    font-weight: 400;
}

.newsletter-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.newsletter-form .form-control {
    background: #fff;
}

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

.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    text-align: left;
}

.page-content > section:not(.hero-full):not(.collection-page):not(.home-feature):not(.inspiration-section):not(.checkout-page):not(.product-follow-section):not(.product-newsletter) {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 3vw 5rem;
}

.page-content > .hero-full {
    max-width: none;
    margin: 0;
    padding: 0;
}

.auth-form,
.page-content > section:not(.collection-page):not(.home-feature):not(.checkout-page) > .table {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-page {
    max-width: var(--shop-width);
    margin: 0 auto;
    padding: 3rem 3vw 5rem;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) 520px;
    gap: 3rem;
    align-items: start;
}

.checkout-form {
    display: grid;
    gap: 1.2rem;
}

.checkout-block,
.summary-card {
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.35rem;
}

.checkout-right {
    position: sticky;
    top: 112px;
}

.checkout-block h2,
.summary-card h2 {
    margin: 0 0 1rem;
    font-family: var(--serif);
    font-size: 1.7rem;
}

.block-head,
.pill-row,
.summary-head,
.summary-item,
.summary-totals div,
.discount-active {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.checkout-block label {
    display: block;
    margin: 0.85rem 0 0.35rem;
    font-weight: 400;
}

.shipping-method {
    border: 1px solid var(--line);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.shipping-method p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.shipping-method span {
    font-weight: 400;
    white-space: nowrap;
}

.checkbox {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pill-option {
    margin: 0.85rem 0 0 !important;
}

.pill-option input {
    position: absolute;
    opacity: 0;
}

.pill-card {
    border: 1px solid var(--line);
    padding: 1rem;
    cursor: pointer;
}

.pill-option input:checked + .pill-card {
    border-color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.pill-card p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.payment-logos {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.payment-logo {
    min-width: 48px;
    height: 28px;
    padding: 0 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.payment-logo.paypal {
    color: #003087;
    font-size: 0.78rem;
}

.payment-logo.klarna {
    background: #ffb3c7;
    border-color: #ffb3c7;
    color: #111;
}

.payment-logo.visa {
    color: #1434cb;
    font-style: italic;
}

.payment-logo.mastercard {
    position: relative;
    min-width: 46px;
    gap: 0;
}

.payment-logo.mastercard span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
}

.payment-logo.mastercard span:first-child {
    background: #eb001b;
}

.payment-logo.mastercard span:last-child {
    background: #f79e1b;
    margin-left: -6px;
    opacity: 0.9;
}

.payment-logo.mollie {
    color: #0a74ff;
    text-transform: lowercase;
}

.payment-logo.debit,
.payment-logo.sepa,
.payment-logo.bank {
    color: #2f4b3d;
}

.summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.summary-qty {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    font-size: 0.85rem;
    font-weight: 400;
}

.summary-info {
    flex: 1;
}

.summary-info small,
.summary-totals dd {
    color: var(--muted);
}

.discount-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.summary-totals {
    display: grid;
    gap: 0.7rem;
    margin: 1.4rem 0 0;
}

.summary-totals dt,
.summary-totals dd {
    margin: 0;
}

.summary-total {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.story-page {
    max-width: none !important;
    padding: 0 0 5rem !important;
}

.story-kicker {
    margin: 0 0 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.82rem;
    font-weight: 400;
}

.story-intro,
.story-grid,
.story-split,
.story-chalet {
    width: min(var(--shop-width), calc(100% - 6vw));
    margin-left: auto;
    margin-right: auto;
}

.story-intro {
    max-width: calc(var(--shop-width) / 2);
    padding: 4.5rem 0 3rem;
}

.story-intro h1 {
    margin: 0 0 0.8rem;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: 0;
}

.story-lead {
    margin: 0;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 1.12rem;
    line-height: 1.7;
}

.story-lead-follow {
    margin-top: 1.6rem;
}

.story-signature {
    display: block;
    width: min(150px, 42vw);
    height: auto;
    margin-top: 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.story-grid article {
    background: #fff;
    padding: 2rem;
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.story-grid span {
    color: var(--muted);
    font-size: 0.85rem;
}

.story-grid h2,
.story-chalet h2 {
    margin: 1.8rem 0 1rem;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 500;
}

.story-grid p,
.story-split p,
.story-chalet p {
    margin: auto 0 0;
    color: #4b4b45;
    line-height: 1.75;
}

.story-split {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.story-split h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 500;
}

.story-split p {
    margin: 0 0 1.2rem;
    font-size: 1.08rem;
}

.story-split p:last-child {
    margin-bottom: 0;
}

.story-chalet {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.story-chalet h2 {
    margin-top: 0;
}

.legal-page {
    max-width: 980px !important;
}

.legal-head {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.legal-head p {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 400;
}

.legal-head h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 500;
}

.legal-head span {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
}

.legal-note {
    border: 1px solid var(--line);
    background: var(--soft);
    padding: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-content {
    display: grid;
    gap: 1rem;
}

.legal-content h2 {
    margin: 2rem 0 0;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.legal-content p {
    margin: 0;
    color: #3f3f38;
    line-height: 1.75;
}

.account-page {
    max-width: var(--shop-width) !important;
}

.account-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.account-head p {
    margin: 0 0 0.6rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 400;
}

.account-head h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.98;
    font-weight: 500;
}

.account-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.account-nav a {
    border: 1px solid var(--line);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-weight: 400;
    background: #fff;
}

.account-nav a.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-block {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.35rem;
}

.account-block h2 {
    margin: 0 0 1rem;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.account-form {
    display: grid;
    gap: 0.75rem;
}

.account-form label:not(.checkbox) {
    font-weight: 400;
}

.address-list {
    display: grid;
    gap: 1rem;
}

.address-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--line);
    padding: 1rem;
}

.address-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.address-actions {
    display: grid;
    justify-items: end;
    gap: 0.7rem;
    min-width: 180px;
}

.address-actions details {
    width: min(420px, 58vw);
}

.address-actions summary {
    cursor: pointer;
    list-style: none;
    text-align: right;
    font-weight: 400;
}

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

.address-edit-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.account-orders {
    overflow-x: auto;
}

.account-orders table {
    width: 100%;
    min-width: 760px;
}

.order-modal[hidden] {
    display: none;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.order-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(760px, 90vh);
    overflow: auto;
    background: #fff;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.order-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-right: 3rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.25rem;
}

.order-modal-head p {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
}

.order-modal-head h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
}

.order-modal-head strong {
    white-space: nowrap;
    font-size: 1.2rem;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 1.25rem 0;
    background: var(--line);
    border: 1px solid var(--line);
}

.order-meta div {
    background: #fff;
    padding: 1rem;
}

.order-meta dt {
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.order-meta dd {
    margin: 0;
    font-weight: 400;
}

.order-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
    gap: 2rem;
}

.order-modal-grid h3 {
    margin: 0 0 1rem;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
}

.order-items {
    display: grid;
    gap: 0.75rem;
}

.order-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.75rem;
}

.order-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--panel);
}

.order-item span {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
}

.order-item em {
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
}

.order-address {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

footer {
    position: relative;
    min-height: 720px;
    background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.74)), url("../images/footer-bg.png") center / cover no-repeat;
    color: #fff;
    padding: 5.5rem 3vw 3rem;
    overflow: hidden;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1780px;
    min-height: 610px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-inner h2 {
    margin: 0 0 5rem;
    font-family: var(--serif);
    font-size: clamp(4rem, 9vw, 10.5rem);
    line-height: 0.9;
    font-weight: 500;
}

.footer-inner h2 em {
    font-style: italic;
    font-weight: 400;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: clamp(1.5rem, 4vw, 5rem);
    align-items: start;
}

.footer-grid h4 {
    margin: 0 0 1.8rem;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 1.6vw, 2rem);
    font-weight: 500;
}

.footer-links {
    display: grid;
    gap: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.98rem, 1vw, 1.15rem);
    font-weight: 300;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: auto;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 40;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: min(-860px, -100%);
    width: min(860px, 100%);
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 50;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0 1.8rem;
}

.cart-drawer-header p {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 1rem;
    align-items: start;
}

.cart-line img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    background: var(--panel);
    padding: 0.55rem;
}

.cart-line h4 {
    margin: 0 0 0.18rem;
    font-family: var(--serif);
    font-size: 1.2rem;
}

.cart-line small {
    display: block;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.cart-line p {
    margin: 0.15rem 0 0.6rem;
}

.cart-line-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cart-line-controls button,
.cart-line-controls input {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    background: var(--soft);
    text-align: center;
    font: inherit;
}

.cart-drawer-footer {
    border-top: 1px solid var(--line);
    padding: 1.4rem 1.8rem 1.8rem;
    display: grid;
    gap: 1rem;
}

.cart-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 400;
}

.apple-pay {
    background: #000;
    color: #fff;
    border-color: #000;
}

.checkout-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.suggestions {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.suggestions a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
}

.suggestions a:last-child {
    border-bottom: 0;
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.92rem;
    }

    .collection-layout,
    .product-detail,
    .home-feature,
    .inspiration-layout,
    .checkout-page {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .filter-sidebar h2,
    .result-count {
        grid-column: 1 / -1;
    }

    .product-purchase {
        position: static;
    }

    .checkout-right {
        position: static;
    }
}

@media (max-width: 900px) {
    .announcement-bar {
        font-size: 0.88rem;
        padding: 0.82rem 1rem;
    }

    .announcement-extra {
        display: none;
    }

    .nav-wrapper {
        min-height: 74px;
        justify-content: space-between;
        padding: 0 1.35rem;
        gap: 1rem;
    }

    .site-header.header-hidden {
        transform: none;
    }

    .site-header {
        border-bottom: 0;
    }

    .logo img {
        width: clamp(145px, 38vw, 180px);
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 1.4rem;
    }

    .mobile-menu-button {
        display: block;
    }

    .search-button {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        border-width: 2px;
    }

    .search-button::after {
        width: 12px;
        height: 2px;
        right: -8px;
        bottom: 1px;
    }

    .account-link {
        display: none;
    }

    .bag-button {
        width: 28px;
        height: 31px;
    }

    .bag-icon {
        inset: 8px 3px 2px;
        border-width: 2px;
    }

    .bag-icon::before {
        left: 5px;
        top: -8px;
        width: 9px;
        height: 9px;
        border-width: 2px;
    }

    .badge {
        top: -10px;
        right: -13px;
    }

    .hero-full {
        height: calc(100vh - 38px);
    }

    .hero-content {
        width: 100%;
        padding: 0 1.35rem 3rem;
    }

    .products-grid,
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .inspiration-section {
        padding: 3.5rem 1.25rem 0;
    }

    .inspiration-image-wrap {
        height: 62vh;
        min-height: 420px;
    }

    .collection-page {
        padding: 3rem 1.25rem;
    }

    .filter-sidebar {
        grid-template-columns: 1fr;
    }

    .collection-sort {
        justify-content: flex-start;
    }

    .product-detail {
        padding: 0 0 3rem;
        gap: 2rem;
    }

    .product-gallery {
        position: relative;
        border-bottom: 1px solid #c9c9ce;
    }

    .product-gallery-track {
        display: flex;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .product-gallery-track::-webkit-scrollbar {
        display: none;
    }

    .gallery-main,
    .gallery-thumb {
        flex: 0 0 100%;
        width: 100%;
        aspect-ratio: 0.82;
        scroll-snap-align: start;
        border: 0;
        background: #fff;
    }

    .gallery-main a,
    .gallery-thumb {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .gallery-main img,
    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.15rem 1.35rem clamp(2rem, 10vw, 4rem);
    }

    .product-gallery-progress {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #d0d0d5;
        pointer-events: none;
        z-index: 2;
    }

    .product-gallery-progress span {
        display: block;
        width: calc(100% / var(--gallery-slide-count, 1));
        height: 4px;
        background: #202020;
        transform: translateX(calc(var(--gallery-active-position, 0) * 100%));
        transform-origin: left center;
    }

    .product-purchase {
        padding: 0 1.25rem;
    }

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

    footer {
        min-height: auto;
        padding: 4rem 1.25rem 2.5rem;
    }

    .footer-inner {
        min-height: 0;
    }

    .footer-inner h2 {
        margin-bottom: 3rem;
    }

    .story-intro,
    .story-grid,
    .story-split,
    .story-chalet {
        width: calc(100% - 2.5rem);
    }

    .story-grid,
    .story-split,
    .story-chalet {
        grid-template-columns: 1fr;
    }

    .cart-drawer {
        width: 100%;
    }

    .checkout-options {
        grid-template-columns: 1fr;
    }

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

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

    .account-head,
    .address-card {
        display: grid;
    }

    .address-actions {
        justify-items: start;
        width: 100%;
    }

    .address-actions details {
        width: 100%;
    }

    .address-actions summary {
        text-align: left;
    }

    .order-modal-grid,
    .order-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .logo {
        max-width: 135px;
    }

    .account-link {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .products-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-product {
        grid-template-columns: 82px 1fr;
    }

    .inspiration-product img {
        width: 82px;
        height: 96px;
    }

    .product-heading {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .cart-line {
        grid-template-columns: 94px 1fr auto;
    }

    .cart-line img {
        width: 94px;
        height: 94px;
    }

    .recently-viewed-grid {
        grid-template-columns: 1fr;
    }

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

    .order-modal {
        padding: 0;
    }

    .order-modal-panel {
        width: 100%;
        min-height: 100vh;
        max-height: 100vh;
    }

    .order-modal-head,
    .order-item {
        display: grid;
        gap: 0.75rem;
    }

    .order-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .order-item em {
        grid-column: 2;
    }
}
