@font-face {
    font-family: "Monument Extended";
    src: url("../fonts/MONUMENTEXTENDED-REGULAR.OTF") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-ink: #f0f0f0;
    --color-ink-soft: rgba(255, 255, 255, 0.55);
    --color-paper: #2D2A26;
    --color-surface: #131313;
    --color-surface-strong: #1a1a1a;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-pink: #FE3988;
    --color-olive: #9ba829;
    --color-yellow: #EAEF65;
    --color-blue: #3BCCC2;
    --color-success: #0f9d73;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.4);
    --radius-sm: 0.9rem;
    --radius-md: 1.4rem;
    --radius-lg: 2rem;
    --site-max: 1240px;
    --font-display: "Monument Extended", "Arial Narrow", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.kema-body {
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    color: var(--color-ink);
    background: #f3ede3;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

input,
textarea,
select,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    background: var(--color-surface-strong);
    padding: 0.95rem 1rem;
    color: var(--color-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(254, 57, 136, 0.55);
    box-shadow: 0 0 0 4px rgba(254, 57, 136, 0.12);
}

/* ── Layout ── */

.site-container {
    width: min(calc(100% - 2rem), var(--site-max));
    margin: 0 auto;
}

.site-shell {
    min-height: 55vh;
}

.site-main {
    padding-bottom: 0;
    background: #f3ede3;
}

.site-section {
    padding: 1.8rem 0;
}

.page-flashes {
    width: min(calc(100% - 2rem), var(--site-max));
    margin: 0 auto;
    padding-top: 1rem;
}

.page-flashes .alert {
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 1rem 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    color: #111;
    background: rgba(255, 255, 255, 0.96);
}

.page-flashes .alert-success {
    border-color: rgba(15, 157, 115, 0.22);
    background: rgba(15, 157, 115, 0.1);
}

.page-flashes .alert-danger {
    border-color: rgba(254, 57, 136, 0.22);
    background: rgba(254, 57, 136, 0.1);
}

.page-flashes .btn-close {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 15, 11, 0.08);
    color: #111;
    cursor: pointer;
}

.page-flashes .btn-close::before {
    content: "×";
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

/* ── Top bar (marquee) ── */

.site-topbar {
    background: var(--color-pink);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    overflow: hidden;
}

.site-topbar__track {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
    will-change: transform;
}

.site-topbar__group {
    display: flex;
    flex: 0 0 auto;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    padding: 0.5rem clamp(1.4rem, 3vw, 2.4rem) 0.5rem 0;
}

.site-topbar__group span {
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.impersonation-bar {
    background: var(--color-yellow);
    color: #111;
}

.impersonation-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

/* ── Header ── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #f3ede3;
    border-bottom: 0;
}

.site-header__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.site-logo__img {
    height: clamp(2rem, 3.5vw, 2.8rem);
    width: auto;
    filter: brightness(0);
}

.site-logo__tag {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
    display: none;
}

.site-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 18, 16, 0.12);
    box-shadow: 0 10px 24px rgba(17, 15, 11, 0.08);
}

.site-search input {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.55rem 0.9rem;
    color: #111;
}

.site-search input::placeholder {
    color: rgba(17, 17, 17, 0.42);
}

.site-search button {
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    background: var(--color-pink);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s;
}

.site-search button:hover {
    filter: brightness(1.15);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-actions a {
    text-decoration: none;
    color: rgba(17, 17, 17, 0.72);
    transition: color 0.2s;
}

.site-actions a:hover {
    color: #111;
}

.site-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
}

.site-cart-link--desktop {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--color-pink);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(254, 57, 136, 0.2);
}

.site-cart-link--desktop:hover {
    background: #111;
    color: #fff !important;
}

.site-cart-link--mobile {
    display: none;
}

.site-cart-link__icon {
    width: 1.45rem;
    height: 1.45rem;
}

.site-action-link--accent {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(17, 15, 11, 0.12);
}

.site-action-link--accent:hover {
    background: var(--color-pink);
    color: #fff;
}

.site-cart-link__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.55rem;
    height: 1.55rem;
    margin-left: 0.25rem;
    border-radius: 999px;
    background: var(--color-pink);
    color: #fff;
    font-size: 0.82rem;
}

.site-cart-link--desktop .site-cart-link__count {
    background: #fff;
    color: var(--color-pink);
}

.site-header__toggle,
.site-header__mobile-panel {
    display: none;
}

.site-header__toggle {
    appearance: none;
    border: 1px solid rgba(17, 15, 11, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(17, 15, 11, 0.08);
    width: 3rem;
    height: 3rem;
    padding: 0;
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.24rem auto;
    background: #111;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__mobile-panel {
    padding: 0 0 1rem;
}

.site-header__mobile-panel[hidden] {
    display: none !important;
}

.site-search--mobile,
.site-actions--mobile,
.site-nav--mobile {
    display: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: calc(0.78rem + 5px) 0 calc(0.82rem + 5px);
    background: var(--color-yellow);
    box-shadow: 0 0 0 100vmax var(--color-yellow);
    clip-path: inset(0 -100vmax);
}

.site-nav__link {
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(0.76rem, 1.05vw, 0.95rem);
    letter-spacing: 0.02em;
    line-height: 1;
    color: #111;
    padding-right: 0.5rem;
    transition: color 0.2s, opacity 0.2s;
}

.site-nav__link + .site-nav__link {
    border-left: 2px solid #111;
    padding-left: 0.5rem;
}

.site-nav__link:hover {
    color: var(--color-pink);
}

/* ── Hero slider ── */

.hero-slider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.home-slider {
    height: clamp(420px, 62vw, 760px);
}

.hero-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-slider__slide {
    flex: 0 0 100%;
    height: 100%;
    min-height: 100%;
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
}

.hero-slider__slide picture {
    display: block;
    height: 100%;
    min-height: 100%;
}

.hero-slider__slide img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
}

.hero-slider__slide picture source[media="(max-width: 768px)"] + img,
.hero-slider__slide picture img {
    min-height: 100%;
    object-fit: cover;
}

.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
}

.hero-slider__nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: #fff;
}

