:root {
    --saenea-prune: #4a2e3a;
    --saenea-nude: #f2e7e3;
    --saenea-terracotta: #c56a56;
    --saenea-sage: #a8b5a2;
    --saenea-ivory: #faf7f2;
    --saenea-ink: #2b2025;
    --saenea-muted: #7a6870;
    --saenea-line: rgba(74, 46, 58, 0.14);
    --saenea-shadow: 0 18px 55px rgba(74, 46, 58, 0.12);
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 210px;
}

body {
    margin: 0;
    background: var(--saenea-ivory);
    color: var(--saenea-ink);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.shop-nav-open {
    overflow: hidden;
}

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

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

.shop-shell {
    min-height: 100vh;
    overflow: clip;
}

.shop-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--saenea-line);
    background: rgba(250, 247, 242, 0.98);
    transition: box-shadow 180ms ease;
}

.shop-header.is-scrolled {
    box-shadow: 0 10px 40px rgba(74, 46, 58, 0.08);
    backdrop-filter: blur(18px);
}

.shop-announcement {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 46px;
    padding-inline: clamp(20px, 5vw, 72px);
    background: #1d1d1d;
    color: var(--saenea-ivory);
}

.shop-announcement p {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.shop-announcement span {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
    opacity: 0.78;
}

.shop-announcement span:first-child {
    justify-self: end;
    transform: rotate(-45deg);
}

.shop-announcement span:last-child {
    justify-self: start;
    transform: rotate(135deg);
}

.impersonation-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px clamp(20px, 5vw, 72px);
    border-bottom: 1px solid rgba(74, 46, 58, 0.14);
    background: rgba(168, 181, 162, 0.3);
    color: var(--saenea-prune);
}

.impersonation-banner__content {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.impersonation-banner span {
    color: #52624c;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.impersonation-banner strong {
    overflow-wrap: anywhere;
    font-size: 14px;
}

.impersonation-banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(74, 46, 58, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.72);
    color: var(--saenea-prune);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.impersonation-banner a:hover,
.impersonation-banner a:focus-visible {
    border-color: rgba(197, 106, 86, 0.38);
    box-shadow: 0 0 0 3px rgba(197, 106, 86, 0.2);
    outline: none;
}

.shop-header__main {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(260px, 640px) minmax(260px, 1fr) auto;
    gap: clamp(18px, 3vw, 42px);
    align-items: center;
    min-height: 92px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: var(--saenea-ivory);
}

.shop-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    width: fit-content;
    min-width: 0;
}

.shop-brand__name {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--saenea-prune);
    font-size: 44px;
    font-style: italic;
    line-height: 0.95;
}

.shop-brand__baseline {
    color: var(--saenea-terracotta);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-search {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    border: 1px solid rgba(74, 46, 58, 0.44);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.shop-search::before {
    display: block;
    width: 14px;
    height: 14px;
    margin-left: 22px;
    border: 1.8px solid var(--saenea-sage);
    border-radius: 50%;
    content: "";
}

.shop-search::after {
    position: absolute;
    left: 35px;
    width: 7px;
    height: 1.8px;
    background: var(--saenea-sage);
    content: "";
    transform: translate(6px, 8px) rotate(45deg);
}

.shop-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.shop-search input {
    min-width: 0;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: var(--saenea-prune);
    font: inherit;
}

.shop-search input::placeholder {
    color: rgba(74, 46, 58, 0.58);
    font-style: italic;
}

.shop-search input:focus {
    outline: none;
}

.shop-search:focus-within {
    border-color: var(--saenea-prune);
    box-shadow: 0 0 0 3px rgba(168, 181, 162, 0.24);
}

.shop-search button {
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.shop-search--filters {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(140px, 0.42fr) minmax(96px, 0.28fr) minmax(96px, 0.28fr) auto;
    gap: 8px;
    align-items: center;
    max-width: 820px;
    padding: 6px 8px 6px 42px;
    border-radius: 8px;
}

.shop-search--filters input {
    height: 44px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
}

.shop-search--filters button {
    width: auto;
    height: 44px;
    min-width: 104px;
    overflow: visible;
    padding: 0 18px;
    border: 1px solid var(--saenea-prune);
    border-radius: 999px;
    background: var(--saenea-prune);
    clip: auto;
    color: var(--saenea-ivory);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.shop-primary-nav {
    position: relative;
    display: flex;
    gap: clamp(12px, 1.5vw, 26px);
    align-items: center;
    min-height: 58px;
    padding: 0 clamp(20px, 5vw, 72px);
    border-top: 1px solid var(--saenea-line);
    background: var(--saenea-ivory);
    color: var(--saenea-prune);
    font-size: 13px;
    font-weight: 700;
}

.shop-nav-item {
    position: relative;
}

.shop-nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 58px;
    white-space: nowrap;
    text-transform: uppercase;
}

.shop-nav-item > a.is-featured {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--saenea-nude);
}

.shop-nav-item > a.is-quiz {
    color: #4f8277;
}

.shop-nav-item > a span {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
}

.shop-mega {
    position: fixed;
    right: clamp(20px, 5vw, 72px);
    left: clamp(20px, 5vw, 72px);
    top: 196px;
    z-index: 21;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.shop-nav-item:hover .shop-mega,
.shop-nav-item:focus-within .shop-mega,
.shop-nav-item.is-mega-open .shop-mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.shop-nav-item.is-mega-open > a {
    color: var(--saenea-terracotta);
}

.shop-mega__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr)) minmax(220px, 0.8fr);
    gap: 26px;
    padding: 28px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(250, 247, 242, 0.98);
    box-shadow: var(--saenea-shadow);
}

