@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --ink: #050505;
    --muted: #666666;
    --line: #d6d6d6;
    --soft: #f5f5f5;
    --sale: #e00000;
    --black: #000000;
    --white: #ffffff;
    --container: 100%;
    font-family: "Inter Tight", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter Tight", Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

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

button,
input,
select,
textarea {
    font-family: "Inter Tight", Arial, Helvetica, sans-serif;
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

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

svg {
    display: block;
}

/* =========================
   HEADER
========================= */

.promo-bar {
    min-height: 38px;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.ck-header {
    min-height: 92px;
    display: grid;
    grid-template-columns: 270px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 42px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 70;
}

.ck-logo {
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
}

.ck-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(26px, 3.2vw, 54px);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

.ck-nav a {
    position: relative;
    padding: 34px 0;
}

.ck-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 27px;
    height: 2px;
    background: #111;
    transition: right .2s ease;
}

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

.ck-nav .sale-link {
    color: var(--sale);
}

.ck-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ck-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.ck-lang a {
    opacity: .45;
}

.ck-lang a.active {
    opacity: 1;
    border-bottom: 1px solid #111;
}

.ck-icon {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #000;
}

.ck-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.cart-icon span,
.cart-dot {
    position: absolute;
    right: -9px;
    top: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.topbar {
    min-height: 92px;
    display: grid;
    grid-template-columns: 270px 1fr auto;
    align-items: center;
    padding: 0 42px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.brand {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-switch a {
    opacity: .45;
}

.lang-switch a.active {
    opacity: 1;
    border-bottom: 1px solid #111;
}

.icon-link {
    position: relative;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}

.icon-link svg {
    width: 24px;
    height: 24px;
}

/* =========================
   HOME FLOATING HEADER
========================= */

.home-floating-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 38px;
    z-index: 120;
    pointer-events: none;
}

.home-floating-top {
    position: relative;
    min-height: 86px;
    display: grid;
    place-items: center;
    padding: 18px 42px 10px;
    pointer-events: auto;
}

.home-floating-logo {
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .86;
    font-weight: 500;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow: 0 10px 36px rgba(0,0,0,.28);
}

.home-floating-actions {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-floating-actions .ck-lang a {
    color: #fff;
    opacity: .62;
}

.home-floating-actions .ck-lang a.active {
    opacity: 1;
    border-bottom-color: #fff;
}

.home-floating-actions .ck-icon {
    color: #fff;
}

.home-floating-actions .cart-icon span {
    background: #fff;
    color: #000;
}

.home-floating-brands {
    width: min(1080px, calc(100% - 360px));
    min-height: 70px;
    margin: 0 auto;
    padding: 0 34px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    pointer-events: auto;
    box-shadow: 0 18px 70px rgba(0,0,0,.16);
}

.home-floating-brand-track {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 46px;
    width: max-content;
    animation: homeFloatingBrands 26s linear infinite;
}

.home-floating-brand-track span {
    color: rgba(255,255,255,.9);
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.home-floating-brand-track span:nth-child(6),
.home-floating-brand-track span:nth-child(13) {
    color: #111;
    font-weight: 800;
}

@keyframes homeFloatingBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   HOME HERO
========================= */

.kf-home {
    background: #fff;
    overflow: hidden;
}

.home-hero-video {
    position: relative;
    min-height: calc(100vh - 38px);
    overflow: hidden;
    background: #111;
}

.home-hero-video video,
.home-hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-fallback {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .38) 42%, rgba(0, 0, 0, .14) 100%),
        url("	https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=2200&q=88") center / cover;
}

.home-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08));
    pointer-events: none;
}