.hero-slider__nav--prev { left: 1rem; }
.hero-slider__nav--next { right: 1rem; }

.hero-slider__dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(17, 15, 11, 0.2);
    backdrop-filter: blur(6px);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-slider__dot.is-active {
    background: #fff;
    border-color: #fff;
}

/* ── Home slider content ── */

.home-slider__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(1.2rem, 3vw, 2.8rem);
    background: none;
}

.home-slider__content {
    display: grid;
    gap: 0.85rem;
    width: min(52rem, calc(100% - 3rem));
    max-width: min(52rem, calc(100% - 3rem));
    margin-inline: 0;
    padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.6rem, 3vw, 2.5rem);
    border-radius: 2rem;
    background: rgba(255, 252, 247, 0.84);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 24px 60px rgba(17, 15, 11, 0.16);
}

.home-slider__eyebrow {
    margin: 0;
    font-family: var(--font-display);
    color: var(--color-pink);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
}

.home-slider__content h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
    color: #111;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.home-slider__lead {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 42rem;
    overflow-wrap: anywhere;
}

.home-slider__cta {
    width: fit-content;
    margin-top: 0.35rem;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(254, 57, 136, 0.28);
}

/* ── Category thumbnails row ── */

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    padding: 2rem 0;
}

.category-thumb {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.category-thumb__img {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.category-thumb__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-thumb:hover .category-thumb__img img {
    transform: scale(1.06);
}

.category-thumb__label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Home editorial blocks ── */

.home-intro {
    display: block;
}

.home-bright-stage {
    background:
        radial-gradient(circle at top left, rgba(254, 57, 136, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(234, 239, 101, 0.12), transparent 34%),
        linear-gradient(180deg, #f7f3ea 0%, #f2ede4 100%);
    color: #111;
    padding: 1.2rem 0 2.5rem;
}

.home-bright-stage .section-heading h2,
.home-bright-stage .home-intro h1,
.home-bright-stage .home-reason-card h3,
.home-bright-stage .home-category-card__body h3 {
    color: #111;
}

.home-bright-stage .home-intro__body,
.home-bright-stage .home-category-card__body p,
.home-bright-stage .home-reason-card__content,
.home-bright-stage .home-reason-card__content p {
    color: rgba(17, 17, 17, 0.72);
}

.home-intro-section {
    padding-top: 2.8rem;
}

.home-intro {
    max-width: var(--site-max);
    text-align: center;
}

.home-legal-note {
    display: block;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
}

.home-intro h1,
.home-legal-note h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
}

.home-intro > p,
.home-legal-note > p {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    color: var(--color-pink);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
}

.home-intro__body {
    color: var(--color-ink-soft);
    line-height: 1.7;
    text-transform: none;
    max-width: none;
    margin: 0.9rem auto 0;
    width: 100%;
    text-wrap: balance;
}

.home-intro__body p {
    margin: 0;
    font-size: clamp(0.98rem, 1.45vw, 1.24rem);
}

.home-seo-section {
    padding-top: 3.4rem;
}

.home-seo-copy {
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.8;
    font-size: 1rem;
}

.home-seo-copy__title {
    margin: 0 0 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
    color: #111;
}

.home-seo-copy p {
    margin: 0 0 1rem;
}

.home-seo-copy p:last-child {
    margin-bottom: 0;
}

.home-legal-note div {
    color: var(--color-ink-soft);
    line-height: 1.7;
}

.home-legal-section {
    display: none;
}

.home-category-grid,
.home-reasons-grid {
    display: grid;
    gap: 1.2rem;
}

.home-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-category-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    text-decoration: none;
    color: #111;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 15, 11, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(17, 15, 11, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 57, 136, 0.28);
    box-shadow: 0 26px 58px rgba(17, 15, 11, 0.14);
}

.home-category-card__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(17, 15, 11, 0.06);
}

.home-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.home-category-card:hover .home-category-card__media img {
    transform: scale(1.04);
}

.home-category-card__body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.7rem;
    padding: 1.25rem;
    position: relative;
}

.home-category-card__body h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #111;
}

.home-category-card__body p {
    margin: 0;
    color: var(--color-ink-soft);
    line-height: 1.6;
}

.home-category-card__body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(17, 15, 11, 0.12);
}

.home-category-card--flores-cbd .home-category-card__media {
    background-color: #f33f93;
}

.home-category-card--resinas-cbd .home-category-card__media {
    background-color: #312923;
}

.home-category-card--cartuchos-cbd .home-category-card__media {
    background-color: #51bfc0;
}

.home-category-card--papel .home-category-card__media {
    background-color: #f4efe8;
}