.shop-mega h2 {
    margin: 0 0 14px;
    color: var(--saenea-terracotta);
    font-size: 12px;
    text-transform: uppercase;
}

.shop-mega section,
.shop-mega aside {
    display: grid;
    align-content: start;
    gap: 10px;
}

.shop-mega a {
    color: var(--saenea-prune);
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.shop-mega aside {
    padding: 20px;
    border-radius: 8px;
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-mega aside p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.1;
}

.shop-mega aside a {
    color: inherit;
    font-size: 13px;
    text-transform: uppercase;
}

.shop-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.shop-link {
    color: var(--saenea-prune);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-icon-link {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--saenea-prune);
}

.shop-icon {
    position: relative;
    display: block;
}

.shop-icon--account {
    width: 19px;
    height: 19px;
    border: 1.8px solid currentColor;
    border-radius: 50%;
}

.shop-icon--account::after {
    position: absolute;
    right: -7px;
    bottom: -10px;
    left: -7px;
    height: 12px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    content: "";
}

.shop-icon--bag {
    width: 20px;
    height: 21px;
    border: 1.8px solid currentColor;
    border-radius: 3px;
}

.shop-icon--bag::before {
    position: absolute;
    top: -8px;
    left: 4px;
    width: 8px;
    height: 8px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    content: "";
}

.shop-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--saenea-prune);
    border-radius: 999px;
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.shop-button:hover,
.shop-button:focus-visible {
    transform: translateY(-1px);
    background: var(--saenea-terracotta);
    border-color: var(--saenea-terracotta);
}

.shop-button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.shop-button--small {
    min-height: 42px;
    padding-inline: 18px;
}

.shop-button--ghost {
    background: rgba(250, 247, 242, 0.76);
    color: var(--saenea-prune);
}

.shop-button--light {
    background: var(--saenea-ivory);
    color: var(--saenea-prune);
    border-color: var(--saenea-ivory);
}

.shop-flash-stack {
    display: grid;
    gap: 10px;
    width: min(1180px, calc(100% - 40px));
    margin: 22px auto 0;
}

.shop-alert {
    padding: 14px 16px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.9);
    color: var(--saenea-prune);
    font-weight: 800;
}

.shop-alert--success {
    border-color: rgba(117, 139, 104, 0.24);
    background: rgba(168, 181, 162, 0.22);
}

.shop-alert--danger {
    border-color: rgba(197, 106, 86, 0.24);
    background: rgba(197, 106, 86, 0.12);
    color: #8e3d2e;
}

.shop-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--saenea-prune);
    border-radius: 50%;
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 160ms ease;
}

.shop-nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.shop-nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.shop-hero {
    position: relative;
    display: grid;
    min-height: 92vh;
    padding: 72px clamp(20px, 5vw, 72px);
    isolation: isolate;
}

.shop-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(250, 247, 242, 0.96) 0%, rgba(250, 247, 242, 0.86) 38%, rgba(250, 247, 242, 0.32) 66%), url("../images/shop/saenea-wellness-hero.webp");
    background-position: center;
    background-size: cover;
}