.home-hero-brand-slider {
    position: absolute;
    left: 50%;
    top: 34px;
    z-index: 4;
    width: min(1160px, calc(100% - 380px));
    min-height: 86px;
    transform: translateX(-50%);
    padding: 0 34px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.home-brand-track {
    height: 86px;
    overflow: hidden;
}

.home-brand-track-inner {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 46px;
    width: max-content;
    animation: homeBrandMarquee 24s linear infinite;
}

.home-brand-track-inner span {
    color: rgba(255,255,255,.86);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.home-brand-track-inner .active-brand {
    color: #111;
    font-weight: 800;
}

@keyframes homeBrandMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home-hero-content {
    position: relative;
    z-index: 3;
    width: calc(100% - 84px);
    min-height: calc(100vh - 38px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding-top: 130px;
}

.home-hero-kicker {
    margin: 0 0 18px;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.home-hero-content h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(68px, 7.2vw, 118px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.home-hero-text {
    margin: 34px 0 0;
    max-width: 560px;
    color: rgba(255,255,255,.94);
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -0.006em;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 50px;
}

.primary-btn,
.secondary-link {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0;
}

.primary-btn {
    padding: 0 28px;
    background: #fff;
    color: #111;
}

.secondary-link {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.7);
}

.featured-card {
    position: absolute;
    right: clamp(34px, 6vw, 96px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: min(280px, 30vw);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.44);
    border-radius: 18px;
    background: rgba(255,255,255,.68);
    backdrop-filter: blur(20px);
    box-shadow: 0 26px 80px rgba(0,0,0,.18);
}

.home-featured-card {
    right: clamp(34px, 6vw, 96px);
    top: 50%;
    transform: translateY(-44%);
}

.featured-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-card img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: contain;
    margin: 24px 0 18px;
}

.featured-card h3,
.featured-card p {
    text-align: center;
    margin: 0 0 6px;
}

.featured-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 18px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.featured-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
    font-size: 13px;
}

.featured-nav button {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    font-size: 20px;
}

.home-video-controls {
    position: absolute;
    left: 54px;
    right: 54px;
    bottom: 28px;
    z-index: 4;
    color: #fff;
    display: grid;
    grid-template-columns: 34px 34px 1fr auto 28px;
    align-items: center;
    gap: 22px;
    font-size: 16px;
    opacity: .9;
}

.home-video-controls .progress {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.42);
    position: relative;
}

.home-video-controls .progress::after {
    content: "";
    position: absolute;
    inset: 0 64% 0 0;
    background: white;
}

.kf-home > .hero {
    display: none;
}

/* =========================
   HOME CATEGORIES
========================= */

.home-index-categories {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 54px 0;
    text-align: center;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.home-index-categories article {
    min-height: 150px;
    display: grid;
    align-content: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    padding: 0 22px;
}

.home-index-categories article:last-child {
    border-right: 0;
}

.home-index-categories h2 {
    margin: 0 0 22px;
    font-size: clamp(36px, 3.4vw, 66px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.home-index-categories div {
    display: flex;
    justify-content: center;
    gap: 42px;
    color: var(--muted);
    font-size: 21px;
    letter-spacing: 0;
}

.home-index-categories a {
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 7px;
}

.home-index-categories a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* =========================
   NEW IN / RELATED SHOWCASE
========================= */

.kf-related-showcase {
    position: relative;
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(320px, .9fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 90px);
    overflow: hidden;
    padding: 86px 42px;
    background: #f7efd8;
    color: #fff;
    isolation: isolate;
}

.product-page .kf-related-showcase {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 96px;
}

.kf-related-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 255, 255, .72), transparent 34%),
        radial-gradient(circle at 34% 76%, rgba(239, 204, 139, .42), transparent 44%),
        radial-gradient(circle at 62% 62%, rgba(231, 184, 128, .18), transparent 34%),
        linear-gradient(120deg, #fbf5df 0%, #f4e4bd 46%, #ecd09a 100%);
}

.kf-related-bg img {
    position: absolute;
    inset: -38px;
    width: calc(100% + 76px);
    height: calc(100% + 76px);
    object-fit: cover;
    opacity: .12;
    filter: blur(32px) saturate(1.05) brightness(1.08);
    transform: scale(1.08);
}

.kf-related-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(76, 57, 28, .18), rgba(255, 255, 255, .08) 48%, rgba(96, 66, 28, .14)),
        radial-gradient(circle at 54% 58%, rgba(255,255,255,.32), transparent 30%);
}

.kf-related-left {
    position: relative;
    z-index: 2;
}

.kf-related-eyebrow {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -0.035em;
    filter: blur(1.2px);
}

.kf-related-left h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(58px, 7.2vw, 112px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 16px 46px rgba(86, 62, 28, .22);
}

.kf-related-list {
    display: grid;
    gap: 18px;
    margin-top: 70px;
}

.kf-related-list button {
    width: fit-content;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .38);
    padding: 0;
    font-size: clamp(34px, 4.2vw, 72px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -0.035em;
    text-align: left;
    filter: blur(2px);
    transition: color .25s ease, filter .25s ease, transform .25s ease;
}

.kf-related-list button.active {
    color: #ffffff;
    filter: blur(0);
    transform: translateX(4px);
}

.kf-related-media {
    position: relative;
    z-index: 2;
    transform: rotate(1.5deg);
}

.kf-related-media img {
    width: 100%;
    aspect-ratio: 1.38 / .86;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 38px 110px rgba(91, 62, 28, .22);
    transition: opacity .25s ease, transform .25s ease;
}

.kf-related-media.is-changing img {
    opacity: .28;
    transform: scale(.96) rotate(-1deg);
}

