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

:root {
    --black: #050505;
    --white: #ffffff;
    --line: #dedede;
    --muted: #6b6b6b;
    --sale: #c90000;
    --showcase-1: #f2dfaf;
    --showcase-2: #dfb970;
    --showcase-3: #c99752;

    font-family: "Inter Tight", Arial, Helvetica, sans-serif;
}

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

html {
    width: 100%;
    overflow-x: clip;
}

body {
    width: 100%;
    margin: 0;
    overflow-x: clip;
    overflow-y: visible;
    background: #fff;
    color: #050505;
    font-family: "Inter Tight", Arial, Helvetica, sans-serif;
    font-size: 16px;
}

body.is-locked {
    overflow: hidden;
}

body,
button,
input,
select,
textarea {
    letter-spacing: -.03em;
}

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

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

button {
    cursor: pointer;
}

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

svg {
    display: block;
}


/* =========================================================
   PROMO
========================================================= */

.promo-bar {
    position: relative;
    z-index: 500;

    min-height: 38px;

    display: grid;
    place-items: center;

    padding: 8px 16px;

    background: #000;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-align: center;
}


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

.ck-header {
    position: relative;
    z-index: 300;

    min-height: 104px;

    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;

    gap: 24px;

    padding: 0 34px;

    border-bottom: 1px solid #ddd;

    background: #fff;
}

.ck-logo {
    display: inline-flex;
    align-items: center;

    width: fit-content;
}

.ck-logo img {
    width: 200px;
    height: auto;
}

.ck-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(20px, 2.2vw, 42px);

    font-size: 14px;
    font-weight: 600;
}

.ck-nav a {
    position: relative;

    padding: 40px 0;
}

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

.ck-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.ck-lang {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;
    font-weight: 700;
}

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

.ck-lang a.active {
    opacity: 1;
}

.ck-icon {
    position: relative;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;
    color: #111;
}

.ck-icon svg {
    width: 22px;
    height: 22px;

    stroke-width: 1.7;
}

.cart-icon span {
    position: absolute;

    right: -4px;
    top: -4px;

    min-width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    padding: 0 4px;

    border-radius: 999px;

    background: #000;
    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   HAMBURGER
========================================================= */

.ck-mobile-menu-button {
    display: none;

    position: relative;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    padding: 0;

    border: 0;

    background: transparent;
    color: currentColor;
}

.ck-mobile-menu-button span {
    position: absolute;

    left: 8px;

    width: 22px;
    height: 2px;

    border-radius: 10px;

    background: currentColor;
}

.ck-mobile-menu-button span:first-child {
    top: 13px;
}

.ck-mobile-menu-button span:last-child {
    top: 22px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ck-mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 5000;

    width: 100%;
    height: 100dvh;

    display: flex;
    flex-direction: column;

    padding: 0 20px 22px;

    overflow-y: auto;

    background: #fff;
    color: #111;

    opacity: 0;
    visibility: hidden;

    transform: translateX(100%);

    pointer-events: none;

    transition:
        transform .3s cubic-bezier(.2, .8, .2, 1),
        opacity .2s ease,
        visibility .2s ease;
}

.ck-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    pointer-events: auto;
}

.ck-mobile-menu-top {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    border-bottom: 1px solid #ddd;
}

.ck-mobile-menu-logo {
    display: inline-flex;
    align-items: center;
}

.ck-mobile-menu-logo img {
    width: 155px;
    height: auto;
}

.ck-mobile-menu-close {
    position: relative;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent;
}

.ck-mobile-menu-close span {
    position: absolute;

    left: 9px;
    top: 19px;

    width: 22px;
    height: 2px;

    background: #111;
}

.ck-mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.ck-mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.ck-mobile-menu-nav {
    display: flex;
    flex-direction: column;

    padding: 12px 0 20px;
}

.ck-mobile-menu-nav a {
    min-height: 54px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #e5e5e5;

    font-size: 24px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: -.04em;
}

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

.ck-mobile-menu-bottom {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding-top: 20px;

    border-top: 1px solid #ddd;

    font-size: 13px;
    font-weight: 600;
}

.ck-mobile-menu-languages {
    display: flex;
    align-items: center;

    gap: 11px;
}

.ck-mobile-menu-languages a {
    opacity: .4;
}

.ck-mobile-menu-languages a.active {
    opacity: 1;
}


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

.home-floating-header {
    position: absolute;

    left: 0;
    right: 0;
    top: 38px;

    z-index: 350;

    height: 126px;

    pointer-events: none;
}

.home-floating-logo {
    position: absolute;

    left: 28px;
    top: 34px;

    z-index: 2;

    display: inline-flex;

    pointer-events: auto;
}

.home-floating-logo img {
    width: clamp(250px, 20vw, 390px);

    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 7px 24px rgba(0,0,0,.22));
}

.home-floating-actions {
    position: absolute;

    right: 34px;
    top: 46px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #fff;

    pointer-events: auto;
}

.home-floating-actions .ck-icon,
.home-floating-actions .ck-mobile-menu-button,
.home-floating-actions .ck-lang {
    color: #fff;
}

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


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

.home-hero-video {
    position: relative;

    min-height: calc(100vh - 38px);

    overflow: hidden;

    background: #111;

    isolation: isolate;
}

.home-hero-video video,
.home-hero-fallback {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home-hero-fallback {
    z-index: 0;

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

.home-hero-video video {
    z-index: 1;
}

.home-hero-video::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.48),
            rgba(0,0,0,.04)
        );

    pointer-events: none;
}


/* =========================================================
   HERO BRAND SLIDER
========================================================= */

.home-hero-brand-slider {
    position: absolute;

    left: 50%;
    top: 86px;

    z-index: 4;

    width: min(1020px, calc(100% - 730px));
    min-height: 46px;

    transform: translateX(-50%);

    padding: 0 26px;

    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;

    box-shadow: 0 18px 70px rgba(0,0,0,.12);
}

.home-brand-track {
    width: 100%;
    height: 46px;

    overflow: hidden;
}

.home-brand-track-inner {
    width: max-content;
    height: 46px;

    display: flex;
    align-items: center;

    gap: 30px;

    animation: kfBrandMarquee 24s linear infinite;
}

.home-brand-track-inner span {
    color: rgba(255,255,255,.95);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

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

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


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {
    position: relative;

    z-index: 4;

    width: calc(100% - 80px);
    min-height: calc(100vh - 38px);

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 140px;

    color: #fff;
}

.home-hero-kicker {
    margin: 0 0 18px;

    font-size: 17px;
}

.home-hero-content h1 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(66px, 7vw, 116px);
    line-height: .94;

    font-weight: 800;

    letter-spacing: -.06em;
}

.home-hero-text {
    max-width: 570px;

    margin: 30px 0 0;

    font-size: 20px;
    line-height: 1.45;
}

.home-hero-actions {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-top: 40px;
}

.primary-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    background: #fff;
    color: #111;

    font-weight: 700;
}

.secondary-link {
    padding-bottom: 6px;

    border-bottom: 1px solid rgba(255,255,255,.8);

    font-weight: 600;
}


/* =========================================================
   FEATURED
========================================================= */

.home-featured-card {
    position: absolute;

    right: clamp(34px, 6vw, 96px);
    top: 50%;

    z-index: 4;

    width: min(280px, 30vw);

    transform: translateY(-42%);

    padding: 18px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 18px;

    background: rgba(255,255,255,.72);

    backdrop-filter: blur(18px);

    color: #111;
}

.featured-head {
    display: flex;
    justify-content: space-between;

    font-size: 12px;
    font-weight: 700;
}

.home-featured-card img {
    width: 100%;

    aspect-ratio: 1.25 / 1;

    object-fit: contain;

    margin: 22px 0 16px;
}

.home-featured-card h3,
.home-featured-card p {
    margin: 0 0 6px;

    text-align: center;
}

.featured-button {
    min-height: 40px;

    margin-top: 16px;

    display: grid;
    place-items: center;

    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 600;
}

.featured-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 14px;
}

.featured-nav button {
    width: 32px;
    height: 32px;

    border: 1px solid #bbb;
    border-radius: 50%;

    background: #fff;
}


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

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

    padding: 50px 0;

    border-bottom: 1px solid #ddd;
}

.home-index-categories article {
    min-height: 150px;

    display: grid;
    align-content: center;

    padding: 0 22px;

    border-right: 1px solid #ddd;

    text-align: center;
}

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

.home-index-categories h2 {
    margin: 0 0 20px;

    font-size: clamp(36px, 3.4vw, 64px);
    line-height: .96;

    font-weight: 400;
}

.home-index-categories div {
    display: flex;
    justify-content: center;

    gap: 34px;
}

.home-index-categories a {
    padding-bottom: 5px;

    border-bottom: 1px solid #aaa;
}


/* =========================================================
   SHOWCASE
========================================================= */

.kf-related-showcase {
    position: relative;

    width: 100%;
    min-height: 760px;

    display: grid;
    grid-template-columns:
        minmax(260px, .88fr)
        minmax(360px, .95fr)
        minmax(340px, 1fr);

    align-items: center;

    gap: clamp(38px, 5vw, 84px);

    padding: 72px 48px;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            var(--showcase-1),
            var(--showcase-2) 58%,
            var(--showcase-3)
        );

    color: #fff;

    isolation: isolate;
}

.kf-related-bg {
    position: absolute;

    inset: 0;

    z-index: -2;

    overflow: hidden;
}

.kf-related-bg img {
    position: absolute;

    inset: -70px;

    width: calc(100% + 140px);
    height: calc(100% + 140px);

    object-fit: cover;

    opacity: .08;

    filter:
        blur(42px)
        brightness(1.25);
}

.kf-related-left,
.kf-related-media,
.kf-related-info {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.kf-related-eyebrow {
    margin: 0 0 16px;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.kf-related-left h2 {
    margin: 0;

    font-size: clamp(60px, 6.4vw, 104px);
    line-height: .87;

    font-weight: 800;

    letter-spacing: -.065em;
}

.kf-related-list {
    max-height: 270px;

    display: flex;
    flex-direction: column;

    gap: 9px;

    margin-top: 38px;

    overflow-y: auto;

    scrollbar-width: none;
}

.kf-related-list::-webkit-scrollbar {
    display: none;
}

.kf-related-list-item {
    display: block;

    width: fit-content;
    max-width: 100%;

    color: rgba(255,255,255,.32);

    font-size: clamp(23px, 2.2vw, 40px);
    line-height: 1;

    font-weight: 500;

    pointer-events: none;

    transition:
        color .22s ease,
        transform .22s ease,
        opacity .22s ease;
}

.kf-related-list-item.active {
    color: #fff;

    transform: translateX(6px);
}

.kf-related-media {
    min-width: 0;
}

.kf-related-media img {
    width: 100%;

    aspect-ratio: 1.08 / 1;

    object-fit: cover;

    border-radius: 22px;

    box-shadow: 0 28px 80px rgba(0,0,0,.16);

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.kf-related-media.is-changing img {
    opacity: .25;

    transform: scale(.975);
}

.kf-related-info {
    max-width: 580px;
}

.kf-related-home-title {
    margin: 0;

    font-size: clamp(48px, 5vw, 82px);
    line-height: .92;

    font-weight: 800;

    letter-spacing: -.06em;
}

.kf-related-brand-title {
    margin: 0;

    font-size: clamp(54px, 5.5vw, 90px);
    line-height: .9;

    font-weight: 800;

    letter-spacing: -.06em;

    text-transform: uppercase;
}

.kf-related-product-type {
    margin: 15px 0 0;

    font-size: clamp(25px, 2vw, 38px);
    line-height: 1;

    font-weight: 400;
}

.kf-related-product-name {
    margin: 16px 0 0;

    color: rgba(255,255,255,.76);

    font-size: 16px;
}

.kf-related-description {
    max-width: 500px;

    margin: 24px 0 0;

    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.45;
}

.kf-related-product-link {
    display: inline-flex;

    margin-top: 24px;

    padding-bottom: 5px;

    border-bottom: 2px solid #fff;

    font-size: 18px;
    font-weight: 800;
}

.kf-related-controls {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 28px;
}

.kf-related-controls button {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.94);
    color: #111;

    font-size: 24px;
}

.kf-related-progress {
    position: absolute;

    right: 22px;
    top: 18%;

    width: 2px;
    height: 64%;

    background: rgba(255,255,255,.25);
}

.kf-related-progress span {
    position: absolute;

    inset: 0;

    background: #fff;

    transform: scaleY(0);
    transform-origin: top;
}


/* =========================================================
   RELATED DESKTOP STICKY SCROLL
========================================================= */

.kf-related-scroll-shell {
    position: relative;

    width: 100%;

    /*
     * 1 viewport za prikaz sekcije +
     * dodatni scroll prostor za menjanje proizvoda.
     */
    height:
        calc(
            100vh
            + ((var(--related-items, 6) - 1) * 72vh)
        );

    /*
     * Mora ostati visible.
     * overflow hidden/auto ovde razbija sticky.
     */
    overflow: visible;

    /*
     * Nema više bele rupe čak ni tokom
     * prelaza između sticky stanja.
     */
    background:
        linear-gradient(
            115deg,
            #f2dfaf,
            #dfb970 58%,
            #c99752
        );
}


/*
 * Važno:
 * roditelji sticky sekcije NE SMEJU da kreiraju
 * sopstveni vertikalni scroll context.
 */
.ck-shop,
.kf-product-page {
    overflow: visible;
}


/*
 * Sama showcase sekcija ostaje zalepljena za viewport
 * dok korisnik prolazi kroz ceo scroll shell.
 */
.kf-related-showcase-shop.kf-related-showcase-scroll,
.kf-related-showcase-product.kf-related-showcase-scroll {
    position: -webkit-sticky;
    position: sticky;

    top: 0;

    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;

    margin: 0;

    align-content: center;

    overflow: hidden;
}


/*
 * Desktop koristi scroll.
 * Strelice nisu potrebne.
 */
.kf-related-showcase-shop.kf-related-showcase-scroll .kf-related-controls,
.kf-related-showcase-product.kf-related-showcase-scroll .kf-related-controls {
    display: none;
}


/*
 * Kada sticky sekcija završi poslednji proizvod,
 * browser nastavlja normalno na sledeću sekciju.
 */
@media (min-width: 821px) {

    .kf-related-scroll-shell {
        isolation: isolate;
    }

    .kf-related-showcase-shop.kf-related-showcase-scroll,
    .kf-related-showcase-product.kf-related-showcase-scroll {
        z-index: 2;
    }

}


/*
 * Mobile NEMA sticky ponašanje.
 */
@media (max-width: 820px) {

    .kf-related-scroll-shell {
        height: auto !important;

        overflow: hidden;

        background:
            linear-gradient(
                115deg,
                #f2dfaf,
                #dfb970 58%,
                #c99752
            );
    }

    .kf-related-showcase-shop.kf-related-showcase-scroll,
    .kf-related-showcase-product.kf-related-showcase-scroll {
        position: relative;

        top: auto;

        height: auto;
        min-height: 0;
        max-height: none;
    }

}

/* =========================================================
   AUTUMN DESKTOP
========================================================= */

.kf-autumn-feature {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #16110d;
}

.kf-autumn-desktop {
    position: relative;

    width: 100%;
    min-height: 720px;
    height: min(850px, 80vw);

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}

.kf-autumn-half {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.kf-autumn-half img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.kf-autumn-half-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03),
            rgba(0,0,0,.22)
        );
}