.shop-hero__image::after {
    position: absolute;
    inset: auto 0 0;
    height: 22%;
    background: linear-gradient(180deg, rgba(250, 247, 242, 0), var(--saenea-ivory));
    content: "";
}

.shop-hero__content {
    align-self: center;
    width: min(680px, 100%);
    padding-block: 32px;
}

.shop-eyebrow {
    margin: 0 0 14px;
    color: var(--saenea-terracotta);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-hero h1 {
    margin: 0;
    color: var(--saenea-prune);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(78px, 12vw, 164px);
    font-style: italic;
    font-weight: 500;
    line-height: 0.88;
}

.shop-hero__claim {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--saenea-prune);
    font-size: clamp(28px, 4vw, 58px);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.shop-hero__claim span {
    display: block;
}

.shop-hero__text {
    max-width: 560px;
    margin: 22px 0 0;
    color: #4e3f45;
    font-size: clamp(17px, 2vw, 21px);
}

.shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.shop-section {
    padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.shop-section__heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 34px;
}

.shop-section__heading--wide {
    max-width: 980px;
}

.shop-section__heading h2,
.shop-brand-panel h2,
.shop-quiz h2 {
    margin: 0;
    color: var(--saenea-prune);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
}

.shop-section__heading p:last-child,
.shop-brand-panel p,
.shop-quiz p {
    margin: 0;
    color: var(--saenea-muted);
    font-size: 17px;
}

.shop-section--intro {
    padding-top: 32px;
}

.shop-intro-grid,
.shop-cycle-list,
.shop-catalog-grid,
.shop-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shop-intro-grid article,
.shop-cycle-card,
.shop-journal-grid article {
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.42);
}

.shop-intro-grid span {
    color: var(--saenea-terracotta);
    font-size: 13px;
    font-weight: 900;
}

.shop-intro-grid h3,
.shop-cycle-card h3,
.shop-product-card h3,
.shop-journal-grid h3 {
    margin: 14px 0 10px;
    color: var(--saenea-prune);
    font-size: 22px;
    line-height: 1.15;
}

.shop-intro-grid p,
.shop-cycle-card p,
.shop-product-card__need {
    margin: 0;
    color: var(--saenea-muted);
}

.shop-cycle-list {
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
}

.shop-cycle-card {
    min-height: 190px;
    background: var(--saenea-nude);
    scroll-snap-align: start;
}

.shop-cycle-card:nth-child(2n) {
    background: rgba(168, 181, 162, 0.34);
}

.shop-section--catalog-preview {
    background: linear-gradient(180deg, rgba(242, 231, 227, 0.52), rgba(250, 247, 242, 0));
}

.shop-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.shop-product-card {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.86);
    box-shadow: 0 14px 40px rgba(74, 46, 58, 0.08);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.shop-product-card:hover,
.shop-product-card:focus-within {
    border-color: rgba(74, 46, 58, 0.26);
    box-shadow: 0 20px 54px rgba(74, 46, 58, 0.13);
    transform: translateY(-2px);
}

.shop-product-card > a {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.shop-product-card__media {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: var(--saenea-nude);
}

.shop-product-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(74, 46, 58, 0.02), rgba(74, 46, 58, 0.08));
    content: "";
    pointer-events: none;
}

.shop-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.shop-product-card:hover .shop-product-card__media img,
.shop-product-card:focus-within .shop-product-card__media img {
    transform: scale(1.035);
}

.shop-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(250, 247, 242, 0.88);
    color: var(--saenea-prune);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-product-card--sage .shop-product-card__media {
    background: rgba(168, 181, 162, 0.52);
}

.shop-product-card--terracotta .shop-product-card__media {
    background: rgba(197, 106, 86, 0.28);
}

.shop-product-card--prune .shop-product-card__media {
    background: rgba(74, 46, 58, 0.14);
}

.shop-product-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
}

.shop-product-card__brand {
    margin: 0;
    color: var(--saenea-terracotta);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-product-card__body h2,
.shop-product-card__body h3 {
    margin: 0;
    font-size: 21px;
}

.shop-product-card__brand-link {
    display: block;
    margin-top: 3px;
    color: var(--saenea-muted);
    font-size: 10px;
}

.shop-product-card__seller-link {
    align-self: start;
    justify-self: start;
    margin: 0 16px;
    color: var(--saenea-terracotta);
    font-size: 12px;
    font-weight: 900;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 3px;
}

.shop-product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
    margin-top: 6px;
}