.kf-related-info {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.kf-related-info > p:first-child {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .68);
    font-size: 20px;
    letter-spacing: -0.01em;
}

.kf-related-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 6vw, 94px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 16px 46px rgba(86, 62, 28, .22);
}

.kf-related-info > p:not(:first-child) {
    max-width: 500px;
    margin: 42px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(18px, 1.7vw, 27px);
    line-height: 1.28;
    letter-spacing: -0.006em;
}

.kf-related-info > a {
    display: inline-flex;
    margin-top: 30px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-shadow: 0 16px 46px rgba(86, 62, 28, .22);
    letter-spacing: 0;
}

.kf-related-controls {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 42px;
}

.kf-related-controls button {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    color: #111111;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.kf-related-controls button:first-child {
    background: rgba(255, 255, 255, .68);
}

.kf-related-controls button:hover {
    transform: translateY(-3px);
    background: #fff;
}

/* =========================
   CLASSIC SPLIT SECTION
========================= */

.kf-classic-section {
    position: relative;
    min-height: 820px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background: #111;
}

.kf-classic-half {
    position: relative;
    min-height: 820px;
    display: block;
    overflow: hidden;
    background: #ddd;
}

.kf-classic-image {
    position: absolute;
    inset: 0;
    display: block;
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
    transition: transform .7s ease;
}

.kf-classic-half:hover .kf-classic-image {
    transform: scale(1.045);
}

.kf-classic-women .kf-classic-image {
    background-image: url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?auto=format&fit=crop&w=1600&q=90');
    background-position: center top;
}

.kf-classic-men .kf-classic-image {
    background-image: url('https://images.unsplash.com/photo-1516257984-b1b4d707412e?auto=format&fit=crop&w=1600&q=90');
    background-position: center top;
}

.kf-classic-shade {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .24),
        rgba(0, 0, 0, .04) 42%,
        rgba(0, 0, 0, .18)
    );
}

.kf-classic-content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: min(520px, calc(100% - 36px));
    transform: translate(-50%, -44%);
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.kf-classic-content h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 116px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.kf-classic-content p {
    width: min(430px, 100%);
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.45;
    letter-spacing: -0.006em;
}

.kf-classic-content div {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 32px;
    pointer-events: auto;
}

.kf-classic-content a {
    color: #fff;
    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.82);
    padding-bottom: 7px;
    letter-spacing: 0;
}

.kf-classic-content a:hover {
    border-bottom-color: transparent;
}

/* =========================
   ANIMATED REWARDS
========================= */

.kf-rewards-section {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    isolation: isolate;
}

.kf-rewards-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.18), transparent 34%),
        radial-gradient(circle at 82% 88%, rgba(255,255,255,.22), transparent 38%),
        linear-gradient(110deg, #6e8c87, #9ebbb3, #d2a16e, #e3dcb2, #7d9b96);
    background-size: 220% 220%;
    animation: kfRewardsGradient 11s ease-in-out infinite alternate;
}

.kf-rewards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.22)),
        rgba(0,0,0,.03);
    backdrop-filter: blur(.2px);
}

.kf-rewards-content {
    width: min(1180px, calc(100% - 36px));
    padding: 82px 18px 90px;
}

.kf-rewards-logo {
    margin: 0 0 54px;
    color: rgba(255,255,255,.98);
    font-size: clamp(36px, 4vw, 62px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.035em;
}

.kf-rewards-logo strong {
    font-weight: 700;
}

.kf-rewards-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 126px);
    line-height: .96;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.kf-rewards-content > p:not(.kf-rewards-logo) {
    width: min(760px, 100%);
    margin: 44px auto 0;
    color: rgba(255,255,255,.95);
    font-size: clamp(20px, 1.8vw, 30px);
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: -0.006em;
}

.kf-rewards-content > a {
    min-width: 210px;
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
    padding: 0 34px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.04);
    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 600;
    letter-spacing: 0;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.kf-rewards-content > a:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px);
}

@keyframes kfRewardsGradient {
    0% {
        background-position: 0% 44%;
        filter: hue-rotate(0deg) saturate(1);
    }

    28% {
        background-position: 48% 52%;
        filter: hue-rotate(-8deg) saturate(1.04);
    }

    55% {
        background-position: 84% 48%;
        filter: hue-rotate(12deg) saturate(1.08);
    }

    78% {
        background-position: 42% 78%;
        filter: hue-rotate(-16deg) saturate(1.02);
    }

    100% {
        background-position: 100% 56%;
        filter: hue-rotate(18deg) saturate(1.08);
    }
}

.kf-home > .home-index-club,
.kf-home > .home-index-benefits {
    display: none;
}