.home-category-card--accesorios .home-category-card__media {
    background-color: #eeea63;
}

.home-reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-reason-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 16px 36px rgba(17, 15, 11, 0.06);
}

.home-reason-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #111;
}

.home-reason-card__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(254, 57, 136, 0.12);
    color: var(--color-pink);
}

.home-reason-card__icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.home-reason-card__content,
.home-reason-card__content p {
    margin: 0;
    color: var(--color-ink-soft);
    line-height: 1.65;
}

/* ── THC disclaimer banner ── */

.thc-banner {
    background: var(--color-yellow);
    margin-top: 0;
    padding: 0.9rem 0;
}

.thc-banner p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 1.8vw, 1.38rem);
    text-transform: uppercase;
    letter-spacing: 0.045em;
    color: #111;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

/* ── Lifestyle / video section ── */

.lifestyle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 28rem;
    overflow: hidden;
}

.lifestyle-section__video {
    position: relative;
    overflow: hidden;
    background: #111;
}

.lifestyle-section__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lifestyle-section__video .lifestyle-section__logo {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 8rem;
    filter: brightness(0) invert(1);
    z-index: 2;
}

.lifestyle-section__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: var(--color-surface);
}

.lifestyle-section__copy p:first-child {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 1.5rem;
    color: #fff;
}

.lifestyle-section__copy .lifestyle-section__highlight {
    color: var(--color-pink);
}

.lifestyle-section__copy p:last-child {
    color: var(--color-ink-soft);
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

/* ── CTA full-width banner ── */

.cta-banner {
    background: linear-gradient(90deg, var(--color-olive) 0%, #7a851e 100%);
    padding: 1rem 0;
}

.cta-banner p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: 400;
}

/* ── Eyebrows ── */

.hero-kema__eyebrow,
.section-heading p,
.listing-hero > p,
.content-page-kema__heading > p,
.article-card > p,
.confirmation-card > p,
.age-gate__eyebrow {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-pink);
    font-weight: 400;
}

/* ── Shared actions layout ── */

.hero-kema__actions,
.confirmation-card__actions,
.cookie-banner__actions,
.age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

/* ── Buttons ── */

.kema-button,
.kema-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 0;
    background: var(--color-pink);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    box-shadow: 0 14px 28px rgba(254, 57, 136, 0.2);
}

.kema-button:hover,
.kema-link-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.kema-button--ghost {
    background: rgba(255, 255, 255, 0.82);
    color: #111;
    border: 1px solid rgba(17, 15, 11, 0.12);
    box-shadow: 0 12px 24px rgba(17, 15, 11, 0.08);
}

.kema-button--ghost:hover {
    border-color: rgba(17, 15, 11, 0.2);
    background: #fff;
    filter: none;
}

.kema-button--dark {
    background: #fff;
    color: #111;
}

.kema-button--yellow {
    background: var(--color-yellow);
    color: #111;
}

.kema-button--olive {
    background: var(--color-olive);
    color: #fff;
}

.kema-link-button {
    padding: 0;
    min-height: auto;
    background: transparent;
    color: var(--color-pink);
}

.kema-button.is-disabled,
.is-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.is-hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Promo grid (slides) ── */

.promo-grid,
.article-grid,
.product-grid,
.category-grid {
    display: grid;
    gap: 1.2rem;
}

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

.promo-card {
    display: block;
    min-height: 16rem;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    background: linear-gradient(145deg, rgba(254, 57, 136, 0.12) 0%, rgba(155, 168, 41, 0.1) 100%),
        var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(254, 57, 136, 0.25);
}

.promo-card__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.promo-card__content p {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-pink);
    font-weight: 700;
}

.promo-card__content h2 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
}

.promo-card__content span {
    color: var(--color-ink-soft);
}

/* ── Section headings ── */

.section-heading,
.section-heading--compact {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.section-heading--compact {
    margin-bottom: 1.8rem;
}

.section-heading h2,
.listing-hero h1,
.content-page-kema h1,
.confirmation-card h1 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3.3rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── Category grid ── */

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

.category-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 13rem;
    padding: 1.4rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #111;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card__index {
    margin: 0 0 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.48);
    font-weight: 700;
}

.category-card strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.category-card span:last-child {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(17, 17, 17, 0.68);
}

/* Category colors */

.category-card--pink {
    background: rgba(255, 255, 255, 0.94);
}

.category-card--olive {
    background: rgba(255, 255, 255, 0.94);
}

.category-card--teal {
    background: rgba(255, 255, 255, 0.94);
}

.category-card--dark {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
}

.category-card--blue {
    background: rgba(255, 255, 255, 0.94);
}

.category-card--pink .category-card__index,
.category-card--olive .category-card__index,
.category-card--teal .category-card__index,
.category-card--dark .category-card__index,
.category-card--blue .category-card__index {
    color: rgba(17, 17, 17, 0.48);
}

.category-card--pink span:last-child,
.category-card--olive span:last-child,
.category-card--teal span:last-child,
.category-card--dark span:last-child,
.category-card--blue span:last-child {
    color: rgba(17, 17, 17, 0.68);
}

/* ── Product grid & cards ── */

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

.product-card-kema {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card-kema:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 57, 136, 0.2);
}

.product-card-kema__media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4efe8;
}

.product-card-kema__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-kema:hover .product-card-kema__media img {
    transform: scale(1.06);
}