.kf-autumn-desktop-content {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 4;

    width: min(740px, 60vw);

    transform: translate(-50%, -50%);

    color: #fff;

    text-align: center;
}

.kf-autumn-kicker {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .15em;
}

.kf-autumn-desktop-content h2 {
    margin: 0;

    font-size: clamp(70px, 7vw, 118px);
    line-height: .9;

    font-weight: 300;
}

.kf-autumn-desktop-content p {
    max-width: 560px;

    margin: 28px auto 0;

    font-size: 19px;
    line-height: 1.45;
}

.kf-autumn-links {
    display: flex;
    justify-content: center;

    gap: 44px;

    margin-top: 32px;
}

.kf-autumn-links a {
    padding-bottom: 6px;

    border-bottom: 1px solid #fff;

    font-size: 17px;
}

.kf-autumn-mobile {
    display: none;
}


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

.ck-shop {
    background: #fff;
}

.ck-shop-hero {
    padding: 30px 38px 24px;
}

.ck-shop-hero h1 {
    margin: 0 0 26px;

    font-size: clamp(32px, 3vw, 44px);
}

.ck-category-tabs {
    display: flex;
    align-items: center;

    gap: 34px;

    flex-wrap: wrap;

    color: #666;

    font-size: 14px;
    font-weight: 600;
}

.ck-category-tabs a {
    padding-bottom: 7px;
}

.ck-category-tabs a.active {
    border-bottom: 2px solid #111;

    color: #111;
}

.ck-mobile-shop-toolbar {
    display: none;
}

.ck-toolbar {
    min-height: 84px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 20px;

    padding: 16px 38px;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.ck-filter-form {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

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

.ck-filter-menu summary {
    min-width: 108px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 0 15px;

    border: 1px solid #ccc;
    border-radius: 999px;

    list-style: none;

    font-size: 13px;
}

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

.ck-filter-dropdown {
    position: absolute;

    left: 0;
    top: calc(100% + 8px);

    z-index: 600;

    min-width: 220px;
    max-height: 340px;

    display: grid;

    gap: 11px;

    overflow: auto;

    padding: 16px;

    border: 1px solid #ddd;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.ck-filter-dropdown label {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 14px;
}

.ck-sort-area {
    display: flex;
    align-items: center;

    gap: 16px;
}

.ck-sort-form label {
    display: flex;
    align-items: center;

    gap: 9px;
}

.ck-sort-form select {
    height: 42px;

    padding: 0 14px;

    border: 1px solid #ccc;
    border-radius: 999px;

    background: #fff;
}

.ck-mobile-filter-header,
.ck-mobile-filter-actions,
.ck-mobile-sort-header {
    display: none;
}


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

.ck-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 2px;

    padding-bottom: 60px;

    background: #ddd;
}

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

    background: #fff;
}

.ck-product-media {
    position: relative;

    overflow: hidden;

    background: #eee;
}

.ck-product-media img {
    width: 100%;

    aspect-ratio: 3 / 4;

    object-fit: cover;
}

.ck-wishlist {
    position: absolute;

    right: 12px;
    top: 12px;

    width: 28px;
    height: 28px;

    padding: 0;

    border: 0;

    background: transparent;
}

.ck-wishlist svg {
    width: 22px;
    height: 22px;
}

.ck-badge {
    position: absolute;

    left: 12px;
    bottom: 12px;

    padding: 6px 8px;

    background: #000;
    color: #fff;

    font-size: 10px;
}

.ck-swatches {
    min-height: 38px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 11px 11px 5px;
}

.ck-swatches span {
    width: 17px;
    height: 17px;

    border: 1px solid #aaa;
    border-radius: 50%;

    background: var(--swatch);
}

.ck-product-card h3 {
    margin: 0;

    padding: 2px 11px 0;

    font-size: 14px;
}

.ck-card-price {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    padding: 8px 11px 0;

    font-size: 13px;
}

.ck-sale-note {
    margin: 0;

    padding: 7px 11px 15px;

    color: var(--sale);

    font-size: 11px;
}


/* =========================================================
   SINGLE PRODUCT
========================================================= */

.kf-pdp {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(420px, .88fr);

    align-items: start;

    border-bottom: 1px solid #ddd;
}

.kf-pdp-gallery {
    display: grid;
    grid-template-columns: 82px 1fr;

    gap: 14px;

    padding: 16px 18px 44px 30px;
}