/* =========================
   GLOBAL CLUB + BENEFITS
========================= */

.home-index-club {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f7f6f4;
    padding: 64px 42px;
}

.home-index-club-inner {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 730px);
    gap: 70px;
    align-items: center;
}

.home-index-club small {
    display: block;
    margin-bottom: 18px;
    color: #111;
    letter-spacing: .16em;
    font-size: 15px;
    font-weight: 700;
}

.home-index-club h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 64px);
    line-height: .96;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.home-index-club p {
    max-width: 760px;
    margin: 30px 0 0;
    color: #666;
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: -0.006em;
}

.home-index-newsletter {
    display: grid;
    grid-template-columns: 1fr 240px;
    height: 76px;
}

.home-index-newsletter input {
    height: 76px;
    border: 1px solid #b9b9b9;
    border-right: 0;
    background: #fff;
    color: #111;
    font-size: 20px;
    padding: 0 26px;
}

.home-index-newsletter button {
    height: 76px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
}

.home-index-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.home-index-benefit {
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 54px;
    border-right: 1px solid var(--line);
    letter-spacing: 0;
}

.home-index-benefit:last-child {
    border-right: 0;
}

.home-index-benefit svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    stroke-width: 1.8;
    color: #555;
}

.home-index-benefit strong {
    display: block;
    margin-bottom: 4px;
    color: #222;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 0;
}

.home-index-benefit span {
    display: block;
    color: #555;
    font-size: 18px;
    line-height: 1.25;
}

/* =========================
   SHOP PAGE
========================= */

.ck-shop {
    width: 100%;
    margin: 0;
    padding: 0;
}

.ck-shop-hero {
    padding: 34px 42px 28px;
}

.ck-shop-hero h1 {
    margin: 0 0 34px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ck-category-tabs {
    display: flex;
    align-items: center;
    gap: 46px;
    flex-wrap: wrap;
    color: #5d5d5d;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

.ck-category-tabs a {
    position: relative;
    padding-bottom: 9px;
}

.ck-category-tabs a.active,
.ck-category-tabs a:hover {
    color: #000;
}

.ck-category-tabs a.active::after,
.ck-category-tabs a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #000;
}

.ck-toolbar {
    min-height: 92px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid var(--line);
    padding: 20px 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
}

.ck-filter-form {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ck-filter-menu {
    position: relative;
}

.ck-filter-menu summary {
    list-style: none;
    min-width: 122px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    letter-spacing: 0;
}

.ck-filter-menu summary::-webkit-details-marker {
    display: none;
}

.ck-filter-menu summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg) translateY(-3px);
    transition: transform .18s ease;
}

.ck-filter-menu[open] summary::after {
    transform: rotate(225deg) translateY(-1px);
}

.ck-filter-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    z-index: 90;
    min-width: 240px;
    max-height: 360px;
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 70px rgba(0,0,0,.14);
    display: grid;
    gap: 14px;
}

.ck-filter-dropdown label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    font-size: 15px;
    white-space: nowrap;
}

.ck-filter-dropdown input[type="radio"] {
    width: 16px;
    height: 16px;
    min-height: 16px;
    accent-color: #000;
}

.price-dropdown {
    grid-template-columns: 1fr 1fr;
    min-width: 320px;
}

.price-dropdown input {
    min-height: 44px;
}

.price-dropdown button {
    grid-column: 1 / -1;
    min-height: 44px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-weight: 700;
}

.size-dropdown {
    grid-template-columns: repeat(3, minmax(54px, 1fr));
}

.ck-sort-area {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #555;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0;
}

.ck-separator {
    width: 1px;
    height: 22px;
    background: var(--line);
}

.ck-sort-form label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ck-sort-form select {
    width: 190px;
    height: 50px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    padding: 0 42px 0 18px;
    background: #fff;
    font-weight: 600;
}

/* =========================
   PRODUCT GRID / CARDS
========================= */

.ck-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 0 0 72px;
    margin: 0;
}

.ck-product-card {
    min-width: 0;
    background: #fff;
}

.ck-product-link {
    display: block;
}

.ck-product-media {
    position: relative;
    overflow: hidden;
    background: #efefef;
}

.ck-product-media img {
    width: 100%;
    aspect-ratio: 3 / 4.05;
    object-fit: cover;
    transition: transform .35s ease;
}

.ck-product-card:hover .ck-product-media img {
    transform: scale(1.015);
}

.ck-wishlist {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    z-index: 2;
}

.ck-wishlist svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.7;
    fill: transparent;
}

.ck-wishlist.active svg {
    fill: #111;
}

.ck-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #000;
    color: #fff;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ck-swatches {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 16px 10px;
}