.product-card-kema__body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem;
    padding-inline: max(1.15rem, 5px);
}

.product-card-kema__family {
    margin: 0;
    color: var(--color-pink);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.product-card-kema__body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.02;
}

.product-card-kema__body h3 a {
    display: block;
    text-decoration: none;
    color: #111;
    padding-inline: 5px;
    overflow-wrap: normal;
    word-break: normal;
}

/* Hide excerpt on product grids for cleaner cards */
.product-grid .product-card-kema__excerpt {
    display: none;
}

.product-card-kema__excerpt {
    margin: 0;
    color: rgba(17, 17, 17, 0.68);
    line-height: 1.45;
    font-size: 0.9rem;
}

.product-card-kema__price {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.product-card-kema__price strong {
    font-size: 1.35rem;
    color: #111;
}

.product-card-kema__price span {
    text-decoration: line-through;
    color: rgba(17, 17, 17, 0.45);
    font-size: 0.88rem;
}

/* ── Editorial / brand panel ── */

.editorial-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    background: linear-gradient(145deg, var(--color-olive) 0%, #7a851e 100%);
    color: #fff;
    border: none;
    box-shadow: none;
}

.editorial-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}

.editorial-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.editorial-panel > div > p {
    margin: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
}

.home-distributor-section {
    padding-top: 0.5rem;
    background:
        radial-gradient(circle at top left, rgba(254, 57, 136, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(234, 239, 101, 0.12), transparent 34%),
        linear-gradient(180deg, #f7f3ea 0%, #f2ede4 100%);
}

.home-distributor-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    border-radius: 2.2rem;
    background: linear-gradient(135deg, #151515 0%, #241e1b 100%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.home-distributor-card__copy {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding: clamp(2rem, 4vw, 3.2rem);
    order: 2;
}

.home-distributor-card__copy p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-yellow);
}

.home-distributor-card__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 0.94;
    text-transform: uppercase;
    color: #fff;
}

.home-distributor-card__copy span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.home-distributor-card__copy strong {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: var(--color-pink);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(254, 57, 136, 0.22);
}

.home-distributor-card__media {
    order: 1;
    background: #121212;
}

.home-distributor-card__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ── Newsletter section (home) ── */

.newsletter-kema {
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at top left, rgba(254, 57, 136, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(234, 239, 101, 0.12), transparent 34%),
        linear-gradient(180deg, #f7f3ea 0%, #f2ede4 100%);
    color: #111;
}

.newsletter-kema__shell {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #131313 0%, #1f1b18 100%);
    border-radius: 2.2rem;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.newsletter-kema__visual {
    background: #151515;
    line-height: 0;
}

.newsletter-kema__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.newsletter-kema__inner {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(254, 57, 136, 0.22), transparent 36%),
        radial-gradient(circle at bottom left, rgba(234, 239, 101, 0.18), transparent 38%);
}

.newsletter-kema__eyebrow {
    margin: 0 0 0.9rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-yellow);
}

.newsletter-kema__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 4.2vw, 3.45rem);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.92;
    margin: 0 0 1rem;
    color: #fff;
}

@media (min-width: 900px) {
    .newsletter-kema__inner h2 {
        white-space: nowrap;
    }
}

.home-featured-section {
    padding: 3.4rem 0 4rem;
    background: #0b0b0b;
}

.home-featured-section .section-heading h2 {
    color: #fff;
}

.home-blog-section .section-heading h2 {
    color: #111;
}

.blog-list-title {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.95;
    color: #111;
}

.home-blog-section__link {
    width: max-content;
    margin-top: 0.9rem;
    white-space: nowrap;
}

.newsletter-kema__inner > p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.newsletter-kema__form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    max-width: 46rem;
    margin: 0;
}

.newsletter-kema__form input[type="email"] {
    flex: 1 1 23rem;
    min-width: min(100%, 20rem);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    color: #111;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
}

.newsletter-kema__form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-kema__form input[type="email"]:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(254, 57, 136, 0.12);
}

.newsletter-kema__privacy {
    flex: 1 0 100%;
    color: rgba(255, 255, 255, 0.78);
}

.newsletter-kema__privacy span {
    color: inherit;
    white-space: nowrap;
}

.newsletter-kema__privacy a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.newsletter-kema__legal {
    margin: 1.2rem 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.56);
}

.newsletter-kema__legal a {
    color: #fff;
}

/* ── Article grid ── */

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

.article-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-2px);
}

.article-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.03);
}

.article-card h2,
.article-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: #fff;
}

.article-card h2 a,
.article-card h3 a {
    text-decoration: none;
    color: #fff;
}

.article-card span {
    color: var(--color-ink-soft);
}

/* ── Listing pages ── */

.listing-hero {
    display: block;
    padding: 0;
    color: #111;
}

.listing-hero h1,
.content-page-kema h1 {
    color: #111;
}

.listing-hero__intro {
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
}

.listing-hero-banner {
    width: 100%;
    overflow: hidden;
}

.listing-hero-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.content-page-kema__header--with-media {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: end;
}

.content-page-kema__heading {
    max-width: 56rem;
}

.content-page-kema__featured-image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.content-page-kema__featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.content-page-kema__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.content-page-kema {
    display: grid;
    gap: 2rem;
    padding: 0;
    background: transparent;
    border: 0;
}