.shop-product-card strong {
    color: var(--saenea-prune);
    font-size: 18px;
}

.shop-product-card__meta span {
    color: var(--saenea-muted);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.shop-product-card button {
    min-height: 46px;
    margin: 0 16px 16px;
    border: 1px solid rgba(74, 46, 58, 0.2);
    border-radius: 999px;
    background: transparent;
    color: var(--saenea-prune);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.shop-product-card button:hover,
.shop-product-card button:focus-visible {
    border-color: var(--saenea-prune);
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-empty-state {
    display: grid;
    justify-items: start;
    gap: 18px;
    max-width: 640px;
    padding: 28px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.72);
}

.shop-empty-state p {
    margin: 0;
    color: var(--saenea-muted);
}

.shop-account-grid {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.shop-account-nav {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.72);
}

.shop-account-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    color: var(--saenea-prune);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.shop-account-nav a.is-active,
.shop-account-nav a:hover,
.shop-account-nav a:focus-visible {
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-account-panel {
    min-width: 0;
}

.shop-order-list {
    display: grid;
    gap: 14px;
}

.shop-order-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.84);
}

.shop-order-card h2 {
    margin: 0 0 8px;
    color: var(--saenea-prune);
    font-family: var(--saenea-serif);
    font-size: 28px;
    line-height: 1;
}

.shop-order-card p {
    margin: 0;
    color: var(--saenea-muted);
}

.shop-order-card__meta {
    display: grid;
    gap: 8px;
    justify-items: end;
    text-align: right;
}

.shop-order-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid var(--saenea-line);
    border-radius: 999px;
    color: var(--saenea-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-order-card__meta strong {
    color: var(--saenea-prune);
    font-size: 20px;
}

.shop-offer-view {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.shop-offer-view__media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--saenea-nude);
    box-shadow: var(--saenea-shadow);
}

.shop-offer-view__media img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
}

.shop-offer-view__content {
    display: grid;
    gap: 20px;
}

.shop-offer-view__content h1 {
    margin: 0;
    color: var(--saenea-prune);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.02;
}

.shop-offer-view__brand-link {
    justify-self: start;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.shop-offer-view__category,
.shop-offer-view__description {
    margin: 0;
    color: var(--saenea-muted);
    font-size: 17px;
}

.shop-offer-view__purchase {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: baseline;
    padding-block: 10px;
}

.shop-offer-view__purchase strong {
    color: var(--saenea-prune);
    font-size: 28px;
}

.shop-offer-view__purchase span {
    color: var(--saenea-muted);
    font-size: 14px;
    font-weight: 800;
}

.shop-offer-view__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.shop-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.shop-add-to-cart label {
    color: var(--saenea-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-add-to-cart input {
    width: 86px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid var(--saenea-line);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.8);
    color: var(--saenea-prune);
    font-weight: 900;
}

.shop-cart {
    display: grid;
    gap: 32px;
}

.shop-cart__header {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.shop-cart__header h1 {
    margin: 0;
    color: var(--saenea-prune);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 9vw, 112px);
    font-weight: 500;
    line-height: 0.96;
}

.shop-cart__header p,
.shop-cart-empty p {
    margin: 0;
    color: var(--saenea-muted);
    font-size: 17px;
}

.shop-cart-empty {
    display: grid;
    gap: 16px;
    justify-items: start;
    max-width: 580px;
    padding: 28px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.72);
}

.shop-cart-empty h2 {
    margin: 0;
    color: var(--saenea-prune);
}

.shop-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
    gap: 24px;
    align-items: start;
}

.shop-cart-lines,
.shop-cart-seller,
.shop-cart-summary {
    display: grid;
    gap: 16px;
}

.shop-cart-seller,
.shop-cart-summary {
    padding: 22px;
    border: 1px solid var(--saenea-line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.72);
}

.shop-cart-seller__title,
.shop-cart-line,
.shop-cart-seller__subtotal,
.shop-cart-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.shop-cart-seller__title h2,
.shop-cart-summary h2 {
    margin: 0;
    color: var(--saenea-prune);
}

.shop-cart-seller__title span,
.shop-cart-line span,
.shop-cart-seller__subtotal span,
.shop-cart-summary dt {
    color: var(--saenea-muted);
    font-size: 13px;
    font-weight: 800;
}