.ck-swatches span {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid #999;
    box-shadow: inset 0 0 0 3px #fff;
}

.ck-product-card h3 {
    margin: 0;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.32;
    font-weight: 600;
    letter-spacing: 0;
}

.ck-card-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px 0;
    font-size: 15px;
    letter-spacing: 0;
}

.ck-card-price strong {
    font-weight: 700;
}

.ck-card-price del {
    color: #777;
}

.ck-card-price span {
    color: var(--sale);
}

.ck-sale-note {
    margin: 0;
    padding: 12px 16px 22px;
    color: var(--sale);
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0;
}

.ck-empty {
    margin: 42px;
    padding: 32px;
    background: var(--soft);
}

.ck-empty p {
    color: #555;
}

.ck-empty a {
    display: inline-flex;
    min-height: 46px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-weight: 700;
}

.shop-recommendations {
    padding: 0 0 92px;
    background: #fff;
    overflow: hidden;
}

.shop-recommendations-head {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 42px;
}

.shop-recommendations-head h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.shop-recommendations-controls {
    display: flex;
    align-items: center;
    gap: 22px;
}

.shop-recommendations-controls button {
    width: 58px;
    height: 58px;
    border: 3px solid #a8a8a8;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    transition: border-color .18s ease, transform .18s ease;
}

.shop-recommendations-controls button:hover {
    border-color: #000;
    transform: scale(1.03);
}

.shop-recommendations-controls span {
    display: block;
    font-size: 48px;
    line-height: .7;
    font-weight: 300;
    transform: translateY(-2px);
}

.shop-recommendations-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100vw - 24px) / 6);
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.shop-recommendations-track::-webkit-scrollbar {
    display: none;
}

.shop-recommendation-slide {
    min-width: 0;
    scroll-snap-align: start;
}

.shop-recommendations .ck-product-media img {
    aspect-ratio: 3 / 4.15;
}

.shop-recommendations .ck-product-card h3 {
    min-height: 44px;
}

.ck-explore-more {
    border-top: 1px solid var(--line);
    padding: 0 42px 76px;
}

.ck-explore-panel {
    width: min(430px, 100%);
    padding-top: 52px;
}

.ck-explore-panel p {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 600;
}