.content-page-kema__header {
    display: grid;
    gap: 1.5rem;
}

.content-page-kema__body {
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
}

.content-page-kema__lead {
    color: rgba(17, 17, 17, 0.72);
}

.seo-block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.seo-block {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
}

.seo-block h2 {
    margin: 0 0 0.7rem;
    font-size: 1.35rem;
    color: #111;
}

.seo-block div,
.seo-block p {
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
}

.seo-block iframe,
.kema-map-embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    border-radius: var(--radius-md);
}

.page-map-block {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
}

.page-map-block h2 {
    margin: 0 0 0.7rem;
    font-size: 1.35rem;
    color: #111;
}

.page-map-block p {
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
}

.page-map-block iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border-radius: var(--radius-md);
}

.faq-section {
    margin-top: 2rem;
}

.faq-section .section-heading p,
.faq-section .section-heading h2 {
    color: #111;
}

.faq-accordion {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgba(17, 15, 11, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(17, 15, 11, 0.06);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    color: #111;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-pink);
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item__content {
    padding: 0 1.25rem 1.1rem;
}

.faq-item__content p {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.7;
}

.page-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.9rem;
}

.page-fact {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
}

.page-fact span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(17, 17, 17, 0.56);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.page-fact strong {
    color: #111;
    font-size: 1rem;
}

.listing-toolbar__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: end;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 18px 38px rgba(17, 15, 11, 0.08);
}

.listing-toolbar__form label {
    display: grid;
    gap: 0.4rem;
    min-width: 13rem;
    color: #111;
}

.empty-state {
    display: grid;
    gap: 0.5rem;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px dashed rgba(17, 15, 11, 0.14);
    color: #111;
}

/* ── Product detail ── */

.product-detail,
.product-story,
.cart-layout,
.checkout-layout,
.contact-layout {
    display: grid;
    gap: 1.4rem;
}

.auth-page,
.contact-page,
.distributor-page--landing {
    margin-top: 0;
    padding: clamp(2.8rem, 5vw, 4.8rem) 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(234, 239, 101, 0.24), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(254, 57, 136, 0.18), transparent 30%),
        var(--color-paper);
}

.contact-page,
.distributor-page--landing {
    background: var(--color-paper);
}

.auth-page__shell,
.contact-layout.contact-layout--dark,
.distributor-page__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: start;
    justify-items: center;
}

.auth-page__intro,
.contact-page__intro,
.distributor-page__intro {
    color: #fff;
    width: min(100%, 920px);
    text-align: center;
}

.auth-page__intro h1,
.contact-page__intro h1,
.distributor-page__intro h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6.8rem);
    line-height: 0.86;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}

.auth-page__intro .hero-kema__eyebrow,
.contact-page__intro > p,
.distributor-page__intro .content-page-kema__heading > p {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 400;
    color: var(--color-yellow);
}

.contact-page__intro .content-page-kema__body,
.contact-page__intro .content-page-kema__body p,
.distributor-page__intro .content-page-kema__lead,
.distributor-page__intro .content-page-kema__lead p,
.distributor-page__intro .content-page-kema__body,
.distributor-page__intro .content-page-kema__body p {
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.65;
}

.auth-card,
.contact-form,
.distributor-form {
    width: 100%;
    max-width: 920px;
    color: #fff;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.auth-card__login {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.auth-card__login a,
.auth-card a,
.contact-form a,
.distributor-form a {
    color: var(--color-yellow);
}

.auth-card label span,
.contact-form label span,
.distributor-form label span {
    color: #fff;
}

.auth-card input,
.auth-card textarea,
.auth-card select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.distributor-form input,
.distributor-form textarea,
.distributor-form select {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.18);
    color: #111;
}

.auth-card input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(17, 17, 17, 0.45);
}

.auth-card .kema-button,
.contact-form .kema-button,
.distributor-form .kema-button {
    width: 100%;
    justify-content: center;
}

.contact-form {
    padding: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-form textarea {
    min-height: 12rem;
}

.product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
}

.product-detail__gallery,
.product-detail__summary {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 20px 42px rgba(17, 15, 11, 0.08);
}

.product-detail__hero-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f4efe8;
}

.product-detail__hero-image img,
.product-detail__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.product-detail__thumb {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
}

.product-detail__thumb img {
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
}

.product-detail__thumb:hover,
.product-detail__thumb.is-active {
    opacity: 1;
}

.product-detail__thumb:hover {
    transform: translateY(-2px);
}

.product-detail__summary h1 {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.9vw, 1.82rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: #111;
    padding-inline: 5px;
    overflow-wrap: normal;
    word-break: normal;
}

.product-detail__eyebrow {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 400;
}