.shop-cart-line {
    padding-block: 14px;
    border-top: 1px solid var(--saenea-line);
}

.shop-cart-line div {
    display: grid;
    gap: 5px;
}

.shop-cart-line a {
    color: var(--saenea-prune);
    font-weight: 900;
}

.shop-cart-line strong,
.shop-cart-seller__subtotal strong,
.shop-cart-summary dd {
    margin: 0;
    color: var(--saenea-prune);
    font-weight: 900;
}

.shop-cart-summary dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.shop-checkout-form {
    display: grid;
    gap: 10px;
}

.shop-checkout-form label {
    color: var(--saenea-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-checkout-form input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--saenea-line);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.8);
    color: var(--saenea-prune);
    font-weight: 900;
}

.shop-section--brand {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
    gap: 24px;
    align-items: stretch;
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-brand-panel {
    display: grid;
    gap: 18px;
    align-content: center;
    max-width: 780px;
}

.shop-brand-panel h2,
.shop-brand-panel p,
.shop-brand-panel .shop-eyebrow {
    color: inherit;
}

.shop-brand-list {
    display: grid;
    gap: 12px;
    align-content: center;
}

.shop-brand-list span {
    display: block;
    padding: 18px 20px;
    border: 1px solid rgba(250, 247, 242, 0.28);
    border-radius: 8px;
    background: rgba(250, 247, 242, 0.08);
    font-weight: 800;
}

.shop-section--journal {
    background: var(--saenea-nude);
}

.shop-journal-grid article {
    min-height: 260px;
    background: var(--saenea-ivory);
}

.shop-journal-grid p {
    margin: 0;
    color: var(--saenea-terracotta);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-quiz {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background: rgba(168, 181, 162, 0.34);
}

.shop-quiz > div {
    max-width: 780px;
}

.shop-footer {
    display: grid;
    gap: 54px;
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) 32px;
    background: var(--saenea-prune);
    color: var(--saenea-ivory);
}

.shop-footer__signature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(28px, 6vw, 96px);
    align-items: end;
}

.shop-footer__signature .shop-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -18px;
    color: var(--saenea-terracotta);
}

.shop-footer__signature h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(82px, 16vw, 220px);
    font-style: italic;
    font-weight: 500;
    line-height: 0.82;
}

.shop-footer__signature > p {
    max-width: 610px;
    margin: 0;
    color: rgba(250, 247, 242, 0.78);
    font-size: clamp(19px, 2.4vw, 30px);
    line-height: 1.2;
}

.shop-footer__proofs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(250, 247, 242, 0.18);
    border-radius: 8px;
    overflow: hidden;
}

.shop-footer__proofs span {
    display: block;
    padding: 18px 20px;
    background: rgba(250, 247, 242, 0.08);
    color: rgba(250, 247, 242, 0.88);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-footer__content {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr)) minmax(280px, 1.1fr);
    gap: clamp(24px, 4vw, 58px);
    padding-top: 8px;
}

.shop-footer nav,
.shop-footer__newsletter {
    display: grid;
    align-content: start;
    gap: 12px;
}

.shop-footer h3 {
    margin: 0 0 8px;
    color: var(--saenea-sage);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-footer a {
    color: rgba(250, 247, 242, 0.82);
    font-size: 15px;
    font-weight: 800;
}

.shop-footer a:hover,
.shop-footer a:focus-visible {
    color: var(--saenea-ivory);
}

.shop-footer__newsletter p {
    margin: 0;
    color: rgba(250, 247, 242, 0.72);
}

.shop-footer__newsletter form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 8px;
}

.shop-footer__newsletter label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.shop-footer__newsletter input {
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(250, 247, 242, 0.24);
    border-radius: 999px;
    background: rgba(250, 247, 242, 0.08);
    color: var(--saenea-ivory);
    font: inherit;
}

.shop-footer__newsletter input::placeholder {
    color: rgba(250, 247, 242, 0.54);
}

.shop-footer__newsletter input:focus {
    outline: 2px solid rgba(168, 181, 162, 0.58);
    outline-offset: 2px;
}

.shop-footer__newsletter button {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: var(--saenea-ivory);
    color: var(--saenea-prune);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.shop-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid rgba(250, 247, 242, 0.16);
    color: rgba(250, 247, 242, 0.62);
    font-size: 13px;
}

.shop-footer__bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-footer__bottom a {
    color: inherit;
    font-size: 13px;
}