.ck-explore-panel a {
    display: block;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.ck-explore-panel a:last-child {
    border-bottom: 1px solid var(--line);
}

.ck-explore-panel a:hover {
    color: #555;
}

.back-to-top {
    position: fixed;
    right: 38px;
    bottom: 38px;
    z-index: 60;
    width: 74px;
    height: 74px;
    border: 1px solid #999;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    gap: 0;
    font-size: 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.back-to-top span {
    display: block;
    font-size: 26px;
    line-height: .7;
}

.product-grid {
    width: calc(100% - 84px);
    margin: 0 auto 86px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.product-card {
    position: relative;
}

.product-media {
    background: var(--soft);
    overflow: hidden;
}

.product-media img {
    width: 100%;
    aspect-ratio: 3 / 4.05;
    object-fit: cover;
}

.product-info-card {
    padding: 14px 16px;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.32;
}

.price-row {
    display: flex;
    gap: 8px;
}

.card-form {
    display: none;
}

.add-btn {
    width: 100%;
    min-height: 44px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-page,
.page {
    width: calc(100% - 84px);
    margin: 54px auto 86px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 34px;
    color: #656565;
    font-size: 15px;
    border-bottom: 1px solid #bbb;
    padding-bottom: 6px;
}

.product-layout {
    display: grid;
    grid-template-columns: 96px minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: 34px;
    align-items: start;
}

.thumbs {
    display: grid;
    gap: 16px;
    padding-top: 88px;
}

.thumb {
    border: 1px solid transparent;
    padding: 0;
    background: var(--soft);
    width: 86px;
    overflow: hidden;
}

.thumb.active {
    border-color: #111;
}

.thumb img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.main-media {
    background: var(--soft);
    overflow: hidden;
}

.main-media img {
    width: 100%;
    aspect-ratio: 4 / 4.45;
    object-fit: cover;
}

.product-info {
    padding-top: 82px;
    position: sticky;
    top: 112px;
}

.brand-name {
    display: block;
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info .brand-name {
    font-size: 16px;
    margin: 0 0 14px;
    letter-spacing: .14em;
}

.product-info h1 {
    margin: 0 0 24px;
    font-size: clamp(44px, 4.8vw, 70px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.price {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 26px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.price del {
    color: #777;
    font-size: 18px;
    font-weight: 400;
}

.lead {
    max-width: 620px;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 34px;
    letter-spacing: -0.006em;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 28px 0 24px;
}

.buy-box {
    display: grid;
}

.field {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    color: #444;
    font-size: 15px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 26px;
}

select,
input,
textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid #bfbfbf;
    background: #fff;
    padding: 0 16px;
    color: #111;
}

textarea {
    min-height: 140px;
    padding-top: 16px;
    resize: vertical;
}

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin: 36px 0 38px;
}

.primary,
.ghost,
.primary-link {
    min-height: 62px;
    border: 1px solid #111;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}

.primary,
.primary-link {
    background: #111;
    color: #fff;
}

.ghost {
    background: #fff;
    color: #111;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion details {
    border-bottom: 1px solid var(--line);
    padding: 20px 8px;
}

.accordion summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.accordion p {
    color: #666;
    line-height: 1.8;
    letter-spacing: -0.006em;
}

/* =========================
   CART / CHECKOUT / STATIC
========================= */

.page-head {
    margin-bottom: 36px;
}

.page-head p {
    margin: 0 0 12px;
    color: var(--muted);
}

.empty-box {
    background: var(--soft);
    padding: 34px;
    max-width: 760px;
}

.empty-box p {
    color: #555;
    line-height: 1.7;
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 44px;
    align-items: start;
}

.cart-list {
    display: grid;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 22px;
    border: 1px solid var(--line);
    padding: 18px;
}

.cart-item img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    background: var(--soft);
}

.cart-item p {
    margin: 8px 0 0;
    color: #666;
}

.cart-item-side {
    text-align: right;
    display: grid;
    justify-items: end;
    align-content: space-between;
    gap: 16px;
}

.text-btn {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #777;
    padding: 6px 0;
    color: #555;
}

.summary {
    border: 1px solid var(--line);
    padding: 24px;
    display: grid;
    gap: 16px;
    height: fit-content;
}

.summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.summary-total {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    font-size: 20px;
    letter-spacing: -0.015em;
}

.sticky-summary {
    position: sticky;
    top: 124px;
}

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

.checkout-form h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.checkout-form label {
    display: grid;
    gap: 8px;
    color: #555;
}

.static-content {
    max-width: 860px;
    font-size: 18px;
    color: #555;
    line-height: 1.85;
    letter-spacing: -0.006em;
}

.narrow-page {
    max-width: 980px;
}

/* =========================
   FOOTER
========================= */

.club,
.footer-newsletter {
    display: none !important;
}

.site-footer {
    background: #000;
    color: #fff;
    padding: 0;
    border-top: 1px solid #000;
}

.site-footer a {
    color: inherit;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(4, minmax(140px, .55fr));
    gap: 42px;
    padding: 56px 42px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.footer-brand > a {
    display: inline-block;
    margin-bottom: 20px;
    font-size: clamp(36px, 4vw, 62px);
    line-height: .92;
    font-weight: 500;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.footer-brand p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.footer-column h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin: 11px 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 42px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-grid {
    display: none;
}

.toast {
    position: fixed;
    top: 116px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 14px 20px;
    z-index: 100;
    font-size: 14px;
    box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .ck-header {
        grid-template-columns: 220px 1fr auto;
        padding: 0 24px;
    }

    .ck-logo {
        font-size: 34px;
    }

    .ck-nav {
        gap: 22px;
    }

    .home-floating-brands,
    .home-hero-brand-slider {
        width: min(980px, calc(100% - 280px));
    }

    .home-index-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-index-categories article {
        border-bottom: 1px solid var(--line);
    }

    .home-index-club-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-index-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-index-benefit {
        border-bottom: 1px solid var(--line);
    }

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

    .ck-toolbar {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ck-sort-area {
        justify-content: flex-end;
    }

    .shop-recommendations-track {
        grid-auto-columns: calc((100vw - 16px) / 4);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1180px) {
    .kf-related-showcase {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .kf-related-left {
        grid-column: 1 / -1;
    }

    .kf-related-list {
        display: flex;
        overflow-x: auto;
        gap: 34px;
        margin-top: 34px;
        padding-bottom: 8px;
    }

    .kf-related-list button {
        white-space: nowrap;
        font-size: 46px;
    }
}

@media (max-width: 1100px) {
    .kf-classic-section,
    .kf-classic-half {
        min-height: 720px;
    }

    .kf-classic-content h2 {
        font-size: clamp(56px, 8vw, 92px);
    }

    .kf-rewards-section {
        min-height: 560px;
    }
}

@media (max-width: 980px) {
    .ck-header {
        grid-template-columns: 1fr auto;
        min-height: 78px;
    }

    .ck-nav {
        grid-column: 1 / -1;
        order: 3;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 12px;
    }

    .ck-nav a {
        padding: 8px 0;
        white-space: nowrap;
    }

    .ck-nav a::after {
        bottom: 0;
    }

    .ck-actions {
        gap: 14px;
    }

    .ck-lang {
        display: none;
    }

    .home-floating-header {
        top: 34px;
    }

    .home-floating-top {
        min-height: 72px;
        padding: 14px 18px 8px;
    }

    .home-floating-logo {
        font-size: 34px;
    }

    .home-floating-actions {
        right: 18px;
        gap: 10px;
    }

    .home-floating-actions .ck-lang {
        display: none;
    }

    .home-floating-brands {
        width: calc(100% - 36px);
        min-height: 56px;
        padding: 0 18px;
    }

    .home-floating-brand-track {
        height: 56px;
        gap: 30px;
        animation-duration: 18s;
    }

    .home-floating-brand-track span {
        font-size: 14px;
    }

    .home-hero-brand-slider {
        top: 16px;
        left: 18px;
        right: 18px;
        width: auto;
        min-height: 58px;
        transform: none;
        padding: 0 18px;
    }

    .home-brand-track,
    .home-brand-track-inner {
        height: 58px;
    }

    .home-brand-track-inner {
        gap: 30px;
        animation-duration: 18s;
    }

    .home-brand-track-inner span {
        font-size: 14px;
    }

    .home-hero-video {
        min-height: calc(100vh - 34px);
    }

    .home-hero-content {
        width: calc(100% - 36px);
        min-height: calc(100vh - 34px);
        padding: 120px 0 170px;
    }

    .home-hero-content h1 {
        font-size: clamp(54px, 12vw, 86px);
    }

    .home-hero-text {
        font-size: 18px;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .home-featured-card {
        display: none;
    }

    .home-video-controls {
        left: 18px;
        right: 18px;
        grid-template-columns: 24px 24px 1fr;
    }

    .home-video-controls .time,
    .home-video-controls .full {
        display: none;
    }

    .home-index-categories {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .home-index-categories article {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-index-categories article:last-child {
        border-bottom: 0;
    }

    .home-index-club {
        padding: 44px 18px;
    }

    .home-index-newsletter {
        grid-template-columns: 1fr;
        height: auto;
    }

    .home-index-newsletter input,
    .home-index-newsletter button {
        height: 58px;
    }

    .home-index-newsletter input {
        border-right: 1px solid #b9b9b9;
        border-bottom: 0;
    }

    .home-index-benefits {
        grid-template-columns: 1fr;
    }

    .home-index-benefit {
        min-height: 108px;
        padding: 24px 18px;
        border-right: 0;
    }

    .ck-shop-hero,
    .ck-toolbar,
    .product-page,
    .page,
    .section-head,
    .hero-content,
    .categories,
    .product-grid {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

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

    .ck-product-grid {
        padding-bottom: 56px;
    }

    .ck-product-media img {
        aspect-ratio: 3 / 4.35;
    }

    .product-layout,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .product-info {
        position: static;
        padding-top: 20px;
    }

    .thumbs {
        display: flex;
        padding-top: 0;
        order: 2;
        overflow-x: auto;
    }

    .main-media {
        order: 1;
    }

    .product-info {
        order: 3;
    }

    .sticky-summary {
        position: static;
    }

    .shop-recommendations {
        padding-bottom: 64px;
    }

    .shop-recommendations-head {
        min-height: 96px;
        padding: 0 18px;
    }

    .shop-recommendations-controls button {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }

    .shop-recommendations-controls span {
        font-size: 38px;
    }

    .shop-recommendations-track {
        grid-auto-columns: calc((100vw - 9px) / 3);
        gap: 3px;
    }

    .ck-explore-more {
        padding: 0 18px 56px;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 62px;
        height: 62px;
        font-size: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 44px 18px;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 18px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .kf-related-showcase {
        grid-template-columns: 1fr;
        padding: 64px 18px;
        gap: 34px;
    }

    .kf-related-left h2 {
        font-size: 62px;
        letter-spacing: -0.032em;
    }

    .kf-related-eyebrow {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .kf-related-list {
        margin-top: 28px;
    }

    .kf-related-list button {
        font-size: 34px;
    }

    .kf-related-media {
        transform: none;
    }

    .kf-related-media img {
        border-radius: 18px;
    }

    .kf-related-info h3 {
        font-size: 58px;
        letter-spacing: -0.032em;
    }

    .kf-related-info > p:not(:first-child) {
        margin-top: 24px;
        font-size: 18px;
    }

    .kf-related-info > a {
        font-size: 20px;
    }

    .kf-related-controls button {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .kf-classic-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .kf-classic-half {
        min-height: 520px;
    }

    .kf-classic-content {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .kf-classic-content h2 {
        font-size: 58px;
    }

    .kf-classic-content p {
        margin-top: 22px;
        font-size: 17px;
    }

    .kf-classic-content div {
        gap: 22px;
        margin-top: 24px;
    }

    .kf-rewards-section {
        min-height: 540px;
    }

    .kf-rewards-content {
        padding: 64px 18px 70px;
    }

    .kf-rewards-logo {
        margin-bottom: 42px;
        font-size: 38px;
    }

    .kf-rewards-content h2 {
        font-size: 64px;
    }

    .kf-rewards-content > p:not(.kf-rewards-logo) {
        margin-top: 30px;
        font-size: 18px;
    }

    .kf-rewards-content > a {
        min-height: 60px;
        min-width: 180px;
        margin-top: 34px;
    }
}

@media (max-width: 640px) {
    .promo-bar {
        font-size: 12px;
        min-height: 34px;
    }

    .ck-header {
        padding: 0 14px;
    }

    .ck-logo {
        font-size: 28px;
    }

    .ck-icon {
        width: 24px;
        height: 24px;
    }

    .ck-icon svg {
        width: 21px;
        height: 21px;
    }

    .home-floating-logo {
        font-size: 28px;
    }

    .home-floating-top {
        justify-items: start;
    }

    .home-floating-brands {
        width: calc(100% - 24px);
    }

    .home-hero-content {
        padding-top: 112px;
    }

    .home-hero-content h1 {
        font-size: 48px;
    }

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

    .home-index-categories h2 {
        font-size: 44px;
    }

    .home-index-categories div {
        gap: 28px;
        font-size: 18px;
    }

    .home-index-club h2 {
        font-size: 42px;
    }

    .home-index-club p {
        font-size: 18px;
    }

    .ck-shop-hero {
        padding: 26px 14px 18px;
    }

    .ck-shop-hero h1 {
        font-size: 27px;
        margin-bottom: 22px;
    }

    .ck-category-tabs {
        gap: 24px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .ck-category-tabs a {
        white-space: nowrap;
    }

    .ck-toolbar {
        padding: 16px 14px;
    }

    .ck-filter-form {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .ck-filter-menu summary {
        min-width: auto;
        height: 44px;
        padding: 0 15px;
        white-space: nowrap;
    }

    .ck-filter-dropdown {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 168px;
        min-width: 0;
        max-height: 60vh;
    }

    .ck-sort-area {
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .ck-sort-form select {
        width: 150px;
        height: 44px;
    }

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

    .ck-product-media img,
    .product-media img {
        aspect-ratio: 3 / 4.45;
    }

    .ck-wishlist {
        right: 10px;
        top: 10px;
    }

    .ck-badge {
        left: 10px;
        bottom: 10px;
        font-size: 10px;
        padding: 6px 8px;
    }

    .ck-swatches {
        padding: 12px 10px 8px;
        gap: 6px;
    }

    .ck-swatches span {
        width: 18px;
        height: 18px;
    }

    .ck-product-card h3 {
        padding: 0 10px;
        font-size: 14px;
    }

    .ck-card-price {
        padding: 10px 10px 0;
        font-size: 13px;
    }

    .ck-sale-note {
        padding: 8px 10px 18px;
        font-size: 13px;
    }

    .shop-recommendations-head {
        align-items: flex-end;
        min-height: 92px;
        padding-bottom: 18px;
    }

    .shop-recommendations-track {
        grid-auto-columns: calc((100vw - 4px) / 2);
        gap: 2px;
    }

    .shop-recommendations-controls {
        gap: 10px;
    }

    .ck-explore-panel a {
        font-size: 42px;
    }

    .actions,
    .field-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cart-item img {
        width: 92px;
        height: 120px;
    }

    .cart-item-side {
        grid-column: 1 / -1;
        justify-items: start;
        text-align: left;
    }

    .footer-brand > a {
        font-size: 38px;
    }

    .kf-rewards-content h2 {
        font-size: 46px;
        line-height: 1;
        letter-spacing: -0.032em;
    }

    .product-info h1 {
        font-size: 38px;
        line-height: 1;
        letter-spacing: -0.032em;
    }

    .price {
        font-size: 24px;
    }

    .kf-related-left h2,
    .kf-related-info h3 {
        letter-spacing: -0.032em;
    }
}

@media (max-width: 480px) {
    .kf-classic-half {
        min-height: 430px;
    }

    .kf-classic-content h2 {
        font-size: 48px;
    }

    .kf-classic-content p {
        font-size: 15px;
    }

    .kf-classic-content div {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .kf-rewards-logo {
        font-size: 32px;
    }
}

