/* ═══════════════════════════════════════════════════════════
   Kokken Homepage — Sections below the Hero
   ═══════════════════════════════════════════════════════════ */

/* ── Shared col-full padding (Storefront override) ── */
.kk-homepage .col-full {
    padding-left: 24px;
    padding-right: 24px;
}

/* ══════════════════════════════════════════════════════════
   ② SHIPPING BAR
   ══════════════════════════════════════════════════════════ */
.kk-hp-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 52px;
}
.kk-hp-shipping svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.85;
}
.kk-hp-shipping strong {
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   ③ FEATURED CATEGORIES
   ══════════════════════════════════════════════════════════ */
.kk-hp-cats {
    margin-bottom: 60px;
}
.kk-hp-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.kk-hp-cat {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    text-decoration: none;
    background: #111;
}

.kk-hp-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.kk-hp-cat:hover img {
    transform: scale(1.06);
}

/* Gradient overlay always visible — stronger on hover */
.kk-hp-cat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background 0.3s;
}

.kk-hp-cat:hover::after {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.30) 55%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

.kk-hp-cat__label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.kk-hp-cat:hover .kk-hp-cat__label {
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════
   ④ ⑤ ⑥ PRODUCT SECTIONS
   ══════════════════════════════════════════════════════════ */
.kk-hp-section {
    padding-bottom: 56px;
}
.kk-hp-section--alt {
    background: #f9f9f9;
    padding-top: 48px;
    margin-bottom: 0;
}
.kk-hp-section--alt + .kk-hp-section {
    padding-top: 48px;
}

/* Section title — thin lines either side */
.kk-hp-section__title {
    display: flex !important;
    align-items: center;
    gap: 18px;
    text-align: center;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    color: #1a1a1a !important;
    margin: 0 0 36px !important;
    text-transform: none !important;
}
.kk-hp-section__title::before,
.kk-hp-section__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e2e2;
}
.kk-hp-section__title span {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   ⑦ SERVICES
   ══════════════════════════════════════════════════════════ */
.kk-hp-services {
    background: #111;
    padding: 52px 0;
    margin-bottom: 0;
}
.kk-hp-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.kk-hp-service {
    text-align: center;
    color: #fff;
}
.kk-hp-service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 16px;
    transition: border-color 0.2s, background 0.2s;
}
.kk-hp-service:hover .kk-hp-service__icon {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}
.kk-hp-service__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}
.kk-hp-service__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
    letter-spacing: 0.02em;
}
.kk-hp-service__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ⑧ BRAND CAROUSEL
   ══════════════════════════════════════════════════════════ */
.kk-hp-brands {
    padding: 44px 0 52px;
    border-top: 1px solid #efefef;
}
.kk-hp-brands .col-full {
    max-width: 1100px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .kk-hp-cats__grid {
        gap: 12px;
    }
    .kk-hp-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 36px;
    }
}

@media (max-width: 600px) {
    .kk-hp-shipping {
        font-size: 12px;
        margin-bottom: 32px;
        text-align: center;
    }
    .kk-hp-cats__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .kk-hp-cat {
        aspect-ratio: 16 / 7;
    }
    .kk-hp-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .kk-hp-service__text {
        display: none; /* hide desc on mobile, keep title + icon */
    }
    .kk-hp-section__title {
        font-size: 17px !important;
    }
}