.product-detail__excerpt {
    color: rgba(17, 17, 17, 0.72);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-detail__short {
    color: rgba(17, 17, 17, 0.72);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-detail__price {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.product-detail__price strong {
    font-size: 2rem;
    color: #111;
}

.product-detail__price span {
    text-decoration: line-through;
    color: rgba(17, 17, 17, 0.48);
}

.distributor-price-table {
    margin: 0 0 1.2rem;
    overflow-x: auto;
}

.distributor-price-table table {
    width: 100%;
    max-width: 420px;
    border-collapse: collapse;
    background: #fff;
    border: 2px solid #111;
}

.distributor-price-table th,
.distributor-price-table td {
    border: 2px solid #111;
    padding: 0.65rem 0.8rem;
    text-align: center;
    font-weight: 800;
}

.distributor-price-table th {
    background: #111;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.distributor-price-table td {
    color: var(--color-pink);
}

.product-variant-picker p,
.product-story__fact span,
.summary-card h2,
.kema-form-section h2 {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: rgba(17, 17, 17, 0.56);
}

.product-variant-picker__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.product-variant-picker__button {
    border: 1px solid rgba(17, 15, 11, 0.12);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.product-variant-picker__button:hover {
    border-color: rgba(17, 15, 11, 0.22);
}

.product-variant-picker__button.is-active {
    border-color: var(--color-pink);
    background: rgba(254, 57, 136, 0.12);
    color: var(--color-pink);
}

.product-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.2rem;
}

.product-detail__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #f7f3ea;
    font-weight: 700;
    font-size: 0.88rem;
    color: #111;
}

.product-buybox {
    display: grid;
    gap: 0.75rem;
}

.product-buybox__controls {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
}

.product-buybox__stock {
    margin: 0;
    color: var(--color-success);
    font-weight: 700;
}

.product-detail__legal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 15, 11, 0.08);
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.88rem;
}

.product-story {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

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

.product-story__content,
.product-story__facts {
    min-width: 0;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 15, 11, 0.08);
    box-shadow: 0 20px 42px rgba(17, 15, 11, 0.08);
}

.product-story__content h2 {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #111;
    overflow-wrap: normal;
    word-break: normal;
}

.product-story__content,
.product-story__content p,
.product-story__content li,
.product-story__content div {
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: normal;
}

.product-story__content h2,
.product-story__content h3,
.product-story__content h4,
.product-story__content strong,
.product-story__content span,
.product-story__content a {
    overflow-wrap: normal;
    word-break: normal;
}

.product-story__content img,
.product-story__content iframe,
.product-story__content video,
.product-story__content table {
    max-width: 100%;
}

.product-story__section + .product-story__section {
    margin-top: 1.8rem;
}

.product-story__facts {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.product-story__fact {
    padding: 1rem;
    border-radius: 1.1rem;
    background: #f7f3ea;
}

.product-story__fact strong {
    display: block;
    font-size: 1.05rem;
    color: #111;
}

/* ── Cart ── */

.cart-heading__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-pink);
}

.cart-layout,
.checkout-layout,
.contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    object-fit: cover;
}

.cart-item__content h2 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    color: #fff;
}

.cart-item__content p,
.cart-item__content span {
    margin: 0;
    color: var(--color-ink-soft);
}

.cart-item__actions {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    min-width: 12rem;
}

.cart-item__form {
    display: flex;
    gap: 0.6rem;
}

.summary-card {
    position: sticky;
    top: 7.5rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.summary-card h2 {
    color: #fff !important;
}

.summary-card dl {
    display: grid;
    gap: 0.8rem;
    margin: 0;
}

.summary-card dl div,
.summary-card__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.summary-card__item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-card__item div {
    display: grid;
}

.summary-card__coupon {
    display: grid;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.summary-card__coupon-actions {
    display: grid;
    gap: 0.5rem;
}

/* ── Forms ── */

.kema-form-card {
    display: grid;
    gap: 1.4rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.checkout-layout .section-heading--compact {
    margin-bottom: 0;
}

.checkout-layout .kema-form-card {
    gap: 0.85rem;
}

.checkout-layout .kema-form-section {
    gap: 0.7rem;
}

.checkout-layout .kema-form-section h2 {
    margin-bottom: 0.25rem;
}

.checkout-billing-fields {
    display: grid;
    gap: 1rem;
}

.checkout-billing-fields[hidden] {
    display: none !important;
}

.distributor-page {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.6rem);
}

.distributor-page__hero {
    display: none;
}

.distributor-page__hero img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.distributor-landing {
    gap: 0.45rem;
}

.distributor-landing .content-page-kema__heading {
    max-width: none;
}

.distributor-landing .content-page-kema__lead,
.distributor-landing .content-page-kema__body {
    color: rgba(255, 255, 255, 0.78);
}

.distributor-landing .content-page-kema__lead p,
.distributor-landing .content-page-kema__body p {
    margin-top: 0;
    margin-bottom: 0;
}

.distributor-form {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    color: #fff;
    width: 100%;
    max-width: 920px;
    padding: clamp(1.4rem, 3vw, 2.4rem);
}

.distributor-form .kema-form-section h2,
.distributor-form .kema-checkbox span,
.distributor-form .kema-form-help,
.distributor-form label span {
    color: #fff;
}

.distributor-form input,
.distributor-form textarea,
.distributor-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: #111;
}

.distributor-form textarea {
    resize: vertical;
}

.distributor-form input:focus,
.distributor-form textarea:focus,
.distributor-form select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(254, 57, 136, 0.12);
}

.distributor-form .kema-button {
    width: 100%;
    justify-content: center;
}

.kema-form-section {
    display: grid;
    gap: 1rem;
}

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

.kema-form-grid label,
.kema-form-section label,
.kema-form-select {
    display: grid;
    gap: 0.4rem;
}

.kema-form-grid__full {
    grid-column: 1 / -1;
}