@media (max-width: 1180px) {
    html {
        scroll-padding-top: 178px;
    }

    .shop-header__main {
        grid-template-columns: minmax(0, 1fr) 46px;
        gap: 14px;
        min-height: 84px;
    }

    .shop-search {
        grid-column: 1 / -1;
        order: 3;
        min-height: 48px;
    }

    .shop-nav-toggle {
        display: block;
        justify-self: end;
    }

    .shop-primary-nav {
        position: fixed;
        inset: 144px 16px auto;
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        padding: 14px;
        border: 1px solid var(--saenea-line);
        border-radius: 8px;
        background: var(--saenea-ivory);
        box-shadow: var(--saenea-shadow);
    }

    .shop-primary-nav.is-open {
        display: flex;
    }

    .shop-nav-item > a,
    .shop-nav-item > a.is-featured {
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        border-radius: 6px;
    }

    .shop-mega {
        display: none;
    }

    .shop-actions {
        display: none;
    }

    .shop-section--brand,
    .shop-offer-view,
    .shop-account-grid,
    .shop-cart-layout,
    .shop-quiz {
        grid-template-columns: 1fr;
    }

    .shop-catalog-grid,
    .shop-intro-grid,
    .shop-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-footer__signature {
        grid-template-columns: 1fr;
    }

    .shop-footer__signature .shop-eyebrow {
        margin-bottom: 0;
    }

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

@media (max-width: 720px) {
    html {
        scroll-padding-top: 154px;
    }

    .shop-announcement {
        min-height: 38px;
        gap: 14px;
        padding-inline: 18px;
    }

    .shop-announcement p {
        font-size: 11px;
    }

    .impersonation-banner {
        align-items: flex-start;
        flex-direction: column;
        padding-inline: 18px;
    }

    .shop-header__main {
        min-height: 76px;
        padding: 14px 18px;
    }

    .shop-brand__name {
        font-size: 32px;
    }

    .shop-brand__baseline {
        max-width: 168px;
        font-size: 9px;
        line-height: 1.2;
    }

    .shop-search {
        min-height: 46px;
    }

    .shop-search--filters {
        grid-template-columns: 1fr;
        padding: 44px 10px 10px;
    }

    .shop-search--filters::before {
        position: absolute;
        top: 17px;
        left: 0;
    }

    .shop-search--filters::after {
        top: 17px;
    }

    .shop-search input {
        height: 44px;
    }

    .shop-primary-nav {
        inset: 130px 12px auto;
    }

    .shop-hero {
        min-height: 88vh;
        padding: 54px 20px 46px;
    }

    .shop-hero__image {
        background-image: linear-gradient(180deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.86) 46%, rgba(250, 247, 242, 0.46) 100%), url("../images/shop/saenea-wellness-hero.webp");
        background-position: 58% center;
    }

    .shop-hero h1 {
        font-size: clamp(70px, 24vw, 108px);
    }

    .shop-hero__content,
    .shop-hero__claim,
    .shop-hero__text {
        width: 100%;
        max-width: min(340px, calc(100vw - 40px));
    }

    .shop-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-button {
        max-width: 100%;
        width: min(340px, 100%);
        padding-inline: 18px;
    }

    .shop-section {
        padding: 54px 20px;
    }

    .shop-catalog-grid,
    .shop-intro-grid,
    .shop-journal-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-card__media {
        min-height: 200px;
    }

    .shop-offer-view__content h1 {
        font-size: 42px;
    }

    .shop-offer-view__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-add-to-cart {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-add-to-cart input {
        width: 100%;
    }

    .shop-footer {
        gap: 36px;
        padding: 54px 20px 28px;
    }

    .shop-footer__signature,
    .shop-footer__proofs,
    .shop-footer__content,
    .shop-footer__newsletter form {
        grid-template-columns: 1fr;
    }

    .shop-footer__signature h2 {
        font-size: clamp(72px, 28vw, 112px);
    }

    .shop-footer__newsletter button {
        width: 100%;
    }

    .shop-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-cycle-list {
        grid-template-columns: repeat(6, minmax(230px, 76vw));
    }

    .shop-product-card {
        min-height: 0;
    }

    .shop-order-card {
        grid-template-columns: 1fr;
    }

    .shop-order-card__meta {
        justify-items: start;
        text-align: left;
    }

    .shop-brand-list span {
        padding: 16px;
    }
}