.kf-pdp-thumbs {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.kf-pdp-thumb {
    width: 82px;

    padding: 0;

    border: 1px solid transparent;

    background: #eee;

    opacity: .6;
}

.kf-pdp-thumb.active {
    border-color: #111;

    opacity: 1;
}

.kf-pdp-thumb img {
    width: 100%;

    aspect-ratio: 1 / 1.25;

    object-fit: cover;
}

.kf-pdp-main-media {
    position: relative;

    overflow: hidden;

    background: #f1f1f1;
}

.kf-pdp-main-media > img {
    width: 100%;

    aspect-ratio: 1 / 1.1;

    object-fit: cover;
}

.kf-pdp-info {
    position: sticky;

    top: 0;

    padding: 30px clamp(26px, 4vw, 60px) 60px;

    background: #fff;
}

.kf-pdp-heading-top {
    display: flex;
    justify-content: space-between;

    gap: 18px;
}

.kf-pdp-brand {
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}

.kf-pdp-heart {
    width: 34px;
    height: 34px;

    padding: 0;

    border: 0;

    background: transparent;
}

.kf-pdp-heart svg {
    width: 22px;
    height: 22px;
}

.kf-pdp-heading h1 {
    margin: 18px 0 0;

    font-size: clamp(38px, 4vw, 66px);
    line-height: .98;
}

.kf-pdp-code {
    color: #777;

    font-size: 12px;
}

.kf-pdp-price {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.kf-pdp-price strong {
    font-size: 23px;
}

.kf-pdp-short-description {
    margin-top: 28px;

    font-size: 18px;
    line-height: 1.62;
}

.kf-pdp-buy {
    margin-top: 30px;
}

.kf-pdp-option {
    margin: 0;

    padding: 0 0 24px;

    border: 0;
}

.kf-pdp-color-list {
    display: flex;

    gap: 10px;

    margin-top: 12px;
}

.kf-pdp-color {
    position: relative;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.kf-pdp-color input {
    position: absolute;

    opacity: 0;
}

.kf-pdp-color span {
    width: 27px;
    height: 27px;

    border: 1px solid #aaa;
    border-radius: 50%;

    background: var(--product-color);
}

.kf-pdp-color:has(input:checked) {
    border: 1px solid #111;
}

.kf-pdp-size-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 7px;

    margin-top: 12px;
}

.kf-pdp-size {
    position: relative;
}

.kf-pdp-size input {
    position: absolute;

    opacity: 0;
}

.kf-pdp-size span {
    min-height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid #bbb;
}

.kf-pdp-size input:checked + span {
    background: #111;
    color: #fff;
}

.kf-pdp-quantity-row {
    display: flex;
    justify-content: space-between;

    padding: 18px 0;

    border-top: 1px solid #ddd;
}

.kf-pdp-add {
    width: 100%;
    min-height: 56px;

    border: 0;

    background: #111;
    color: #fff;

    font-weight: 600;
}

.kf-pdp-delivery {
    display: grid;

    gap: 22px;

    margin-top: 30px;

    padding: 29px 0;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.kf-pdp-delivery > div {
    display: flex;

    gap: 18px;
}

.kf-pdp-delivery svg {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;
}

.kf-pdp-delivery p {
    margin: 0;
}

.kf-pdp-delivery strong {
    display: block;

    margin-bottom: 5px;

    font-size: 18px;
}

.kf-pdp-delivery span {
    font-size: 16px;
}

.kf-pdp-accordions details {
    border-bottom: 1px solid #ddd;
}

.kf-pdp-accordions summary {
    position: relative;

    padding: 28px 42px 28px 0;

    list-style: none;

    font-size: 18px;
    font-weight: 700;
}

.kf-pdp-accordions details > div {
    padding: 0 34px 30px 0;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    /* PROMO */

    .promo-bar {
        min-height: 32px;

        padding: 6px 10px;

        font-size: 11px;
    }


    /* =====================================================
       NORMAL HEADER MOBILE
    ====================================================== */

    .ck-header {
        min-height: 66px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 12px;
    }

    .ck-logo {
        flex: 0 0 auto;
    }

    .ck-logo img {
        width: 142px;
    }

    .ck-nav {
        display: none !important;
    }

    .ck-actions {
        margin-left: auto;

        gap: 5px;
    }

    .ck-actions > .ck-lang,
    .ck-actions > .ck-icon:not(.cart-icon) {
        display: none !important;
    }

    .ck-mobile-menu-button {
        display: block !important;
    }

    .ck-icon.cart-icon {
        width: 35px;
        height: 35px;
    }

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

    .cart-icon span {
        right: -2px;
        top: -2px;

        min-width: 15px;
        height: 15px;

        font-size: 8px;
    }


    /* =====================================================
       HOME MOBILE HEADER
    ====================================================== */

    .home-floating-header {
        top: 32px;

        height: 68px;
    }

    .home-floating-logo {
        left: 0px;
        top: -10px;
    }

    .home-floating-logo img {
        width: 142px;
    }

    .home-floating-actions {
        right: 10px;
        top: 14px;

        gap: 5px;
    }

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

    .home-floating-actions .ck-mobile-menu-button {
        display: block !important;
    }


    /* =====================================================
       HERO MOBILE
    ====================================================== */

    .home-hero-video {
        min-height: 700px;
    }

    .home-hero-brand-slider {
        left: 12px;
        right: 12px;
        top: 84px;

        width: auto;
        min-height: 38px;

        transform: none;

        padding: 0 12px;
    }

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

    .home-brand-track-inner {
        gap: 22px;
    }

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

    .home-hero-content {
        width: calc(100% - 28px);
        min-height: 700px;

        padding-top: 142px;
        padding-bottom: 52px;

        justify-content: center;
    }

    .home-hero-kicker {
        margin-bottom: 12px;

        font-size: 14px;
    }

    .home-hero-content h1 {
        max-width: 94%;

        font-size: clamp(45px, 12vw, 60px);
        line-height: .94;
    }

    .home-hero-text {
        max-width: 92%;

        margin-top: 21px;

        font-size: 15px;
        line-height: 1.46;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;

        margin-top: 26px;
    }

    .primary-btn {
        min-height: 46px;

        padding: 0 18px;

        font-size: 14px;
    }

    .secondary-link {
        font-size: 14px;
    }

    .home-featured-card,
    .home-video-controls {
        display: none !important;
    }


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

    .home-index-categories {
        display: grid;
        grid-template-columns: 1fr;

        padding: 0;
    }

    .home-index-categories article {
        min-height: 104px;

        padding: 18px 14px;

        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .home-index-categories h2 {
        margin-bottom: 13px;

        font-size: 34px;
    }

    .home-index-categories div {
        gap: 28px;

        font-size: 14px;
    }


    /* =====================================================
       SHOWCASE MOBILE BASE
    ====================================================== */

    .kf-related-showcase,
    .kf-related-showcase-home,
    .kf-related-showcase-shop,
    .kf-related-showcase-product {
        position: relative !important;

        width: 100%;
        height: auto !important;
        min-height: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        gap: 0 !important;

        padding: 38px 14px 42px !important;

        overflow: hidden;
    }

    .kf-related-left,
    .kf-related-media,
    .kf-related-info {
        width: 100%;
        max-width: none;
    }

    .kf-related-eyebrow {
        margin: 0 0 9px;

        font-size: 10px;
        line-height: 1;

        font-weight: 700;

        letter-spacing: .11em;
    }

    .kf-related-left h2 {
        max-width: 320px;

        margin: 0;

        font-size: clamp(39px, 11.5vw, 50px);
        line-height: .88;
    }


    /* =====================================================
       HOME NEW IN MOBILE

       Naslov
       aktivni brend
       slika
       naziv
       opis
       strelice
    ====================================================== */

    .kf-related-showcase-home .kf-related-list {
        width: 100%;
        max-height: none;

        display: block;

        margin: 19px 0 0;

        overflow: hidden;
    }

    .kf-related-showcase-home .kf-related-list-item {
        display: none;

        margin: 0;

        color: rgba(255,255,255,.7);

        font-size: 15px;
        line-height: 1;

        font-weight: 600;

        transform: none;
    }

    .kf-related-showcase-home .kf-related-list-item.active {
        display: block;

        color: #fff;

        transform: none;
    }

    .kf-related-showcase-home .kf-related-media {
        order: 2;

        margin-top: 22px;
    }

    .kf-related-showcase-home .kf-related-info {
        order: 3;

        margin-top: 22px;
    }


    /* =====================================================
       SHOP / PRODUCT RELATED LIST MOBILE
    ====================================================== */

    .kf-related-showcase-shop .kf-related-list,
    .kf-related-showcase-product .kf-related-list {
        width: calc(100% + 28px);

        margin-left: -14px;
        margin-top: 18px;

        display: flex;
        flex-direction: row;

        gap: 16px;

        max-height: none;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 14px 6px;

        scrollbar-width: none;
    }

    .kf-related-showcase-shop .kf-related-list::-webkit-scrollbar,
    .kf-related-showcase-product .kf-related-list::-webkit-scrollbar {
        display: none;
    }

    .kf-related-showcase-shop .kf-related-list-item,
    .kf-related-showcase-product .kf-related-list-item {
        flex: 0 0 auto;

        color: rgba(255,255,255,.45);

        font-size: 15px;
        line-height: 1.1;

        white-space: nowrap;

        transform: none;
    }

    .kf-related-showcase-shop .kf-related-list-item.active,
    .kf-related-showcase-product .kf-related-list-item.active {
        color: #fff;

        transform: none;
    }


    /* IMAGE */

    .kf-related-media {
        margin-top: 22px;
    }

    .kf-related-media img {
        width: 100%;

        aspect-ratio: 4 / 4.45;

        object-fit: cover;

        border-radius: 14px;

        box-shadow: 0 18px 45px rgba(0,0,0,.14);
    }


    /* RIGHT CONTENT */

    .kf-related-info {
        margin-top: 22px;
    }

    .kf-related-home-title {
        max-width: 340px;

        margin: 0;

        font-size: clamp(34px, 10vw, 44px);
        line-height: .95;
    }

    .kf-related-brand-title {
        margin: 0;

        font-size: clamp(36px, 10.5vw, 48px);
        line-height: .92;
    }

    .kf-related-product-type {
        margin-top: 8px;

        font-size: 20px;
        line-height: 1.1;
    }

    .kf-related-product-name {
        margin-top: 10px;

        font-size: 13px;
        line-height: 1.35;
    }

    .kf-related-description {
        max-width: 360px;

        margin-top: 14px;

        font-size: 14px;
        line-height: 1.48;
    }

    .kf-related-product-link {
        margin-top: 18px;

        padding-bottom: 4px;

        border-bottom-width: 1px;

        font-size: 15px;
    }

    .kf-related-controls {
        display: flex !important;

        gap: 10px;

        margin-top: 20px;
    }

    .kf-related-controls button {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .kf-related-progress {
        display: none !important;
    }


    /* STICKY OFF MOBILE */

    .kf-related-scroll-shell {
        height: auto !important;
    }

    .kf-related-showcase-shop.kf-related-showcase-scroll,
    .kf-related-showcase-product.kf-related-showcase-scroll {
        position: relative !important;

        top: auto !important;

        height: auto !important;
        min-height: 0 !important;
    }


    /* =====================================================
       AUTUMN MOBILE
    ====================================================== */

    .kf-autumn-desktop {
        display: none !important;
    }

    .kf-autumn-mobile {
        display: block !important;

        width: 100%;

        background: #17110d;
    }

    .kf-autumn-mobile-intro {
        position: relative;

        width: 100%;
        height: 430px;

        overflow: hidden;

        background: #17110d;
    }

    .kf-autumn-mobile-couple {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center 34%;
    }

    .kf-autumn-mobile-intro-shade {
        position: absolute;

        inset: 0;

        z-index: 1;

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.03) 0%,
                rgba(0,0,0,.08) 42%,
                rgba(0,0,0,.78) 100%
            );
    }

    .kf-autumn-mobile-intro-content {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 2;

        padding: 24px 16px 28px;

        color: #fff;
    }

    .kf-autumn-mobile-intro-content > span {
        display: block;

        margin-bottom: 9px;

        color: rgba(255,255,255,.75);

        font-size: 9px;
        font-weight: 700;

        letter-spacing: .14em;

        text-transform: uppercase;
    }

    .kf-autumn-mobile-intro-content h2 {
        max-width: 320px;

        margin: 0;

        font-size: 38px;
        line-height: .94;

        font-weight: 300;
    }

    .kf-autumn-mobile-intro-content p {
        max-width: 360px;

        margin: 13px 0 0;

        color: rgba(255,255,255,.92);

        font-size: 13px;
        line-height: 1.45;
    }

    .kf-autumn-mobile-grid {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 1px;

        background: #17110d;
    }

    .kf-autumn-mobile-card {
        position: relative;

        width: 100%;
        height: 260px;

        overflow: hidden;

        background: #33261d;
    }

    .kf-autumn-mobile-card img {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center top;
    }

    .kf-autumn-mobile-card::after {
        content: "";

        position: absolute;

        inset: 0;

        z-index: 1;

        background:
            linear-gradient(
                180deg,
                transparent 52%,
                rgba(0,0,0,.63)
            );
    }

    .kf-autumn-mobile-card-content {
        position: absolute;

        left: 10px;
        right: 10px;
        bottom: 12px;

        z-index: 2;

        display: flex;
        flex-direction: column;

        gap: 6px;

        color: #fff;
    }

    .kf-autumn-mobile-card-title {
        font-size: 11px;
        line-height: 1.2;
    }

    .kf-autumn-mobile-card-link {
        width: fit-content;

        padding-bottom: 3px;

        border-bottom: 1px solid #fff;

        font-size: 12px;
        line-height: 1;

        font-weight: 700;
    }


    /* =====================================================
       SHOP MOBILE
    ====================================================== */

    .ck-shop-hero {
        padding: 20px 12px 10px;
    }

    .ck-shop-hero h1 {
        margin-bottom: 16px;

        font-size: 30px;
    }

    .ck-category-tabs {
        width: calc(100% + 24px);

        margin-left: -12px;

        display: flex;
        flex-wrap: nowrap;

        gap: 7px;

        overflow-x: auto;

        padding: 0 12px 9px;

        scrollbar-width: none;
    }

    .ck-category-tabs::-webkit-scrollbar {
        display: none;
    }

    .ck-category-tabs a {
        flex: 0 0 auto;

        min-height: 34px;

        display: inline-flex;
        align-items: center;

        padding: 0 12px;

        border: 1px solid #ccc;
        border-radius: 999px;

        font-size: 12px;

        white-space: nowrap;
    }

    .ck-category-tabs a.active {
        border-color: #111;

        background: #111;
        color: #fff;
    }

    .ck-mobile-shop-toolbar {
        display: grid;
        grid-template-columns: 1fr 1fr;

        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;

        background: #fff;
    }

    .ck-mobile-shop-toolbar button {
        min-height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 7px;

        padding: 0 10px;

        border: 0;

        background: #fff;

        font-size: 13px;
        font-weight: 600;
    }

    .ck-mobile-shop-toolbar button:first-child {
        border-right: 1px solid #ddd;
    }

    .ck-mobile-shop-toolbar svg {
        width: 16px;
        height: 16px;
    }

    .ck-toolbar {
        display: block;

        min-height: 0;

        padding: 0;

        border: 0;
    }


    /* FILTER DRAWER */

    .ck-filter-form {
        position: fixed;

        left: 0;
        top: 0;
        bottom: 0;

        z-index: 4500;

        width: min(360px, 92vw);

        display: block;

        overflow-y: auto;

        padding: 0 16px 20px;

        background: #fff;

        transform: translateX(-105%);

        transition: transform .28s ease;
    }

    .ck-filter-form.is-mobile-open {
        transform: translateX(0);
    }

    .ck-mobile-filter-header {
        position: sticky;

        top: 0;

        z-index: 2;

        min-height: 62px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid #ddd;

        background: #fff;
    }

    .ck-mobile-filter-header strong {
        font-size: 18px;
    }

    .ck-mobile-filter-header button,
    .ck-mobile-sort-header button {
        width: 36px;
        height: 36px;

        padding: 0;

        border: 0;

        background: transparent;

        font-size: 24px;
    }

    .ck-filter-menu {
        width: 100%;

        border-bottom: 1px solid #ddd;
    }

    .ck-filter-menu summary {
        width: 100%;
        min-width: 0;
        height: 52px;

        padding: 0;

        border: 0;
        border-radius: 0;

        font-size: 14px;
        font-weight: 600;
    }

    .ck-filter-dropdown {
        position: static;

        min-width: 0;
        max-height: none;

        padding: 0 0 15px;

        border: 0;

        box-shadow: none;
    }

    .ck-filter-dropdown label {
        min-height: 34px;

        font-size: 13px;
    }

    .ck-mobile-filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 7px;

        margin-top: 18px;
    }

    .ck-mobile-filter-actions a,
    .ck-mobile-filter-actions button {
        min-height: 44px;

        display: grid;
        place-items: center;

        border: 1px solid #111;

        background: #fff;

        font-size: 12px;
        font-weight: 700;
    }

    .ck-mobile-filter-actions button {
        background: #111;
        color: #fff;
    }


    /* SORT DRAWER */

    .ck-sort-area {
        display: block;
    }

    .ck-sort-area > span,
    .ck-separator {
        display: none;
    }

    .ck-sort-form {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 4500;

        padding: 0 16px 18px;

        background: #fff;

        transform: translateY(105%);

        transition: transform .28s ease;
    }

    .ck-sort-form.is-mobile-open {
        transform: translateY(0);
    }

    .ck-mobile-sort-header {
        min-height: 60px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid #ddd;
    }

    .ck-mobile-sort-header strong {
        font-size: 18px;
    }

    .ck-sort-form label {
        display: block;

        padding-top: 14px;
    }

    .ck-sort-form label > span {
        display: none;
    }

    .ck-sort-form select {
        width: 100%;
        height: 46px;

        border-radius: 0;

        font-size: 13px;
    }


    /* PRODUCT GRID */

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

        gap: 1px;

        padding-bottom: 36px;
    }

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

    .ck-wishlist {
        right: 7px;
        top: 7px;

        width: 25px;
        height: 25px;
    }

    .ck-wishlist svg {
        width: 19px;
        height: 19px;
    }

    .ck-badge {
        left: 7px;
        bottom: 7px;

        padding: 4px 6px;

        font-size: 8px;
    }

    .ck-swatches {
        min-height: 31px;

        gap: 4px;

        padding: 8px 7px 3px;
    }

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

    .ck-product-card h3 {
        padding: 2px 7px 0;

        font-size: 12px;
        line-height: 1.25;
    }

    .ck-card-price {
        gap: 4px;

        padding: 6px 7px 0;

        font-size: 11px;
    }

    .ck-card-price span {
        font-size: 9px;
    }

    .ck-sale-note {
        padding: 6px 7px 12px;

        font-size: 9px;
    }


    /* =====================================================
       PRODUCT PAGE MOBILE
    ====================================================== */

    .kf-pdp {
        display: block;
    }

    .kf-pdp-gallery {
        display: flex;
        flex-direction: column;

        padding: 0;
    }

    .kf-pdp-main-media {
        order: 1;
    }

    .kf-pdp-main-media > img {
        aspect-ratio: 4 / 5;

        object-fit: cover;
    }

    .kf-pdp-thumbs {
        order: 2;

        display: flex;
        flex-direction: row;

        gap: 5px;

        overflow-x: auto;

        padding: 7px 10px;

        scrollbar-width: none;
    }

    .kf-pdp-thumbs::-webkit-scrollbar {
        display: none;
    }

    .kf-pdp-thumb {
        flex: 0 0 58px;

        width: 58px;
    }

    .kf-pdp-info {
        position: relative;

        top: auto;

        padding: 22px 14px 36px;
    }

    .kf-pdp-heading h1 {
        margin-top: 14px;

        font-size: clamp(32px, 9vw, 42px);
    }

    .kf-pdp-price strong {
        font-size: 20px;
    }

    .kf-pdp-short-description {
        margin-top: 20px;

        font-size: 14px;
        line-height: 1.5;
    }

    .kf-pdp-buy {
        margin-top: 24px;
    }

    .kf-pdp-size-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .kf-pdp-size span {
        min-height: 42px;

        font-size: 12px;
    }

    .kf-pdp-add {
        min-height: 50px;

        font-size: 13px;
    }

    .kf-pdp-delivery {
        gap: 14px;

        margin-top: 22px;

        padding: 20px 0;
    }

    .kf-pdp-delivery > div {
        gap: 12px;
    }

    .kf-pdp-delivery svg {
        width: 22px;
        height: 22px;

        flex-basis: 22px;
    }

    .kf-pdp-delivery strong {
        margin-bottom: 3px;

        font-size: 13px;
    }

    .kf-pdp-delivery span {
        font-size: 12px;
        line-height: 1.4;
    }

    .kf-pdp-accordions summary {
        padding: 18px 30px 18px 0;

        font-size: 13px;
    }

    .kf-pdp-accordions details > div {
        padding: 0 20px 18px 0;

        font-size: 13px;
        line-height: 1.55;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ck-mobile-menu-nav a {
        min-height: 52px;

        font-size: 22px;
    }

    .home-hero-video {
        min-height: 670px;
    }

    .home-hero-content {
        min-height: 670px;
    }

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

    .home-hero-brand-slider {
        top: 82px;
    }

    .kf-related-left h2 {
        font-size: 42px;
    }

    .kf-related-home-title {
        font-size: 36px;
    }

    .kf-related-brand-title {
        font-size: 39px;
    }

    .kf-autumn-mobile-intro {
        height: 400px;
    }

    .kf-autumn-mobile-card {
        height: 235px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 2px solid #1769ff;
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

/* =========================================================
   KRISTINE FOX CLUB / SUBSCRIBE
========================================================= */

.kf-rewards-section {
    position: relative;
    width: 100%;
    min-height: 610px;

    display: grid;
    place-items: center;

    overflow: hidden;

    padding: 70px 20px;

    color: #fff;
    text-align: center;

    isolation: isolate;
}

.kf-rewards-bg {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        radial-gradient(
            circle at 18% 15%,
            rgba(255,255,255,.26),
            transparent 33%
        ),
        radial-gradient(
            circle at 84% 82%,
            rgba(255,255,255,.18),
            transparent 34%
        ),
        linear-gradient(
            118deg,
            #8ca79b 0%,
            #d8a774 38%,
            #e7d8a6 68%,
            #87aaa7 100%
        );

    background-size: 180% 180%;

    animation: kfClubGradient 12s ease-in-out infinite alternate;
}

.kf-rewards-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.08)
        );
}

@keyframes kfClubGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.kf-rewards-content {
    width: min(980px, 100%);
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.kf-rewards-logo {
    margin: 0 0 34px;

    color: #fff;

    font-size: 19px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.kf-rewards-content h2 {
    max-width: 980px;

    margin: 0 auto;

    color: #fff;

    font-size: clamp(62px, 6.8vw, 112px);
    line-height: .92;

    font-weight: 700;

    letter-spacing: -.055em;
}

.kf-rewards-content > p:not(.kf-rewards-logo) {
    max-width: 700px;

    margin: 28px auto 0;

    color: rgba(255,255,255,.94);

    font-size: 20px;
    line-height: 1.45;
}

.kf-club-form {
    width: min(720px, 100%);

    margin: 38px auto 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.78);
    border-radius: 999px;

    background: rgba(255,255,255,.09);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.kf-club-form input {
    width: 100%;
    height: 64px;

    padding: 0 26px;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    font-size: 16px;
}

.kf-club-form input::placeholder {
    color: rgba(255,255,255,.75);
}

.kf-club-form button {
    min-height: 64px;

    padding: 0 22px;

    border: 0;
    border-left: 1px solid rgba(255,255,255,.4);

    background: rgba(255,255,255,.96);
    color: #111;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   BENEFITS / DOSTAVA / POVRAT / SIGURNA KUPOVINA
========================================================= */

.home-index-benefits,
.site-benefits,
.footer-benefits {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;

    background: #fff;
    color: #111;
}

.home-index-benefit,
.site-benefit,
.footer-benefit {
    min-width: 0;
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 26px 30px;

    border-right: 1px solid #dedede;
}

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

.home-index-benefit svg,
.site-benefit svg,
.footer-benefit svg {
    width: 30px !important;
    height: 30px !important;

    max-width: 30px !important;
    max-height: 30px !important;

    flex: 0 0 30px;

    stroke-width: 1.5;
}

.home-index-benefit p,
.site-benefit p,
.footer-benefit p {
    margin: 0;
}

.home-index-benefit strong,
.site-benefit strong,
.footer-benefit strong {
    display: block;

    margin-bottom: 4px;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 700;
}

.home-index-benefit span,
.site-benefit span,
.footer-benefit span {
    display: block;

    color: #666;

    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   FALLBACK ZA BENEFIT MARKUP AKO JE SVG DIREKTNO U SEKCIJI
========================================================= */

.home-index-benefits svg,
.site-benefits svg,
.footer-benefits svg {
    max-width: 34px;
    max-height: 34px;
}


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

.site-footer {
    position: relative;
    z-index: 10;

    width: 100%;

    background: #050505;
    color: #fff;
}

.footer-main {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        repeat(4, minmax(120px, .55fr));

    gap: clamp(28px, 4vw, 70px);

    padding: 58px 42px 54px;

    border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-brand {
    min-width: 0;
}

.footer-brand > a {
    display: inline-flex;
}

.footer-brand > a img {
    width: min(290px, 100%);
    height: auto;

    filter: brightness(0) invert(1);
}

.footer-brand > p {
    max-width: 410px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.63);

    font-size: 14px;
    line-height: 1.65;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 12px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-column a {
    display: block;

    width: fit-content;

    margin: 11px 0;

    color: rgba(255,255,255,.7);

    font-size: 14px;
    line-height: 1.35;

    transition: color .2s ease;
}

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

.footer-bottom {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding: 20px 42px;

    color: rgba(255,255,255,.58);

    font-size: 12px;
}

.footer-bottom a {
    color: inherit;
}


/* =========================================================
   FOOTER — ALTERNATIVNI MARKUP FALLBACK

   Pokriva slučaj ako footer.php koristi obične section/div nazive.
========================================================= */

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer p {
    color: inherit;
}

.site-footer img[src*="KristineFox"],
.site-footer img[src*="logo"] {
    max-width: 290px;
    height: auto;
}

.site-footer svg {
    max-width: 32px;
    max-height: 32px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 800;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    padding: 6px;

    border: 1px solid rgba(0,0,0,.3);
    border-radius: 50%;

    background: rgba(255,255,255,.94);
    color: #111;

    box-shadow: 0 8px 28px rgba(0,0,0,.08);

    font-size: 10px;
    line-height: 1.05;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top span {
    display: block;

    font-size: 15px;
    line-height: 1;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    left: 50%;
    top: 22px;

    z-index: 7000;

    max-width: min(420px, calc(100% - 32px));

    transform: translateX(-50%);

    padding: 13px 18px;

    border-radius: 999px;

    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 14px 50px rgba(0,0,0,.2);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


/* =========================================================
   MOBILE CLUB + BENEFITS + FOOTER
========================================================= */

@media (max-width: 820px) {

    /* CLUB */

    .kf-rewards-section {
        min-height: 500px;

        padding: 52px 16px 58px;
    }

    .kf-rewards-logo {
        margin-bottom: 24px;

        font-size: 12px;

        letter-spacing: .14em;
    }

    .kf-rewards-content h2 {
        max-width: 430px;

        font-size: clamp(42px, 11.5vw, 58px);
        line-height: .94;
    }

    .kf-rewards-content > p:not(.kf-rewards-logo) {
        max-width: 400px;

        margin-top: 20px;

        font-size: 14px;
        line-height: 1.45;
    }

    .kf-club-form {
        width: 100%;

        margin-top: 28px;

        grid-template-columns: 1fr;

        border-radius: 16px;
    }

    .kf-club-form input {
        height: 54px;

        padding: 0 16px;

        text-align: center;

        font-size: 14px;
    }

    .kf-club-form button {
        min-height: 52px;

        border-top: 1px solid rgba(255,255,255,.4);
        border-left: 0;

        font-size: 13px;
    }


    /* BENEFITS */

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

    .home-index-benefit,
    .site-benefit,
    .footer-benefit {
        min-height: 82px;

        gap: 14px;

        padding: 18px 16px;

        border-right: 0;
        border-bottom: 1px solid #dedede;
    }

    .home-index-benefit:last-child,
    .site-benefit:last-child,
    .footer-benefit:last-child {
        border-bottom: 0;
    }

    .home-index-benefit svg,
    .site-benefit svg,
    .footer-benefit svg,
    .home-index-benefits svg,
    .site-benefits svg,
    .footer-benefits svg {
        width: 24px !important;
        height: 24px !important;

        max-width: 24px !important;
        max-height: 24px !important;

        flex: 0 0 24px !important;
    }

    .home-index-benefit strong,
    .site-benefit strong,
    .footer-benefit strong {
        margin-bottom: 3px;

        font-size: 13px;
    }

    .home-index-benefit span,
    .site-benefit span,
    .footer-benefit span {
        font-size: 11px;
        line-height: 1.35;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 18px 34px;
    }

    .footer-brand > a img {
        width: 190px;
    }

    .footer-brand > p {
        max-width: 350px;

        margin-top: 18px;

        font-size: 12px;
        line-height: 1.55;
    }

    .footer-column h3 {
        margin-bottom: 14px;

        font-size: 10px;
    }

    .footer-column a {
        margin: 8px 0;

        font-size: 13px;
    }

    .footer-bottom {
        min-height: 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

        padding: 20px 18px 26px;

        font-size: 11px;
    }

    .site-footer img[src*="KristineFox"],
    .site-footer img[src*="logo"] {
        max-width: 190px;
    }


    /* BACK TO TOP */

    .back-to-top {
        right: 14px;
        bottom: 14px;

        width: 48px;
        height: 48px;

        font-size: 9px;
    }

    .back-to-top span {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kf-rewards-section {
        min-height: 470px;

        padding-top: 46px;
        padding-bottom: 50px;
    }

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

    .footer-main {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* =========================================================
   SHOP — ISTRAŽITE JOŠ
========================================================= */

.ck-explore-more {
    position: relative;

    width: 100%;

    padding: 80px 42px 92px;

    border-top: 1px solid #dedede;

    background: #fff;
    color: #111;
}

.ck-explore-panel {
    width: min(520px, 100%);
}

.ck-explore-panel > p {
    margin: 0 0 30px;

    color: #777;

    font-size: 14px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.ck-explore-panel a {
    display: block;

    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid #d7d7d7;

    color: #111;

    font-size: clamp(42px, 4.4vw, 68px);
    line-height: .95;

    font-weight: 600;

    letter-spacing: -.055em;

    transition:
        padding-left .22s ease,
        color .22s ease;
}

.ck-explore-panel a:first-of-type {
    border-top: 1px solid #d7d7d7;
}

.ck-explore-panel a:hover {
    padding-left: 10px;
}


/* =========================================================
   ISTRAŽITE JOŠ — MOBILE
========================================================= */

@media (max-width: 820px) {

    .ck-explore-more {
        padding: 48px 16px 56px;

        border-top: 1px solid #ddd;
    }

    .ck-explore-panel {
        width: 100%;
    }

    .ck-explore-panel > p {
        margin-bottom: 22px;

        font-size: 11px;
    }

    .ck-explore-panel a {
        min-height: 62px;

        display: flex;
        align-items: center;

        padding: 14px 0;

        font-size: clamp(32px, 9vw, 42px);
        line-height: .95;
    }

    .ck-explore-panel a:hover {
        padding-left: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ck-explore-more {
        padding:
            42px
            14px
            48px;
    }

    .ck-explore-panel a {
        min-height: 58px;

        font-size: 34px;
    }

}

/* =========================================================
   SHOP — FILTERS / PRODUCT GRID FIX
   2026-08
========================================================= */


/* =========================================================
   SHOP BACKGROUND
========================================================= */

.ck-shop {
    background: #fff;
}

.ck-shop-hero {
    background: #fff;
}


/*
 * Pošto smo uklonili stari inline category tabs red,
 * hero više ne treba veliki donji prostor.
 */
.ck-shop-hero {
    padding-bottom: 28px;
}


/* =========================================================
   TOOLBAR
========================================================= */

.ck-toolbar {
    position: relative;

    z-index: 20;

    background: #fff;

    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}


/* =========================================================
   PRODUCT GRID — REMOVE GREY BACKGROUND
========================================================= */

.ck-product-grid {
    background: #fff;
}

.ck-product-grid > * {
    background: #fff;
}


/*
 * Ovo je siva pozadina koju trenutno vidiš iza slike proizvoda.
 */
.ck-product-media {
    background: #fff !important;
}


/*
 * Sama slika ostaje bez veštačke sive pozadine.
 */
.ck-product-media img {
    background: #fff;
}


/* =========================================================
   FILTER DROPDOWNS
========================================================= */

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

.ck-filter-dropdown {
    background: #fff;

    border: 1px solid #ddd;

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.10);
}


/* =========================================================
   COLOR FILTER
========================================================= */

.ck-color-filter-dropdown {
    min-width: 230px;
}


/*
 * Svaka boja:
 *
 * ○ Powder Pink
 * ○ Cream
 * ○ Black
 */
.ck-color-filter-option {
    display: flex !important;
    align-items: center;

    gap: 12px;
}


/*
 * Native radio ostaje funkcionalan,
 * ali ga vizuelno skrivamo jer imamo color circle.
 */
.ck-color-filter-option > input[type="radio"] {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: 0;

    opacity: 0;

    pointer-events: none;
}


/* COLOR CIRCLE */

.ck-filter-color-swatch {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: block;

    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 50%;

    background:
        var(
            --filter-color,
            #999
        );

    box-shadow:
        inset 0 0 0 2px #fff;

    transition:
        transform 0.15s ease,
        outline-color 0.15s ease;
}


/*
 * "Sve" nema konkretnu boju.
 */
.ck-filter-color-all {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #fff 0 47%,
            #111 48% 52%,
            #fff 53% 100%
        );
}


/*
 * Aktivna boja dobija crni spoljašnji ring.
 */
.ck-color-filter-option
input[type="radio"]:checked
+
.ck-filter-color-swatch {
    outline: 2px solid #111;
    outline-offset: 2px;

    transform: scale(0.92);
}


.ck-color-filter-option:hover
.ck-filter-color-swatch {
    transform: scale(1.06);
}


/* =========================================================
   SIZE FILTER
========================================================= */

.ck-size-filter-dropdown {
    min-width: 190px;
}


/*
 * XS, S, M... ostaju jednostavni radio izbori.
 */
.ck-size-filter-dropdown label {
    cursor: pointer;
}


/* =========================================================
   FILTER MENU ITEMS
========================================================= */

.ck-filter-dropdown label {
    min-height: 42px;

    display: flex;
    align-items: center;

    padding:
        8px
        14px;

    cursor: pointer;
}

.ck-filter-dropdown label:hover {
    background: #f7f7f7;
}


/* =========================================================
   FILTER SUMMARY
========================================================= */

.ck-filter-menu summary {
    user-select: none;

    cursor: pointer;
}


/* =========================================================
   PRODUCT CARD COLOR SWATCHES
========================================================= */

/*
 * Ako product-card već prikazuje color dots,
 * uklanjamo sivu pozadinu oko njih.
 */
.ck-product-colors,
.ck-product-swatches {
    background: transparent;
}


/* =========================================================
   EMPTY RESULT
========================================================= */

.ck-empty {
    background: #fff;
}


/* =========================================================
   RELATED / EXPLORE
========================================================= */

.ck-shop .kf-related-scroll-shell {
    background: #fff;
}

.ck-shop .ck-explore-more {
    background: #fff;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

    /*
     * Dropdown treba da ostane iznad product grid-a.
     */
    .ck-filter-menu[open] {
        z-index: 50;
    }

    .ck-filter-menu[open]
    .ck-filter-dropdown {
        z-index: 60;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

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


    /*
     * Mobile filter drawer/panel ne treba shadow kao
     * desktop dropdown.
     */
    .ck-filter-dropdown {
        box-shadow: none;
    }


    .ck-color-filter-dropdown,
    .ck-size-filter-dropdown {
        min-width: 0;
        width: 100%;
    }


    .ck-filter-color-swatch {
        width: 24px;
        height: 24px;

        flex-basis: 24px;
    }

}

/* =========================================================
   PRODUCT CARD COLOR SWATCH BUTTONS
========================================================= */

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

.ck-swatch {
    width: 22px;
    height: 22px;

    display: inline-grid;
    place-items: center;

    flex: 0 0 22px;

    padding: 0;

    border: 1px solid transparent;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.ck-swatch > span {
    width: 14px;
    height: 14px;

    display: block;

    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 50%;

    background: var(--swatch);
}

.ck-swatch.is-active {
    border-color: #111;
}

.ck-swatch:hover:not(:disabled) {
    border-color: #777;
}

.ck-swatch.is-disabled,
.ck-swatch:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* =========================================================
   SINGLE PRODUCT — VARIANTS / GALLERY / LIGHTBOX
   2026-08
========================================================= */


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

.kf-product-page {
    background: #fff;
    color: #111;
}


/* =========================================================
   PDP LAYOUT
========================================================= */

.kf-pdp {
    width: min(1600px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(380px, 0.75fr);

    gap: 42px;

    padding:
        34px
        32px
        60px;
}


/* =========================================================
   GALLERY
========================================================= */

.kf-pdp-gallery {
    min-width: 0;

    display: grid;
    grid-template-columns:
        88px
        minmax(0, 1fr);

    gap: 16px;

    align-items: start;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.kf-pdp-thumbs {
    display: grid;

    gap: 10px;

    align-content: start;

    max-height: 760px;

    overflow-y: auto;

    scrollbar-width: thin;
}

.kf-pdp-thumb {
    width: 100%;

    display: block;

    padding: 0;

    border: 1px solid transparent;
    border-radius: 0;

    background: #fff;

    cursor: pointer;

    overflow: hidden;
}

.kf-pdp-thumb img {
    width: 100%;

    aspect-ratio: 3 / 4;

    object-fit: contain;

    background: #fff;
}

.kf-pdp-thumb:hover,
.kf-pdp-thumb.active {
    border-color: #111;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.kf-pdp-main-media {
    position: relative;

    min-width: 0;

    background: #fff;
}

.kf-pdp-main-image-button {
    width: 100%;

    min-height: 680px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: #fff;

    cursor: zoom-in;
}

.kf-pdp-main-image-button img {
    width: 100%;
    height: auto;

    max-height: 760px;

    object-fit: contain;

    object-position: center center;

    background: #fff;
}

.kf-pdp-media-badge {
    position: absolute;

    left: 14px;
    top: 14px;

    padding: 7px 10px;

    background: #111;
    color: #fff;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .05em;
}


/* =========================================================
   INFO COLUMN
========================================================= */

.kf-pdp-info {
    min-width: 0;

    padding-top: 4px;
}

.kf-pdp-heading {
    padding-bottom: 22px;

    border-bottom: 1px solid #e4e4e4;
}

.kf-pdp-heading-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

.kf-pdp-brand {
    font-size: 13px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.kf-pdp-heart {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid #ddd;
    border-radius: 50%;

    background: #fff;
    color: #111;
}

.kf-pdp-heart svg {
    width: 19px;
    height: 19px;

    stroke-width: 1.6;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.kf-pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 6px;

    margin-top: 12px;

    color: #767676;

    font-size: 11px;
    line-height: 1.4;
}

.kf-pdp-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.kf-pdp-breadcrumb a:hover {
    color: #111;
    text-decoration: underline;
}

.kf-pdp-heading h1 {
    margin:
        18px
        0
        8px;

    font-size: clamp(26px, 2.1vw, 38px);
    font-weight: 500;
    line-height: 1.08;
}

.kf-pdp-code {
    margin: 0;

    color: #888;

    font-size: 11px;
}


/* =========================================================
   PRICE
========================================================= */

.kf-pdp-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;

    gap: 9px;

    margin-top: 18px;
}

.kf-pdp-price strong {
    font-size: 19px;
}

.kf-pdp-price del {
    color: #888;

    font-size: 14px;
}

.kf-pdp-price span {
    color: #b00020;

    font-size: 12px;
    font-weight: 700;
}

.kf-pdp-short-description {
    margin:
        22px
        0
        0;

    color: #555;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   BUY FORM
========================================================= */

.kf-pdp-buy {
    margin-top: 26px;

    display: grid;

    gap: 24px;
}

.kf-pdp-option {
    margin: 0;
    padding: 0;

    border: 0;
}

.kf-pdp-option legend {
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
}

.kf-pdp-option legend strong {
    margin-left: 6px;

    font-weight: 500;
}


/* =========================================================
   COLOR
========================================================= */

.kf-pdp-color-list {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.kf-pdp-color {
    position: relative;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid transparent;
    border-radius: 50%;

    cursor: pointer;
}

.kf-pdp-color input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.kf-pdp-color > span {
    width: 24px;
    height: 24px;

    display: block;

    border: 1px solid rgba(0,0,0,.22);
    border-radius: 50%;

    background:
        var(
            --product-color,
            #999
        );
}

.kf-pdp-color.is-active {
    border-color: #111;
}

.kf-pdp-color:hover:not(.is-disabled) {
    border-color: #777;
}

.kf-pdp-color.is-disabled {
    opacity: .35;

    cursor: not-allowed;
}


/* =========================================================
   SIZE HEADING
========================================================= */

.kf-pdp-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 12px;
}

.kf-pdp-option-heading legend {
    margin: 0;
}

.kf-pdp-size-guide-trigger {
    padding: 0;

    border: 0;

    background: transparent;

    color: #111;

    font-size: 11px;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   SIZE BUTTONS
========================================================= */

.kf-pdp-size-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.kf-pdp-size {
    position: relative;

    min-width: 48px;
    min-height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid #cfcfcf;

    background: #fff;

    cursor: pointer;

    transition:
        border-color .15s ease,
        background .15s ease,
        color .15s ease,
        opacity .15s ease;
}

.kf-pdp-size input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.kf-pdp-size span {
    position: relative;

    z-index: 1;

    font-size: 12px;
    font-weight: 600;
}

.kf-pdp-size:has(input:checked) {
    border-color: #111;

    background: #111;
    color: #fff;
}

.kf-pdp-size:hover:not(.kf-stock-out) {
    border-color: #111;
}


/* =========================================================
   OUT OF STOCK SIZE
========================================================= */

.kf-pdp-size.kf-stock-out {
    color: #a7a7a7;

    border-color: #e3e3e3;

    background: #fafafa;

    cursor: not-allowed;

    opacity: .68;
}

.kf-pdp-size.kf-stock-out span::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 130%;
    height: 1px;

    background: #a4a4a4;

    transform:
        translate(-50%, -50%)
        rotate(-35deg);

    transform-origin: center;
}


/* =========================================================
   LOW STOCK STATES
========================================================= */

.kf-pdp-size.kf-stock-last {
    border-color: #b98686;
}

.kf-pdp-size.kf-stock-few {
    border-color: #c6aa76;
}

.kf-pdp-stock-message {
    min-height: 18px;

    margin:
        10px
        0
        0;

    color: #8a5c28;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   QUANTITY
========================================================= */

.kf-pdp-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.kf-pdp-quantity-row > span {
    font-size: 12px;
    font-weight: 700;
}

.kf-pdp-quantity-control {
    display: grid;
    grid-template-columns:
        40px
        48px
        40px;

    align-items: center;

    border: 1px solid #d7d7d7;
}

.kf-pdp-quantity-control button,
.kf-pdp-quantity-control input {
    height: 40px;

    border: 0;
    border-radius: 0;

    background: #fff;

    text-align: center;
}

.kf-pdp-quantity-control button {
    font-size: 18px;
    line-height: 1;
}

.kf-pdp-quantity-control button:disabled {
    color: #bbb;

    cursor: not-allowed;
}

.kf-pdp-quantity-control input {
    width: 100%;

    padding: 0;

    border-left: 1px solid #eee;
    border-right: 1px solid #eee;

    font-size: 12px;
    font-weight: 700;

    -moz-appearance: textfield;
}

.kf-pdp-quantity-control input::-webkit-outer-spin-button,
.kf-pdp-quantity-control input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}


/* =========================================================
   ADD TO CART
========================================================= */

.kf-pdp-add {
    width: 100%;
    min-height: 54px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .05em;

    transition:
        background .15s ease,
        color .15s ease,
        opacity .15s ease;
}

.kf-pdp-add:hover:not(:disabled) {
    background: #fff;
    color: #111;
}

.kf-pdp-add:disabled {
    opacity: .4;

    cursor: not-allowed;
}


/* =========================================================
   DELIVERY
========================================================= */

.kf-pdp-delivery {
    display: grid;

    gap: 12px;

    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid #e7e7e7;
}

.kf-pdp-delivery > div {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.kf-pdp-delivery svg {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    stroke-width: 1.4;
}

.kf-pdp-delivery p {
    margin: 0;

    display: grid;

    gap: 3px;
}

.kf-pdp-delivery strong {
    font-size: 12px;
}

.kf-pdp-delivery span {
    color: #777;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   ACCORDIONS
========================================================= */

.kf-pdp-accordions {
    margin-top: 24px;

    border-top: 1px solid #ddd;
}

.kf-pdp-accordions details {
    border-bottom: 1px solid #ddd;
}

.kf-pdp-accordions summary {
    min-height: 50px;

    display: flex;
    align-items: center;

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;
}

.kf-pdp-accordions details > div {
    padding:
        0
        0
        18px;

    color: #666;

    font-size: 12px;
    line-height: 1.6;
}

.kf-pdp-accordions p,
.kf-pdp-accordions ul {
    margin: 0;
}

.kf-pdp-accordions ul {
    padding-left: 17px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

body.kf-lightbox-open {
    overflow: hidden;
}

.kf-pdp-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

    background: rgba(255,255,255,.985);

    color: #111;
}

.kf-pdp-lightbox[hidden] {
    display: none !important;
}

.kf-pdp-lightbox-media {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    padding:
        48px
        90px;
}

.kf-pdp-lightbox-media img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    user-select: none;
}

.kf-pdp-lightbox-close,
.kf-pdp-lightbox-prev,
.kf-pdp-lightbox-next {
    position: absolute;

    z-index: 2;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: rgba(255,255,255,.92);
    color: #111;

    cursor: pointer;
}

.kf-pdp-lightbox-close {
    right: 24px;
    top: 20px;

    width: 46px;
    height: 46px;

    font-size: 32px;
    font-weight: 300;
}

.kf-pdp-lightbox-prev,
.kf-pdp-lightbox-next {
    top: 50%;

    width: 50px;
    height: 50px;

    transform: translateY(-50%);

    font-size: 26px;
}

.kf-pdp-lightbox-prev {
    left: 22px;
}

.kf-pdp-lightbox-next {
    right: 22px;
}


/* =========================================================
   RELATED / EXPLORE
========================================================= */

.kf-product-page .kf-related-scroll-shell {
    background: #fff;
}

.kf-product-page .ck-explore-more {
    background: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .kf-pdp {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, .75fr);

        gap: 28px;

        padding:
            26px
            20px
            50px;
    }

    .kf-pdp-gallery {
        grid-template-columns:
            72px
            minmax(0, 1fr);
    }

    .kf-pdp-main-image-button {
        min-height: 560px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .kf-pdp {
        display: block;

        padding:
            0
            0
            42px;
    }


    /* GALLERY */

    .kf-pdp-gallery {
        display: flex;
        flex-direction: column-reverse;

        gap: 10px;
    }

    .kf-pdp-main-media {
        width: 100%;
    }

    .kf-pdp-main-image-button {
        width: 100%;
        min-height: 0;

        aspect-ratio: 3 / 4;

        padding: 0;
    }

    .kf-pdp-main-image-button img {
        width: 100%;
        height: 100%;

        max-height: none;

        object-fit: contain;

        background: #fff;
    }


    /* THUMBNAILS */

    .kf-pdp-thumbs {
        width: 100%;

        display: flex;

        gap: 7px;

        padding:
            0
            12px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
    }

    .kf-pdp-thumbs::-webkit-scrollbar {
        display: none;
    }

    .kf-pdp-thumb {
        width: 64px;

        flex: 0 0 64px;
    }


    /* INFO */

    .kf-pdp-info {
        padding:
            22px
            16px
            0;
    }

    .kf-pdp-heading h1 {
        font-size: 26px;
    }

    .kf-pdp-breadcrumb {
        font-size: 10px;
    }


    /* COLORS */

    .kf-pdp-color {
        width: 36px;
        height: 36px;
    }

    .kf-pdp-color > span {
        width: 25px;
        height: 25px;
    }


    /* SIZES */

    .kf-pdp-size-list {
        gap: 7px;
    }

    .kf-pdp-size {
        min-width: 46px;
        min-height: 42px;
    }


    /* LIGHTBOX */

    .kf-pdp-lightbox-media {
        padding:
            58px
            12px
            44px;
    }

    .kf-pdp-lightbox-prev,
    .kf-pdp-lightbox-next {
        display: none;
    }

    .kf-pdp-lightbox-close {
        right: 12px;
        top: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kf-pdp-info {
        padding-left: 14px;
        padding-right: 14px;
    }

    .kf-pdp-size {
        min-width: 44px;
    }

    .kf-pdp-quantity-control {
        grid-template-columns:
            38px
            44px
            38px;
    }

}

/* =========================================================
   PDP FINAL — SIZE DROPDOWN / DETAILS / RELATED
   2026-08
========================================================= */


/* =========================================================
   PRODUCT INFO TYPOGRAPHY
========================================================= */

.kf-product-page .kf-pdp-brand {
    font-size: 15px;
    font-weight: 800;

    letter-spacing: .14em;
}

.kf-product-page .kf-pdp-heading h1 {
    margin-top: 20px;

    font-size: clamp(32px, 2.8vw, 48px);
    line-height: .98;

    font-weight: 600;

    letter-spacing: -.035em;
}

.kf-product-page .kf-pdp-price strong {
    font-size: 22px;
}

.kf-product-page .kf-pdp-short-description {
    max-width: 620px;

    margin-top: 24px;

    color: #383838;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   PDP OPTIONS
========================================================= */

.kf-product-page .kf-pdp-buy {
    gap: 28px;
}

.kf-product-page .kf-pdp-option legend {
    color: #111;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .015em;
}


/* =========================================================
   SIZE HEADING
========================================================= */

.kf-product-page .kf-pdp-size-section {
    position: relative;
}

.kf-product-page .kf-pdp-option-heading {
    margin-bottom: 12px;
}

.kf-product-page .kf-pdp-option-heading legend {
    margin: 0;

    font-size: 14px;
    font-weight: 800;
}

.kf-product-page .kf-pdp-size-guide-trigger {
    color: #111;

    font-size: 12px;
    font-weight: 600;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    cursor: pointer;
}


/* =========================================================
   SIZE SELECT ROW
========================================================= */

.kf-pdp-size-select-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(125px, auto);

    align-items: center;

    gap: 18px;
}


/* =========================================================
   SIZE DROPDOWN
========================================================= */

.kf-pdp-size-dropdown {
    position: relative;

    width: 100%;
}

.kf-pdp-size-dropdown-trigger {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 0 18px;

    border: 1px solid #bdbdbd;
    border-radius: 0;

    background: #fff;
    color: #111;

    font: inherit;

    cursor: pointer;

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.kf-pdp-size-dropdown-trigger:hover {
    border-color: #111;
}

.kf-pdp-size-dropdown-trigger:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

.kf-pdp-size-dropdown.is-open
.kf-pdp-size-dropdown-trigger {
    border-color: #111;

    box-shadow:
        0 0 0 1px #111;
}

.kf-pdp-size-dropdown-trigger span {
    font-size: 14px;
    font-weight: 650;

    letter-spacing: .01em;
}

.kf-pdp-size-dropdown-trigger svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    stroke-width: 1.5;

    transition:
        transform .2s ease;
}

.kf-pdp-size-dropdown.is-open
.kf-pdp-size-dropdown-trigger svg {
    transform:
        rotate(180deg);
}


/* =========================================================
   SIZE DROPDOWN MENU
========================================================= */

.kf-pdp-size-dropdown-menu {
    position: absolute;

    left: 0;
    right: 0;
    top: calc(100% + 6px);

    z-index: 50;

    max-height: 360px;

    overflow-y: auto;

    border: 1px solid #cfcfcf;

    background: #fff;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);

    scrollbar-width: thin;
}

.kf-pdp-size-dropdown-menu[hidden] {
    display: none !important;
}


/* =========================================================
   SIZE OPTIONS
========================================================= */

.kf-pdp-size-option {
    width: 100%;
    min-height: 50px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    padding:
        10px
        16px;

    border: 0;
    border-bottom: 1px solid #ececec;

    background: #fff;
    color: #111;

    text-align: left;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}

.kf-pdp-size-option:last-child {
    border-bottom: 0;
}

.kf-pdp-size-option:hover:not(:disabled) {
    background: #f6f6f4;
}

.kf-pdp-size-option.is-selected {
    background: #111;
    color: #fff;
}

.kf-pdp-size-option-name {
    position: relative;

    width: fit-content;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .02em;
}

.kf-pdp-size-option small {
    color: #8a5b2d;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}

.kf-pdp-size-option.is-selected small {
    color: rgba(255,255,255,.8);
}


/* =========================================================
   SOLD OUT SIZE
========================================================= */

.kf-pdp-size-option.kf-stock-out,
.kf-pdp-size-option:disabled {
    color: #aaa;

    background: #fafafa;

    cursor: not-allowed;
}

.kf-pdp-size-option.kf-stock-out
.kf-pdp-size-option-name::after,
.kf-pdp-size-option:disabled
.kf-pdp-size-option-name::after {
    content: "";

    position: absolute;

    left: -5%;
    top: 50%;

    width: 110%;
    height: 1px;

    background: #999;

    transform:
        rotate(-12deg);
}

.kf-pdp-size-option.kf-stock-out small,
.kf-pdp-size-option:disabled small {
    color: #aaa;
}


/* =========================================================
   STOCK MESSAGE — RIGHT SIDE
========================================================= */

.kf-product-page .kf-pdp-stock-message {
    min-width: 125px;
    min-height: 18px;

    margin: 0;

    color: #a15f24;

    font-size: 12px;
    font-weight: 750;

    line-height: 1.35;

    text-align: right;
}


/* =========================================================
   MODEL SIZE
========================================================= */

.kf-pdp-model-size {
    margin:
        11px
        0
        0;

    color: #666;

    font-size: 12px;
    line-height: 1.45;
}

.kf-pdp-model-size strong {
    color: #111;

    font-weight: 750;
}


/* =========================================================
   QUANTITY
========================================================= */

.kf-product-page .kf-pdp-quantity-row {
    padding-top: 2px;
}

.kf-product-page .kf-pdp-quantity-row > span {
    font-size: 13px;
    font-weight: 800;
}

.kf-product-page .kf-pdp-quantity-control {
    grid-template-columns:
        42px
        52px
        42px;

    border-color: #cfcfcf;
}

.kf-product-page .kf-pdp-quantity-control button,
.kf-product-page .kf-pdp-quantity-control input {
    height: 44px;
}


/* =========================================================
   ADD TO CART
========================================================= */

.kf-product-page .kf-pdp-add {
    min-height: 58px;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .065em;
}


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

.kf-product-page .kf-pdp-details {
    margin-top: 34px;

    border-top: 1px solid #cfcfcf;
}

.kf-product-page .kf-pdp-details details {
    border-bottom: 1px solid #cfcfcf;
}

.kf-product-page .kf-pdp-details summary {
    position: relative;

    min-height: 68px;

    display: flex;
    align-items: center;

    padding-right: 34px;

    color: #111;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -.015em;

    list-style: none;

    cursor: pointer;
}

.kf-product-page
.kf-pdp-details
summary::-webkit-details-marker {
    display: none;
}

.kf-product-page
.kf-pdp-details
summary::after {
    content: "+";

    position: absolute;

    right: 2px;
    top: 50%;

    transform:
        translateY(-50%);

    color: #111;

    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.kf-product-page
.kf-pdp-details
details[open]
summary::after {
    content: "−";
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.kf-product-page
.kf-pdp-detail-content {
    display: grid;

    gap: 18px;

    padding:
        0
        0
        26px;

    color: #333;

    font-size: 14px;
    line-height: 1.65;
}

.kf-product-page
.kf-pdp-detail-content p {
    margin: 0;
}

.kf-product-page
.kf-pdp-detail-content > p {
    max-width: 620px;
}

.kf-pdp-detail-block {
    display: grid;

    gap: 7px;
}

.kf-pdp-detail-block > strong {
    color: #111;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.kf-pdp-detail-block p {
    max-width: 620px;

    color: #3d3d3d;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   RELATED — KEEP ORIGINAL YELLOW STICKY
========================================================= */

/*
 * U postojećem CSS-u sticky mehanizam već postoji.
 * Ovde samo osiguravamo da PDP koristi isti izgled i da
 * kasniji beli override ne pregazi žutu pozadinu.
 */

.product-page .kf-related-scroll-shell,
.kf-product-page .kf-related-scroll-shell {
    background:
        linear-gradient(
            115deg,
            #f2dfaf,
            #dfb970 58%,
            #c99752
        );
}

@media (min-width: 821px) {

    .product-page .kf-related-scroll-shell,
    .kf-product-page .kf-related-scroll-shell {
        position: relative;

        width: 100%;

        height:
            calc(
                100vh
                + (
                    (
                        var(
                            --related-items,
                            6
                        )
                        - 1
                    )
                    * 72vh
                )
            );

        overflow: visible;

        isolation: isolate;
    }

    .product-page
    .kf-related-showcase-shop.kf-related-showcase-scroll,
    .product-page
    .kf-related-showcase-product.kf-related-showcase-scroll,
    .kf-product-page
    .kf-related-showcase-shop.kf-related-showcase-scroll,
    .kf-product-page
    .kf-related-showcase-product.kf-related-showcase-scroll {
        position: -webkit-sticky;
        position: sticky;

        top: 0;

        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;

        margin: 0;

        overflow: hidden;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .kf-pdp-size-select-row {
        grid-template-columns:
            minmax(0, 1fr)
            120px;

        gap: 12px;
    }

    .kf-product-page
    .kf-pdp-stock-message {
        min-width: 120px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .kf-product-page
    .kf-pdp-heading h1 {
        font-size:
            clamp(
                30px,
                9vw,
                40px
            );
    }

    .kf-product-page
    .kf-pdp-short-description {
        font-size: 14px;
        line-height: 1.62;
    }


    /* SIZE */

    .kf-pdp-size-select-row {
        display: block;
    }

    .kf-pdp-size-dropdown-trigger {
        min-height: 54px;

        padding:
            0
            16px;
    }

    .kf-pdp-size-dropdown-menu {
        max-height: 310px;
    }

    .kf-pdp-size-option {
        min-height: 52px;

        padding:
            11px
            15px;
    }

    .kf-product-page
    .kf-pdp-stock-message {
        min-width: 0;

        margin-top: 9px;

        text-align: left;
    }

    .kf-pdp-model-size {
        margin-top: 10px;
    }


    /* DETAILS */

    .kf-product-page
    .kf-pdp-details {
        margin-top: 30px;
    }

    .kf-product-page
    .kf-pdp-details
    summary {
        min-height: 64px;

        font-size: 17px;
    }

    .kf-product-page
    .kf-pdp-detail-content {
        padding-bottom: 24px;

        font-size: 14px;
    }


    /* RELATED */

    .product-page .kf-related-scroll-shell,
    .kf-product-page .kf-related-scroll-shell {
        height: auto !important;

        overflow: hidden;

        background:
            linear-gradient(
                115deg,
                #f2dfaf,
                #dfb970 58%,
                #c99752
            );
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kf-product-page
    .kf-pdp-option-heading {
        align-items: baseline;
    }

    .kf-product-page
    .kf-pdp-size-guide-trigger {
        font-size: 11px;
    }

    .kf-pdp-size-option {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(105px, auto);

        gap: 10px;
    }

    .kf-pdp-size-option small {
        font-size: 10px;
    }

    .kf-product-page
    .kf-pdp-details
    summary {
        font-size: 16px;
    }

}

/* Quick Add */

.ck-product-card {
    position: relative;
}

.ck-card-quick-add-trigger {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 6;

    min-height: 42px;

    padding: 0 16px;

    border: 1px solid rgba(0, 0, 0, .18);

    background: rgba(255, 255, 255, .94);
    color: #111;

    font: inherit;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.ck-card-quick-add-trigger:hover {
    border-color: #111;

    background: #111;
    color: #fff;
}

.ck-card-quick-add {
    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 8px;

    z-index: 30;

    max-height: calc(100% - 16px);

    overflow-y: auto;

    padding: 16px;

    border: 1px solid #ddd;

    background: #fff;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, .18);
}

.ck-card-quick-add[hidden] {
    display: none;
}

.ck-card-quick-add-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 16px;
}

.ck-card-quick-add-head strong {
    font-size: 14px;
    line-height: 1.2;
}

.ck-card-quick-add-head button {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;
    color: #111;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.ck-card-quick-add form {
    display: grid;

    gap: 16px;
}

.ck-card-quick-add-section {
    display: grid;

    gap: 9px;
}

.ck-card-quick-add-section > span {
    color: #555;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.ck-card-quick-add-colors {
    display: flex;
    align-items: flex-start;

    flex-wrap: wrap;

    gap: 10px;
}

.ck-card-quick-add-color {
    display: grid;
    justify-items: center;

    gap: 5px;

    min-width: 42px;

    padding: 0;

    border: 0;

    background: transparent;
    color: #111;

    cursor: pointer;
}

.ck-card-quick-add-color > span {
    width: 28px;
    height: 28px;

    display: block;

    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 50%;

    background:
        var(
            --quick-add-color,
            #999
        );

    transition:
        box-shadow .18s ease,
        transform .18s ease;
}

.ck-card-quick-add-color small {
    max-width: 70px;

    overflow: hidden;

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.ck-card-quick-add-color.is-active > span {
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 3px #111;

    transform: scale(.92);
}

.ck-card-quick-add-sizes {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 6px;
}

.ck-card-quick-add-size {
    min-height: 40px;

    padding: 0 8px;

    border: 1px solid #ccc;

    background: #fff;
    color: #111;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.ck-card-quick-add-size:hover,
.ck-card-quick-add-size.is-active {
    border-color: #111;

    background: #111;
    color: #fff;
}

.ck-card-quick-add-message {
    min-height: 16px;

    margin: 0;

    color: #9f1d1d;

    font-size: 11px;
    line-height: 1.35;
}

.ck-card-quick-add-submit {
    width: 100%;
    min-height: 46px;

    padding: 0 16px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    font: inherit;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        opacity .18s ease,
        background .18s ease,
        color .18s ease;
}

.ck-card-quick-add-submit:hover:not(:disabled) {
    background: #fff;
    color: #111;
}

.ck-card-quick-add-submit:disabled {
    opacity: .35;

    cursor: not-allowed;
}


/* Quick Add Mobile */

@media (max-width: 820px) {

    .ck-card-quick-add-trigger {
        left: 7px;
        right: 7px;
        bottom: 7px;

        min-height: 34px;

        padding: 0 8px;

        font-size: 9px;
    }

    .ck-card-quick-add {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 5200;

        width: 100%;
        max-height: min(
            76vh,
            620px
        );

        padding:
            18px
            16px
            calc(
                20px
                + env(
                    safe-area-inset-bottom
                )
            );

        border: 0;
        border-top: 1px solid #ddd;

        box-shadow:
            0 -18px 45px
            rgba(0, 0, 0, .16);
    }

    .ck-product-card.is-quick-add-open::after {
        content: "";

        position: fixed;

        inset: 0;

        z-index: 5100;

        background:
            rgba(
                0,
                0,
                0,
                .34
            );
    }

    .ck-card-quick-add-head strong {
        font-size: 17px;
    }

    .ck-card-quick-add-head button {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .ck-card-quick-add-sizes {
        grid-template-columns:
            repeat(
                5,
                minmax(0, 1fr)
            );
    }

    .ck-card-quick-add-size {
        min-height: 44px;

        font-size: 11px;
    }

    .ck-card-quick-add-submit {
        min-height: 50px;

        font-size: 12px;
    }

}


/* Quick Add Small */

@media (max-width: 480px) {

    .ck-card-quick-add {
        max-height: 82vh;
    }

    .ck-card-quick-add-sizes {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }

    .ck-card-quick-add-color > span {
        width: 26px;
        height: 26px;
    }

}

/* Mini Cart */

body.is-mini-cart-open {
    overflow: hidden;
}

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 5990;

    background: rgba(0, 0, 0, 0.38);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.mini-cart-overlay[hidden] {
    display: none;
}

.mini-cart-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;

    z-index: 6000;

    width: min(440px, 100%);
    height: 100dvh;

    display: grid;
    grid-template-rows:
        auto
        minmax(0, 1fr)
        auto;

    background: #fff;
    color: #111;

    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.14);

    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;

    transition:
        transform 0.3s cubic-bezier(.2, .8, .2, 1),
        visibility 0.3s ease;
}

.mini-cart.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mini-cart-head {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 24px;

    border-bottom: 1px solid #e5e5e5;
}

.mini-cart-head > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.mini-cart-head > div > span {
    font-size: 18px;
    font-weight: 700;
}

.mini-cart-head > div > strong {
    color: #777;
    font-size: 13px;
    font-weight: 500;
}

.mini-cart-close {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    background: transparent;
    color: #111;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

.mini-cart-empty {
    display: grid;
    align-content: center;
    justify-items: center;

    gap: 22px;

    padding: 40px 24px;

    text-align: center;
}

.mini-cart-empty p {
    margin: 0;

    color: #555;

    font-size: 15px;
}

.mini-cart-empty a {
    min-width: 190px;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.mini-cart-items {
    min-height: 0;

    overflow-y: auto;

    padding: 0 24px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns:
        92px
        minmax(0, 1fr)
        auto;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid #e8e8e8;
}

.mini-cart-item-image {
    display: block;

    background: #f3f3f3;

    overflow: hidden;
}

.mini-cart-item-image img {
    width: 92px;
    height: 122px;

    display: block;

    object-fit: cover;
}

.mini-cart-item-info {
    min-width: 0;

    padding-top: 2px;
}

.mini-cart-item-info > a {
    display: inline-block;

    margin-bottom: 8px;

    color: #111;
    text-decoration: none;
}

.mini-cart-item-info strong {
    display: block;

    font-size: 13px;
    line-height: 1.35;
}

.mini-cart-item-info p {
    margin: 3px 0 0;

    color: #666;

    font-size: 12px;
    line-height: 1.4;
}

.mini-cart-item-price {
    align-self: start;

    padding-top: 2px;

    white-space: nowrap;

    font-size: 13px;
    font-weight: 700;
}

.mini-cart-item-unavailable {
    margin-top: 6px;

    color: #b42318;

    font-size: 12px;
    font-weight: 600;
}

.mini-cart-footer {
    padding: 20px 24px 24px;

    border-top: 1px solid #e5e5e5;

    background: #fff;
}

.mini-cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 16px;

    font-size: 14px;
}

.mini-cart-subtotal strong {
    font-size: 16px;
}

.mini-cart-actions {
    display: grid;
    gap: 10px;
}

.mini-cart-checkout,
.mini-cart-view-cart {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .04em;
    text-transform: uppercase;

    text-decoration: none;
}

.mini-cart-checkout {
    border: 1px solid #111;

    background: #111;
    color: #fff;
}

.mini-cart-view-cart {
    border: 1px solid #111;

    background: #fff;
    color: #111;
}

.mini-cart-close:focus-visible,
.mini-cart-checkout:focus-visible,
.mini-cart-view-cart:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .mini-cart {
        width: 100%;
    }

    .mini-cart-head {
        min-height: 72px;
        padding: 16px 18px;
    }

    .mini-cart-items {
        padding: 0 18px;
    }

    .mini-cart-item {
        grid-template-columns:
            76px
            minmax(0, 1fr)
            auto;

        gap: 12px;

        padding: 16px 0;
    }

    .mini-cart-item-image img {
        width: 76px;
        height: 102px;
    }

    .mini-cart-footer {
        padding: 16px 18px 20px;
    }
}

/* Cart */

.kf-cart-page {
    min-height: 100vh;
    background: #fff;
    color: #111;
}

.kf-cart-head {
    padding: 54px clamp(20px, 4vw, 64px) 30px;
    border-bottom: 1px solid #e6e6e6;
}

.kf-cart-head p {
    margin: 0 0 8px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kf-cart-head h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
}

.kf-cart-alert {
    margin: 24px clamp(20px, 4vw, 64px) 0;
    padding: 14px 16px;
    border: 1px solid #e7c6c0;
    background: #fff4f2;
    color: #9a2f25;
    font-size: 13px;
    line-height: 1.5;
}

.kf-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 56px;
    padding: 38px clamp(20px, 4vw, 64px) 80px;
}

.kf-cart-products {
    min-width: 0;
}

.kf-cart-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid #e2e2e2;
}

.kf-cart-item:first-child {
    padding-top: 0;
}

.kf-cart-item.is-unavailable {
    opacity: .65;
}

.kf-cart-item-image {
    width: 150px;
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
    background: #f1f1ef;
}

.kf-cart-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kf-cart-item-info {
    min-width: 0;
}

.kf-cart-item-brand {
    margin: 0 0 6px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.kf-cart-item-name {
    display: inline-block;
    margin-bottom: 14px;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.kf-cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-bottom: 18px;
}

.kf-cart-item-options span {
    color: #666;
    font-size: 12px;
}

.kf-cart-item-options strong {
    color: #111;
    font-weight: 500;
}

.kf-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-cart-qty {
    display: inline-grid;
    grid-template-columns: 38px 38px 38px;
    align-items: center;
    min-height: 38px;
    border: 1px solid #ccc;
    background: #fff;
}

.kf-cart-qty form {
    display: contents;
    margin: 0;
}

.kf-cart-qty button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.kf-cart-qty button:hover:not(:disabled) {
    background: #f1f1f1;
}

.kf-cart-qty button:disabled {
    color: #bbb;
    cursor: default;
}

.kf-cart-qty > span {
    height: 38px;
    display: grid;
    place-items: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 12px;
    font-weight: 700;
}

.kf-cart-remove {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
}

.kf-cart-remove:hover {
    color: #111;
}

.kf-cart-remove svg {
    width: 18px;
    height: 18px;
}

.kf-cart-stock {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 10px;
}

.kf-cart-item-warning {
    margin: 10px 0 0;
    color: #a02d2d;
    font-size: 12px;
    font-weight: 600;
}

.kf-cart-item-price {
    align-self: start;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
}

.kf-cart-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

.kf-cart-bottom-actions a,
.kf-cart-bottom-actions button {
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}


/* Summary */

.kf-cart-summary {
    position: relative;
}

.kf-cart-summary-inner {
    position: sticky;
    top: 24px;
    padding: 28px;
    border: 1px solid #ddd;
    background: #f7f7f5;
}

.kf-cart-summary-inner h2 {
    margin: 0 0 26px;
    font-size: 21px;
    font-weight: 600;
}

.kf-cart-promo {
    padding-bottom: 22px;
    border-bottom: 1px solid #d7d7d7;
}

.kf-cart-promo details {
    margin: 0;
}

.kf-cart-promo summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.kf-cart-promo summary::-webkit-details-marker {
    display: none;
}

.kf-cart-promo summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
}

.kf-cart-promo details[open] summary::after {
    content: "−";
}

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

.kf-cart-promo-form input {
    min-width: 0;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 13px;
}

.kf-cart-promo-form button {
    min-width: 92px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.kf-cart-promo-form input:disabled,
.kf-cart-promo-form button:disabled {
    opacity: .45;
}


/* Totals */

.kf-cart-totals {
    padding-top: 22px;
}

.kf-cart-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
}

.kf-cart-totals > div > span {
    color: #555;
}

.kf-cart-totals > div > strong {
    color: #111;
    font-weight: 600;
}

.kf-cart-totals .is-discount > span,
.kf-cart-totals .is-discount > strong {
    color: #a02d2d;
}

.kf-cart-total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #bbb;
}

.kf-cart-total > span {
    color: #111 !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.kf-cart-total > strong {
    font-size: 22px;
    font-weight: 700 !important;
}

.kf-cart-checkout {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 0 20px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.kf-cart-checkout:hover:not(:disabled) {
    background: #fff;
    color: #111;
}

.kf-cart-checkout:disabled {
    border-color: #bbb;
    background: #bbb;
    color: #fff;
    cursor: not-allowed;
}


/* Empty */

.kf-cart-empty {
    min-height: 55vh;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    padding: 60px 20px;
    text-align: center;
}

.kf-cart-empty p {
    margin: 0;
    font-size: 16px;
}

.kf-cart-empty a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}


/* Tablet */

@media (max-width: 1050px) {
    .kf-cart-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 34px;
    }

    .kf-cart-item {
        grid-template-columns: 120px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .kf-cart-item-image {
        width: 120px;
    }
}


/* Mobile */

@media (max-width: 820px) {
    .kf-cart-head {
        padding: 34px 18px 24px;
    }

    .kf-cart-layout {
        display: block;
        padding: 24px 18px 48px;
    }

    .kf-cart-summary {
        margin-top: 40px;
    }

    .kf-cart-summary-inner {
        position: static;
        padding: 22px 18px;
    }

    .kf-cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
        padding: 20px 0;
    }

    .kf-cart-item-image {
        width: 92px;
    }

    .kf-cart-item-price {
        grid-column: 2;
        margin-top: -4px;
    }

    .kf-cart-bottom-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Small */

@media (max-width: 420px) {
    .kf-cart-layout {
        padding-inline: 14px;
    }

    .kf-cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
    }

    .kf-cart-item-image {
        width: 78px;
    }

    .kf-cart-item-name {
        font-size: 15px;
    }

    .kf-cart-qty {
        grid-template-columns: 34px 34px 34px;
    }

    .kf-cart-qty button,
    .kf-cart-qty > span {
        width: 34px;
        height: 34px;
    }

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

    .kf-cart-promo-form button {
        width: 100%;
    }
}

/* Checkout */

.kf-checkout-page {
    min-height: 100vh;
    background: #fff;
    color: #111;
}

.kf-checkout-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);
    min-height: 760px;
}

.kf-checkout-left {
    padding:
        64px
        clamp(30px, 6vw, 96px)
        80px;
}

.kf-checkout-heading,
.kf-checkout-form {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
}

.kf-checkout-heading {
    margin-bottom: 44px;
}

.kf-checkout-heading p {
    margin: 0 0 8px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kf-checkout-heading h1 {
    margin: 0;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
}

.kf-checkout-section {
    margin-bottom: 42px;
}

.kf-checkout-section h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}

.kf-checkout-field {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.kf-checkout-field > span {
    color: #555;
    font-size: 12px;
    font-weight: 500;
}

.kf-checkout-field input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 14px;
    outline: 0;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.kf-checkout-field input:focus {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

.kf-checkout-row {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 14px;
}

.kf-checkout-form-actions {
    display: grid;
    gap: 18px;
    margin-top: 12px;
}

.kf-checkout-form-actions > a {
    width: fit-content;
    color: #555;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.kf-checkout-form-actions > a:hover {
    color: #111;
}

.kf-checkout-submit {
    width: 100%;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background .18s ease,
        color .18s ease;
}

.kf-checkout-submit:hover {
    background: #fff;
    color: #111;
}


/* Summary */

.kf-checkout-summary {
    position: relative;
    border-left: 1px solid #ddd;
    background: #f6f6f4;
}

.kf-checkout-summary-inner {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 620px;
    min-height: 100vh;
    padding:
        64px
        clamp(28px, 4vw, 58px)
        50px;
}

.kf-checkout-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.kf-checkout-summary-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.kf-checkout-summary-head > span {
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}


/* Items */

.kf-checkout-items {
    display: grid;
}

.kf-checkout-item {
    display: grid;
    grid-template-columns:
        92px
        minmax(0, 1fr)
        auto;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.kf-checkout-item:first-child {
    padding-top: 0;
}

.kf-checkout-item-image {
    width: 92px;
    height: 122px;
    overflow: hidden;
    background: #e9e9e7;
}

.kf-checkout-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kf-checkout-item-info {
    min-width: 0;
}

.kf-checkout-item-name {
    display: block;
    margin-bottom: 6px;
    color: #111;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
}

.kf-checkout-item-info > p {
    margin: 0 0 9px;
    color: #777;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kf-checkout-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
}

.kf-checkout-item-options span {
    color: #666;
    font-size: 12px;
}

.kf-checkout-item-price {
    align-self: start;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}


/* Totals */

.kf-checkout-totals {
    padding-top: 24px;
}

.kf-checkout-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 13px;
    font-size: 13px;
}

.kf-checkout-totals > div > span {
    color: #555;
}

.kf-checkout-totals > div > strong {
    color: #111;
    font-weight: 600;
}

.kf-checkout-totals .is-discount > span,
.kf-checkout-totals .is-discount > strong {
    color: #a12d24;
}

.kf-checkout-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #bbb;
}

.kf-checkout-total > span {
    color: #111 !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.kf-checkout-total > strong {
    font-size: 23px;
    font-weight: 700 !important;
}


/* Empty */

.kf-checkout-empty {
    min-height: 60vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 22px;
    padding: 60px 20px;
    text-align: center;
}

.kf-checkout-empty p {
    margin: 0;
    font-size: 16px;
}

.kf-checkout-empty a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}


/* Checkout Tablet */

@media (max-width: 1050px) {
    .kf-checkout-layout {
        grid-template-columns:
            minmax(0, 1fr)
            400px;
    }

    .kf-checkout-left {
        padding-inline: 32px;
    }

    .kf-checkout-summary-inner {
        padding-inline: 28px;
    }
}


/* Checkout Mobile */

@media (max-width: 820px) {
    .kf-checkout-layout {
        display: flex;
        flex-direction: column;
    }

    .kf-checkout-left {
        padding:
            36px
            18px
            48px;
    }

    .kf-checkout-summary {
        border-left: 0;
        border-top: 1px solid #ddd;
    }

    .kf-checkout-summary-inner {
        position: static;
        max-width: none;
        min-height: 0;
        padding:
            34px
            18px
            44px;
    }

    .kf-checkout-heading {
        margin-bottom: 34px;
    }

    .kf-checkout-section {
        margin-bottom: 34px;
    }

    .kf-checkout-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kf-checkout-item {
        grid-template-columns:
            78px
            minmax(0, 1fr);
        gap: 12px;
    }

    .kf-checkout-item-image {
        width: 78px;
        height: 104px;
    }

    .kf-checkout-item-price {
        grid-column: 2;
    }
}


/* Checkout Small */

@media (max-width: 420px) {
    .kf-checkout-left,
    .kf-checkout-summary-inner {
        padding-inline: 14px;
    }

    .kf-checkout-heading h1 {
        font-size: 34px;
    }

    .kf-checkout-item {
        grid-template-columns:
            68px
            minmax(0, 1fr);
        gap: 10px;
    }

    .kf-checkout-item-image {
        width: 68px;
        height: 92px;
    }
}

/* =========================================================
   SHOP — AUDIENCE TABS + CATEGORY DRAWER
   2026-08
========================================================= */


/* =========================================================
   AUDIENCE TABS
========================================================= */

.ck-shop-audience-tabs {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 34px;

    padding:
        0
        38px;

    border-bottom:
        1px solid
        #dedede;

    background: #fff;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

.ck-shop-audience-tabs::-webkit-scrollbar {
    display: none;
}

.ck-shop-audience-tab {
    position: relative;

    min-height: 62px;

    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;

    color: #777;

    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color .18s ease;
}

.ck-shop-audience-tab:hover {
    color: #111;
}

.ck-shop-audience-tab.is-active {
    color: #111;

    font-weight: 600;
}

.ck-shop-audience-tab.is-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: #111;
}


/* =========================================================
   CATEGORY DRAWER — BASE
========================================================= */

.ck-category-drawer-backdrop {
    position: fixed;

    inset: 0;

    z-index: 5190;

    background:
        rgba(
            0,
            0,
            0,
            .28
        );

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.ck-category-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


.ck-category-drawer {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 5200;

    width:
        min(
            460px,
            92vw
        );

    background: #fff;
    color: #111;

    overflow-y: auto;

    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(
            100%
        );

    box-shadow:
        -20px 0 60px
        rgba(
            0,
            0,
            0,
            .12
        );

    transition:
        transform
        .3s
        cubic-bezier(
            .22,
            1,
            .36,
            1
        ),
        visibility .3s ease;
}

.ck-category-drawer.is-open {
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(
            0
        );
}


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

.ck-category-drawer-header {
    position: sticky;

    top: 0;

    z-index: 2;

    min-height: 100px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    padding:
        27px
        30px
        24px;

    border-bottom:
        1px solid
        #dedede;

    background: #fff;
}

.ck-category-drawer-header > div {
    display: grid;

    gap: 7px;
}

.ck-category-drawer-eyebrow {
    color: #777;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.ck-category-drawer-header strong {
    font-size: 27px;
    line-height: 1;

    font-weight: 500;
}

.ck-category-drawer-close {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid
        #111;

    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 27px;
    font-weight: 300;
    line-height: 1;
}


/* =========================================================
   DRAWER CONTENT
========================================================= */

.ck-category-drawer-content {
    padding:
        8px
        30px
        40px;
}

.ck-category-drawer-all,
.ck-category-root-link,
.ck-category-accordion-toggle {
    width: 100%;
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        18px
        0;

    border: 0;
    border-bottom:
        1px solid
        #e4e4e4;

    background: transparent;
    color: #111;

    font: inherit;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;

    text-align: left;

    cursor: pointer;
}

.ck-category-drawer-all,
.ck-category-root-link {
    text-decoration: none;
}

.ck-category-drawer-all:hover,
.ck-category-root-link:hover,
.ck-category-accordion-toggle:hover {
    color: #666;
}

.ck-category-drawer-all.is-active,
.ck-category-root-link.is-active,
.ck-category-accordion-toggle.is-active {
    font-weight: 600;
}


/* =========================================================
   CATEGORY ACCORDION
========================================================= */

.ck-category-accordion {
    width: 100%;
}

.ck-category-accordion-icon {
    flex: 0 0 auto;

    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    transition:
        transform .2s ease;
}

.ck-category-accordion.is-open
.ck-category-accordion-icon {
    transform:
        rotate(
            45deg
        );
}

.ck-category-accordion-panel {
    padding:
        7px
        0
        18px
        18px;

    border-bottom:
        1px solid
        #e4e4e4;
}

.ck-category-accordion-panel[hidden] {
    display: none;
}

.ck-category-child-link {
    min-height: 42px;

    display: flex;
    align-items: center;

    padding:
        8px
        0;

    color: #555;

    font-size: 15px;
    line-height: 1.3;

    text-decoration: none;

    transition:
        color .18s ease,
        padding-left .18s ease;
}

.ck-category-child-link:hover {
    padding-left: 5px;

    color: #111;
}

.ck-category-child-link.is-active {
    color: #111;

    font-weight: 600;
}

.ck-category-child-all {
    margin-bottom: 3px;

    color: #111;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 821px) {

    [data-category-filter-menu]
    > .ck-filter-dropdown {
        display: none !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .ck-shop-audience-tabs {
        min-height: 50px;

        gap: 24px;

        padding:
            0
            14px;

        border-top:
            1px solid
            #dedede;
    }

    .ck-shop-audience-tab {
        min-height: 50px;

        font-size: 14px;
    }


    .ck-category-drawer,
    .ck-category-drawer-backdrop {
        display: none !important;
    }

}

/* =========================================================
   SHOP SUBCATEGORY FILTER
========================================================= */

@media (min-width: 821px) {

    .ck-subcategory-filter-menu {
        display: none;
    }

}

/* =========================================================
   SHOP FILTER DRAWER CONTENT
========================================================= */

.ck-shop-filter-panel[hidden] {
    display: none;
}

.ck-drawer-audience-group {
    border-bottom: 1px solid #e2e2e2;
}

.ck-drawer-audience-group > summary,
.ck-drawer-category-group > summary {
    list-style: none;

    cursor: pointer;
}

.ck-drawer-audience-group > summary::-webkit-details-marker,
.ck-drawer-category-group > summary::-webkit-details-marker {
    display: none;
}

.ck-drawer-audience-group > summary {
    min-height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 19px;
    font-weight: 600;
}

.ck-drawer-audience-group > summary::after {
    content: "+";

    font-size: 25px;
    font-weight: 300;
}

.ck-drawer-audience-group[open] > summary::after {
    content: "×";
}

.ck-drawer-audience-content {
    padding:
        0
        0
        18px
        18px;
}

.ck-drawer-category-group {
    border-bottom: 1px solid #ededed;
}

.ck-drawer-category-group > summary {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #444;

    font-size: 16px;
}

.ck-drawer-category-group > summary::after {
    content: "+";

    font-size: 21px;
}

.ck-drawer-category-group[open] > summary::after {
    content: "×";
}

.ck-drawer-category-content {
    padding:
        0
        0
        10px
        16px;
}

.ck-drawer-option,
.ck-drawer-reset {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        10px
        0;

    color: #555;

    border-bottom:
        1px solid
        #f0f0f0;

    font-size: 15px;
}

.ck-drawer-option:hover,
.ck-drawer-reset:hover {
    color: #111;
}

.ck-drawer-option.is-active {
    color: #111;

    font-weight: 600;
}

.ck-drawer-color-option {
    display: flex;
    align-items: center;
}

.ck-drawer-color-swatch {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            .25
        );

    border-radius: 50%;

    background:
        var(
            --drawer-color
        );
}

.ck-drawer-price-form {
    display: grid;

    gap: 18px;
}

.ck-drawer-price-form label {
    display: grid;

    gap: 8px;
}

.ck-drawer-price-form label span {
    font-size: 13px;
    font-weight: 600;
}

.ck-drawer-price-form input {
    width: 100%;
    height: 50px;

    padding:
        0
        14px;

    border:
        1px solid
        #ccc;

    background: #fff;
}

.ck-drawer-price-form button {
    min-height: 50px;

    border: 0;

    background: #111;
    color: #fff;

    font-weight: 600;
}

.ck-drawer-reset {
    margin-top: 12px;
}


/* =========================================================
   SHOP FILTER DRAWER DESKTOP
========================================================= */

@media (min-width: 821px) {

    .ck-category-drawer {
        width: 460px;
        max-width: 460px;

        display: flex;
        flex-direction: column;

        background: #fff;

        box-shadow:
            -8px 0 28px
            rgba(0, 0, 0, .08);
    }


    /* HEADER */

    .ck-category-drawer-header {
        min-height: 112px;

        flex: 0 0 auto;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding:
            0
            32px;

        border-bottom:
            1px solid
            #cfcfcf;

        background: #fff;
    }

    .ck-category-drawer-header strong {
        color: #111;

        font-size: 25px;
        font-weight: 400;
        line-height: 1;

        letter-spacing: -.04em;
    }

    .ck-category-drawer-close {
        width: 44px;
        height: 44px;

        flex: 0 0 44px;

        display: grid;
        place-items: center;

        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #fafafa;
        color: #111;

        font-size: 30px;
        font-weight: 300;
        line-height: 1;

        cursor: pointer;
    }

    .ck-category-drawer-close:hover {
        background: #f4f4f4;
    }


    /* CONTENT */

    .ck-category-drawer-content {
        flex: 1 1 auto;

        min-height: 0;

        overflow-y: auto;

        padding:
            0
            32px
            0;

        background: #fff;
    }

    .ck-drawer-filters-form {
        height: 100vh;
        display: flex;
        flex-direction: column;
    }


    /* FILTER SECTION */

    .ck-shop-filter-panel {
        width: 100%;

        margin: 0;
        padding: 0;

        border-bottom:
            1px solid
            #cfcfcf;
    }

    .ck-shop-filter-panel::before {
        display: none;
    }

    .ck-shop-filter-panel
    + .ck-shop-filter-panel {
        padding-top: 0;
    }

    .ck-shop-filter-panel:last-of-type {
        border-bottom:
            1px solid
            #cfcfcf;
    }


    /* DETAILS */

    .ck-drawer-filter-group {
        position: relative;

        display: block;

        width: 100%;

        margin: 0;
        padding: 0;
    }


    /* SECTION HEADER */

    .ck-drawer-filter-group > summary {
        position: relative;

        width: 100%;
        min-height: 72px;

        display: flex;
        align-items: center;

        gap: 0;

        margin: 0;

        padding:
            0
            42px
            0
            0;

        list-style: none;

        color: #111;

        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;

        cursor: pointer;
    }

    .ck-drawer-filter-group
    > summary::-webkit-details-marker {
        display: none;
    }

    .ck-drawer-filter-group
    > summary::marker {
        content: "";
    }

    .ck-drawer-filter-group
    > summary
    > span:first-child {
        flex: 0 0 auto;
    }


    /* CHEVRON */

    .ck-drawer-filter-group
    > summary::after {
        content: "";

        position: absolute;

        top: 50%;
        right: 5px;

        width: 9px;
        height: 9px;

        border-right:
            2px solid
            #6e6e6e;

        border-bottom:
            2px solid
            #6e6e6e;

        transform:
            translateY(-70%)
            rotate(45deg);

        transition:
            transform
            180ms
            ease;

        pointer-events: none;
    }

    .ck-drawer-filter-group[open]
    > summary::after {
        transform:
            translateY(-25%)
            rotate(225deg);
    }


    /* CLEAR */

    .ck-drawer-section-clear {
        position: static;

        flex: 0 0 auto;

        display: inline-flex;
        align-items: center;

        margin:
            0
            0
            0
            13px;

        padding:
            0
            0
            0
            13px;

        border: 0;
        border-left:
            1px solid
            #777;

        background: transparent;
        color: #111;

        font: inherit;
        font-size: 15px;
        font-weight: 400;
        line-height: 26px;

        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;

        cursor: pointer;
    }

    .ck-drawer-section-clear::before {
        display: none;
    }

    .ck-drawer-section-clear:hover {
        color: #666;
    }


    /* SECTION BODY */

    .ck-drawer-filter-body {
        display: block;
        width: 100%;
        margin: 0;
        padding: 4px 0 14px;
    }


    /* CHECKBOX ROW */

    .ck-drawer-check-option {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 0;
        padding: 9px 4px;
        color: #222;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.35;
        cursor: pointer;
    }

    .ck-drawer-check-option:hover {
        color: #000;
    }

    .ck-drawer-check-option small {
        color: #777;
        font-size: 15px;
        font-weight: 400;
    }


    /* CHECKBOX */

    .ck-drawer-checkbox {
        position: relative;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        margin: 0;
        appearance: none;
        -webkit-appearance: none;
        border: 1px solid #777;
        border-radius: 2px;
        background: #fff;
        cursor: pointer;
    }

    .ck-drawer-checkbox:checked {
        border-color: #111;
        background: #111;
    }

    .ck-drawer-checkbox:checked::after {
        content: "";
        position: absolute;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
    }

    .ck-drawer-checkbox:focus-visible {
        outline: 2px solid #111;
        outline-offset: 3px;
    }


    /* SUBCATEGORY */

    .ck-drawer-check-option.is-sub {
        padding-left: 36px;
    }


    /* COLOR */

    .ck-drawer-color-grid {
        display: grid;
        grid-template-columns: repeat( 2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .ck-drawer-color-check {
        gap: 12px;
    }

    .ck-drawer-color-swatch {
        width: 20px;
        height: 20px;

        flex: 0 0 20px;

        border:
            1px solid
            rgba(0, 0, 0, .22);

        border-radius: 50%;

        background:
            var(
                --drawer-color,
                #999
            );
    }


    /* SIZE */

    .ck-drawer-size-grid {
        display: grid;

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 8px;

        padding:
            6px
            0
            26px;
    }

    .ck-drawer-size-option {
        position: relative;

        min-width: 0;

        display: block;

        margin: 0;

        cursor: pointer;
    }

    .ck-drawer-size-option input {
        position: absolute;

        width: 1px;
        height: 1px;

        opacity: 0;

        pointer-events: none;
    }

    .ck-drawer-size-option > span {
        min-height: 54px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 4px;

        padding: 8px;

        border:
            1px solid
            #cacaca;

        background: #fff;
        color: #111;

        font-size: 15px;
        font-weight: 500;

        text-align: center;

        transition:
            border-color 160ms ease,
            background-color 160ms ease,
            color 160ms ease;
    }

    .ck-drawer-size-option > span small {
        color: #777;

        font-size: 13px;
        font-weight: 400;
    }

    .ck-drawer-size-option:hover > span {
        border-color: #111;
    }

    .ck-drawer-size-option
    input:checked
    + span {
        border-color: #111;

        background: #111;
        color: #fff;
    }

    .ck-drawer-size-option
    input:checked
    + span
    small {
        color: #ddd;
    }


    /* DRAWER ACTIONS */

    .ck-drawer-filter-actions {
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: auto;
        padding: 18px 0 16px;
        border-top: 1px solid #cfcfcf;
        background: #fff;
    }

    .ck-drawer-clear-all,
    .ck-drawer-view-items {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding:  0 18px;
        border: 1px solid #cacaca;
        border-radius: 999px;
        background: #fff;
        color: #111;
        font: inherit;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .ck-drawer-clear-all:hover {
        border-color: #111;
    }

    .ck-drawer-view-items {
        border-color: #111;

        background: #000;
        color: #fff;
    }

    .ck-drawer-view-items:hover {
        background: #222;
    }

}
/* =========================================================
   SHOP CATEGORY HIERARCHY
========================================================= */

.ck-drawer-audience-group {
    border-bottom: 1px solid #d9d9d9;
}

.ck-drawer-audience-group > summary {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0;

    color: #111;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;

    list-style: none;
    cursor: pointer;
}

.ck-drawer-audience-group > summary::-webkit-details-marker {
    display: none;
}

.ck-drawer-audience-group > summary::after {
    content: "";

    width: 9px;
    height: 9px;

    margin-right: 5px;

    border-right: 2px solid #555;
    border-bottom: 2px solid #555;

    transform: rotate(45deg);

    transition: transform .2s ease;
}

.ck-drawer-audience-group[open] > summary::after {
    transform: rotate(225deg);
}


/* =========================================================
   AUDIENCE CONTENT
========================================================= */

.ck-drawer-audience-content {
    margin: 0 0 20px 0;
    padding: 4px 0 6px 18px;

    border-left: 2px solid #ececec;
}


/* =========================================================
   CATEGORY GROUP
========================================================= */

.ck-drawer-category-group {
    margin: 0;

    border-bottom: 1px solid #eeeeee;
}

.ck-drawer-category-group > summary {
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 12px;

    color: #3f3f3f;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;

    list-style: none;
    cursor: pointer;

    transition:
        color .18s ease,
        background .18s ease;
}

.ck-drawer-category-group > summary:hover {
    background: #f8f8f8;
    color: #111;
}

.ck-drawer-category-group > summary::-webkit-details-marker {
    display: none;
}

.ck-drawer-category-group > summary::after {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 4px;

    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;

    transform: rotate(45deg);

    transition: transform .18s ease;
}

.ck-drawer-category-group[open] > summary {
    color: #111;
    background: #fafafa;
}

.ck-drawer-category-group[open] > summary::after {
    transform: rotate(225deg);
}


/* =========================================================
   SUBCATEGORY AREA
========================================================= */

.ck-drawer-category-content {
    margin: 0 0 8px;
    padding: 8px 14px 12px 18px;

    background: #fafafa;
}


/* =========================================================
   SELECTABLE OPTIONS
========================================================= */

.ck-drawer-audience-content > .ck-drawer-option,
.ck-drawer-category-content > .ck-drawer-option {
    position: relative;

    min-height: 46px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 8px 10px 8px 38px;

    border: 0;

    color: #5d5d5d;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;

    text-decoration: none;

    transition:
        background .15s ease,
        color .15s ease;
}

.ck-drawer-audience-content > .ck-drawer-option:hover,
.ck-drawer-category-content > .ck-drawer-option:hover {
    color: #111;
    background: #f2f2f2;
}

.ck-drawer-audience-content > .ck-drawer-option::before,
.ck-drawer-category-content > .ck-drawer-option::before {
    content: "";

    position: absolute;

    left: 10px;
    top: 50%;

    width: 18px;
    height: 18px;

    border: 1px solid #8a8a8a;
    border-radius: 3px;

    background: #fff;

    transform: translateY(-50%);
}

.ck-drawer-audience-content > .ck-drawer-option.is-active,
.ck-drawer-category-content > .ck-drawer-option.is-active {
    color: #111;
    font-weight: 600;
}

.ck-drawer-audience-content > .ck-drawer-option.is-active::before,
.ck-drawer-category-content > .ck-drawer-option.is-active::before {
    border-color: #111;
    background: #111;
}

.ck-drawer-audience-content > .ck-drawer-option.is-active::after,
.ck-drawer-category-content > .ck-drawer-option.is-active::after {
    content: "";

    position: absolute;

    left: 16px;
    top: 50%;

    width: 5px;
    height: 9px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform:
        translateY(-60%)
        rotate(45deg);
}


/* =========================================================
   ROOT ALL
========================================================= */

.ck-category-drawer-all {
    min-height: 54px;

    display: flex;
    align-items: center;

    margin-bottom: 8px;
    padding: 0 12px;

    border-bottom: 1px solid #e2e2e2;

    color: #111;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================================
   CATEGORY WITHOUT CHILDREN
========================================================= */

.ck-drawer-audience-content
> .ck-drawer-option
+ .ck-drawer-category-group {
    margin-top: 2px;
}