.kema-checkbox,
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.kema-form-grid label.kema-checkbox,
.kema-form-section label.kema-checkbox,
label.kema-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.kema-checkbox input[type="checkbox"],
.payment-option input[type="radio"] {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    flex: 0 0 auto;
    margin: 0.18rem 0 0;
    padding: 0;
    border-radius: 0.22rem;
    accent-color: var(--color-pink);
}

.payment-option input[type="radio"] {
    border-radius: 999px;
}

.kema-checkbox span {
    display: block;
    line-height: 1.35;
}

.payment-options {
    display: grid;
    gap: 0.6rem;
}

.kema-form-help {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 0.95rem;
}

/* ── Confirmation ── */

.confirmation-card {
    max-width: 48rem;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.confirmation-card__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.confirmation-card__summary div {
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
}

.confirmation-card__summary span {
    display: block;
    color: var(--color-ink-soft);
    margin-bottom: 0.35rem;
}

/* ── Footer ── */

.site-footer {
    margin-top: 0;
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    padding: 3rem 0;
}

.site-footer__brand-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.site-footer__logo {
    height: 2.2rem;
    width: auto;
}

.site-footer__badge-18 {
    height: 1.6rem;
    width: auto;
    opacity: 0.7;
}

.site-footer__social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.2s;
}

.site-footer__social a:hover {
    border-color: var(--color-pink);
}

.site-footer__social img {
    width: 1.1rem;
    height: 1.1rem;
}

.site-footer__grid h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
}

.site-footer__grid h3 {
    color: #fff;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.site-footer__links a {
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: var(--color-pink);
}

.site-footer__note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}

.site-newsletter {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}

.site-newsletter__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
}

/* ── Cookie banner ── */

.cookie-banner {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 90;
}

.cookie-banner[hidden],
.age-gate[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1.2rem;
    border-radius: 1.4rem;
    background: rgba(20, 20, 20, 0.96);
    color: #fff;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

/* ── Age gate ── */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(20px);
}

.age-gate__panel {
    width: min(100%, 32rem);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface-strong);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.age-gate__panel h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

/* ── Admin (keep light) ── */

.admin-layout {
    background: #eef2ff;
    color: #1e252c;
}

.admin-layout input,
.admin-layout textarea,
.admin-layout select {
    background: #fff;
    color: #1e252c;
    border-color: #d1d5db;
}

.admin-layout input::placeholder,
.admin-layout textarea::placeholder {
    color: #9ca3af;
}

.admin-sidebar {
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.editor-shell {
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    background: #fff;
    overflow: hidden;
}

.editor-toolbar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.75rem;
    border-bottom: 1px solid #d1d5db;
    background: #f9fafb;
}

.editor-shell textarea {
    border: 0;
    border-radius: 0;
    min-height: 14rem;
    background: #fff;
    color: #1e252c;
}

.editor-shell .form-text {
    padding: 0 0.75rem 0.75rem;
}

.editor-preview {
    border-top: 1px solid #d1d5db;
    padding: 1rem;
    background: #f9fafb;
    color: #1e252c;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
    .site-header__main,
    .product-detail,
    .product-story,
    .auth-page__shell,
    .cart-layout,
    .checkout-layout,
    .contact-layout,
    .content-page-kema__header--with-media,
    .editorial-panel,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-section {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .article-grid,
    .category-grid,
    .home-category-grid,
    .home-reasons-grid,
    .seo-block-grid,
    .page-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .summary-card {
        position: static;
    }

    .newsletter-kema__form {
        flex-direction: column;
    }

    .newsletter-kema__form input[type="email"] {
        flex-basis: auto;
        min-width: 0;
        width: 100%;
    }

    .newsletter-kema__shell,
    .home-distributor-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-topbar__inner,
    .site-actions,
    .site-header__main,
    .site-nav,
    .site-footer__grid,
    .cookie-banner__inner,
    .confirmation-card__summary,
    .product-buybox__controls,
    .kema-form-grid,
    .site-newsletter__row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-actions,
    .site-nav,
    .hero-kema__actions,
    .confirmation-card__actions,
    .cookie-banner__actions,
    .age-gate__actions {
        display: grid;
    }

    .product-grid,
    .article-grid,
    .category-grid,
    .home-category-grid,
    .home-reasons-grid,
    .seo-block-grid,
    .page-facts-grid {
        grid-template-columns: 1fr;
    }

    .home-slider__overlay {
        align-items: end;
        padding: 1.5rem 0;
    }

    .home-slider__content {
        max-width: 100%;
        width: 100%;
        padding: 1.1rem 1rem 1.2rem;
        gap: 0.65rem;
        border-radius: 1.4rem;
    }

    .home-slider__content h2 {
        font-size: clamp(1.55rem, 9vw, 2.35rem);
        line-height: 1;
    }

    .home-slider__lead {
        font-size: 0.94rem;
        line-height: 1.45;
    }

    .home-slider__cta {
        width: 100%;
    }

    .hero-slider__nav {
        width: 2.5rem;
        height: 2.5rem;
        top: auto;
        bottom: 4.8rem;
        transform: none;
    }

    .hero-slider__nav--prev {
        left: 0.8rem;
    }

    .hero-slider__nav--next {
        right: 0.8rem;
    }

    .hero-slider__dots {
        bottom: 1rem;
    }

    .thc-banner p {
        white-space: normal;
        line-height: 1.2;
        text-wrap: balance;
    }

    .site-header__main {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 0.75rem;
        padding: 0.85rem 0;
    }

    .site-search--desktop,
    .site-actions--desktop,
    .site-nav--desktop {
        display: none !important;
    }

    .site-header__toggle,
    .site-header__mobile-panel,
    .site-search--mobile,
    .site-actions--mobile,
    .site-nav--mobile {
        display: block;
    }

    .site-header__toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-self: end;
    }

    .site-cart-link--mobile {
        display: inline-flex;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--color-pink);
        color: #fff;
        box-shadow: 0 10px 24px rgba(254, 57, 136, 0.18);
        justify-self: end;
    }

    .site-cart-link--mobile .site-cart-link__count {
        position: absolute;
        top: -0.35rem;
        right: -0.25rem;
        min-width: 1.25rem;
        height: 1.25rem;
        margin: 0;
        border: 2px solid #f3ede3;
        background: #111;
        color: #fff;
        font-size: 0.72rem;
    }

    .site-header__mobile-panel {
        display: grid;
        gap: 0.9rem;
        padding-bottom: 1rem;
    }

    .site-header__mobile-panel .site-search {
        display: grid;
    }

    .site-actions--mobile,
    .site-nav--mobile {
        display: grid;
        gap: 0.65rem;
        box-shadow: none;
        background: transparent;
        clip-path: none;
    }

    .site-actions--mobile a,
    .site-nav--mobile a {
        padding: 0.9rem 1rem;
        border-radius: 1rem;
        border: 0;
        background: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        color: #111;
    }

    .site-actions--mobile .site-action-link--accent {
        background: #111;
        color: #fff !important;
    }

    .blog-list-section {
        padding-top: 1rem;
    }

    .blog-list-title {
        font-size: clamp(1.9rem, 11vw, 3rem);
        color: #111;
    }

    .blog-post-section {
        padding-top: 0.6rem;
    }

    .blog-post-page {
        gap: 0.85rem;
    }

    .blog-post-page > p {
        display: none;
    }

    .blog-post-page .content-page-kema__featured-image {
        margin-top: 0;
    }

    .site-nav--mobile {
        padding: 0;
    }

    body.has-mobile-menu-open {
        overflow: hidden;
    }

    .home-seo-section {
        padding-top: 2.4rem;
    }

    .home-seo-copy__title {
        margin-bottom: 1rem;
    }

    .home-intro__body p {
        white-space: normal;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item__actions {
        min-width: 0;
    }

    .newsletter-kema__form {
        flex-direction: column;
    }

    .newsletter-kema__form input[type="email"] {
        flex-basis: auto;
        width: 100%;
        min-height: 0;
        padding: 0.85rem 1rem;
    }

    .newsletter-kema__privacy span {
        white-space: normal;
    }

    .newsletter-kema__visual {
        min-height: 0;
    }

    .home-distributor-card__copy strong {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
        font-size: 0.76rem;
        letter-spacing: 0.03em;
        padding-inline: 0.9rem;
    }

    .product-story__content {
        padding: 1.2rem;
    }

    .product-story__content h2 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
        line-height: 1.02;
        letter-spacing: 0.01em;
    }

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

    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (min-width: 900px) {
    .home-intro__body p {
        white-space: nowrap;
    }
}

/* ── Account ── */

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

.account-header__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    color: #111;
}

.account-header__email {
    color: var(--color-ink-soft);
    margin: 0.3rem 0 0;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: start;
}

.account-grid__full {
    grid-column: 1 / -1;
}

.account-card__title {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.account-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0.4rem 0;
}

.account-empty {
    color: var(--color-ink-soft);
    margin: 0;
}

.account-address {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.account-address + .account-address {
    margin-top: 0.6rem;
}

.account-address-form-toggle {
    margin-top: 0.4rem;
}

.account-address-form-toggle summary {
    list-style: none;
    cursor: pointer;
}

.account-address-form-toggle summary::-webkit-details-marker {
    display: none;
}

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

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

.account-orders-table th {
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-ink-soft);
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid var(--color-border);
}

.account-orders-table td {
    padding: 0.85rem 0.8rem;
    border-bottom: 1px solid var(--color-border);
}

.account-orders-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.account-order-header {
    align-items: flex-start;
}

.account-order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    gap: 1.4rem;
    align-items: start;
}

.account-order-main {
    display: grid;
    gap: 1.4rem;
}

.account-order-card {
    color: #fff;
}

.account-order-items td:first-child {
    min-width: 15rem;
}

.account-order-items strong,
.account-order-items span {
    display: block;
}

.account-order-items span {
    margin-top: 0.25rem;
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

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

.account-order-addresses .account-address {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.account-order-addresses .account-address strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--color-turquoise);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.account-order-addresses .account-address p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.account-order-summary {
    position: static;
    color: #fff;
}

.account-order-summary dl div {
    align-items: flex-start;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-order-summary dt {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.account-order-summary dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.account-order-summary__total {
    color: var(--color-lime);
    font-size: 1.1rem;
}

.account-order-shipment {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-order-shipment h3 {
    margin: 0 0 0.35rem;
    color: var(--color-turquoise);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-order-shipment p {
    margin: 0.35rem 0 0;
}

.account-order-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.account-order-actions .kema-button {
    width: 100%;
}

@media (max-width: 980px) {
    .account-order-layout,
    .account-order-addresses {
        grid-template-columns: 1fr;
    }
}
