/* =============================================
   HOME PAGE — PREMIUM FEMININE DESIGN
   Karishmaa Care Foundation
   ============================================= */

/* ===== SHARED BUTTONS ===== */
.kcf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--kcf-radius-full);
    font-family: var(--kcf-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--kcf-duration) var(--kcf-ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.kcf-btn--primary {
    background: var(--kcf-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(42, 166, 246, 0.3);
}

.kcf-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 166, 246, 0.4);
    color: #fff;
}

.kcf-btn--outline {
    background: transparent;
    border-color: var(--kcf-pink);
    color: var(--kcf-pink);
}

.kcf-btn--outline:hover {
    background: var(--kcf-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.kcf-btn--white {
    background: #fff;
    color: var(--kcf-pink);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kcf-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--kcf-purple);
}

/* ===== HERO ===== */
.kcf-home__hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    background: var(--kcf-off-white);
    display: flex;
    align-items: center;
    height: 80vh;
}

.kcf-home__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kcf-home__hero-marquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.kcf-home__hero-marquee-group {
    display: flex;
    gap: 20px;
    height: 100%;
    flex-shrink: 0;
    min-width: 100%;
    padding: 20px 0;
    animation: kcf-hero-marquee 120s linear infinite;
    will-change: transform;
}

@keyframes kcf-hero-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-100% - 20px), 0, 0);
    }
}

.kcf-home__hero-marquee-group img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.kcf-home__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    /* Lowered opacity vastly for image clarity */
    z-index: 1;
}

.kcf-home__hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Content Panel (Formerly Glassmorphism) */
.kcf-home__hero-glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 24px 32px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    max-width: 620px;
    margin: 0;
    text-align: left;
}

.kcf-home__hero-badge {
    display: inline-block;
    background: var(--kcf-gradient-soft);
    color: var(--kcf-pink);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--kcf-radius-full);
    margin-bottom: 20px;
}

.kcf-home__hero-title {
    font-family: var(--kcf-font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--kcf-gray-800);
    line-height: 1.15;
    margin: 0 0 12px;
}

.kcf-home__hero-gradient {
    background: var(--kcf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kcf-home__hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--kcf-gray-800);
    margin: 0 0 20px 0;
    max-width: 100%;
    font-weight: 500;
}

.kcf-home__hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Premium Glowing Button */
.kcf-btn--glow {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.kcf-btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--kcf-gradient-horizontal);
    border-radius: calc(var(--kcf-radius-full) + 2px);
    z-index: -1;
    opacity: 0.5;
    filter: blur(12px);
    transition: all 0.4s ease;
}

.kcf-btn--glow:hover::before {
    opacity: 1;
    filter: blur(16px);
    inset: -4px;
}

.kcf-home__hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.kcf-home__hero-stat {
    display: flex;
    flex-direction: column;
}

.kcf-home__hero-stat-num {
    font-family: var(--kcf-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--kcf-gray-800);
}

.kcf-home__hero-stat-label {
    font-size: 12px;
    color: var(--kcf-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Entrance Animations */
@keyframes kcfFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.kcf-animate-up {
    opacity: 0;
    animation: kcfFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kcf-delay-1 {
    animation-delay: 0.1s;
}

.kcf-delay-2 {
    animation-delay: 0.2s;
}

.kcf-delay-3 {
    animation-delay: 0.3s;
}

.kcf-delay-4 {
    animation-delay: 0.4s;
}

.kcf-delay-5 {
    animation-delay: 0.5s;
}

/* Responsive Adjustments for Hero & Glass (mobile) */
@media (max-width: 768px) {

    /* Pull the glass card down and let it overlap slightly into the next section */
    .kcf-home__hero {
        padding: 80px 0 40px;
        align-items: flex-end;
        margin-bottom: -32px;
        /* subtle overlap onto next section */
    }

    .kcf-home__hero-inner {
        width: 100%;
    }

    .kcf-home__hero-glass {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0 auto;
        transform: translateY(8px);
        /* nudge down within hero on small screens */
    }

    /* Hide categories/products/sellers stats in hero card on mobile */
    .kcf-home__hero-stats {
        display: none !important;
    }
}

/* ===== SECTIONS BASE ===== */
.kcf-home__section {
    padding: 40px 0;
}

.kcf-home__section-header {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kcf-home__section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--kcf-pink);
    margin-bottom: 8px;
}

.kcf-home__section-title {
    font-family: var(--kcf-font-display);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--kcf-gray-800);
    margin: 0;
    position: relative;
    display: inline-block;
}

.kcf-home__section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--kcf-gradient-horizontal);
    border-radius: 3px;
    margin: 12px auto 0;
}

/* ===== CATEGORY SWIPER & CARDS ===== */
.kcf-home__categories {
    background: var(--kcf-off-white);
}

/* Mobile: expandable/collapsible grid (no carousel) — 2 rows × 4 categories + peek + toggle */
@media (max-width: 767px) {
    .kcf-home__categories {
        position: relative;
    }

    .kcf-home__categories-slider {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Wrapper that clips when collapsed — smooth expand/collapse animation */
    .kcf-home__categories-grid-wrap {
        position: relative;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Collapsed: 2 full rows + peek */
    .kcf-home__categories.kcf-cats-collapsed .kcf-home__categories-grid-wrap {
        max-height: 380px;
    }

    /* Expanded: animate to full height (numeric value so transition works) */
    .kcf-home__categories.kcf-cats-expanded .kcf-home__categories-grid-wrap {
        max-height: 1600px;
    }

    /* 2 columns on mobile: row1 = 2 cats, row2 = 2 cats; expand to show all rows */
    .kcf-home__categories .kcf-desktop-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
        padding: 16px 4px 24px;
        overflow: visible !important;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .kcf-home__categories .kcf-desktop-row .kcf-home__cat-card-wrap {
        width: auto;
    }

    /* Fade at bottom — smooth crossfade when expanding */
    .kcf-home__categories-fade {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 80px;
        background: linear-gradient(to bottom, rgba(248, 250, 252, 0) 0%, var(--kcf-off-white) 75%);
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.4s ease 0.1s;
    }

    .kcf-home__categories.kcf-cats-expanded .kcf-home__categories-fade {
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    /* Toggle button — brand colors only, no pink border (override global focus/outline) */
    .kcf-home__categories-toggle {
        display: none;
        /* shown via JS on mobile */
        margin: 0 auto 8px;
        padding: 10px 22px;
        border-radius: 999px;
        border: none !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
        -webkit-appearance: none;
        box-shadow: 0 4px 14px rgba(42, 166, 246, 0.35);
        background: linear-gradient(135deg, #2aa6f6 0%, #a6f6b7 100%) !important;
        color: #ffffff !important;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-shrink: 0;
        transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    }

    .kcf-home__categories-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(42, 166, 246, 0.45);
        color: #ffffff !important;
        background: linear-gradient(135deg, #2aa6f6 0%, #a6f6b7 100%) !important;
    }

    .kcf-home__categories-toggle:focus,
    .kcf-home__categories-toggle:active {
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 14px rgba(42, 166, 246, 0.4), 0 0 0 3px rgba(42, 166, 246, 0.25) !important;
        color: #ffffff !important;
        background: linear-gradient(135deg, #2aa6f6 0%, #a6f6b7 100%) !important;
    }

    .kcf-home__categories-toggle .label-less {
        display: none;
    }

    .kcf-home__categories.kcf-cats-expanded .kcf-home__categories-toggle .label-more {
        display: none;
    }

    .kcf-home__categories.kcf-cats-expanded .kcf-home__categories-toggle .label-less {
        display: inline;
    }
}

.kcf-cat-swiper {
    position: relative;
    padding: 10px 10px 80px 10px;
    /* Force 80px padding at bottom for dots */
    margin: 0 -10px;
    /* Compensate for side padding so box shadow isn't clipped */
}

/* Circular Category Card Styling */
.kcf-home__cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    padding: 12px;
    border: 1px solid var(--kcf-gray-200);
    text-decoration: none;
    transition: all var(--kcf-duration) var(--kcf-ease);
    position: relative;
    overflow: hidden;
    margin: 10px;
    /* Margin for box-shadow on hover */
}

/* Maintain gradient hover ring for circular design */
.kcf-home__cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background: var(--kcf-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--kcf-duration) var(--kcf-ease);
}

.kcf-home__cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kcf-shadow-md);
}

.kcf-home__cat-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.kcf-home__cat-icon {
    font-size: 38px;
    margin-bottom: 8px;
    transition: transform var(--kcf-duration) var(--kcf-ease);
}

.kcf-home__cat-card:hover .kcf-home__cat-icon {
    transform: scale(1.1);
}

.kcf-home__cat-name {
    font-family: var(--kcf-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--kcf-gray-800);
    margin: 0 0 4px;
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}

.kcf-home__cat-count {
    font-size: 11px;
    color: var(--kcf-text-light);
}

/* Swiper Pagination Styling */
.kcf-home__categories .swiper-pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 30px;
}

.kcf-home__categories .swiper-pagination-bullet {
    background: var(--kcf-gray-400);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.kcf-home__categories .swiper-pagination-bullet-active {
    background: var(--kcf-gradient);
    opacity: 1;
    transform: scale(1.3);
}

/* Single Row Desktop Grid */
.kcf-desktop-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    /* Smaller gap on mobile */
    overflow-x: auto;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.kcf-desktop-row::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.kcf-desktop-row .kcf-home__cat-card-wrap {
    flex: 0 0 auto;
    width: 145px;
    /* Default mobile/tablet width */
}

@media (min-width: 1200px) {
    .kcf-desktop-row {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 24px 20px;
        padding: 20px 0;
        overflow-x: visible;
    }

    .kcf-desktop-row .kcf-home__cat-card-wrap {
        width: auto;
    }

    .kcf-home__cat-card {
        padding: 15px 10px;
    }

    .kcf-home__cat-icon {
        font-size: 28px;
    }

    .kcf-home__cat-name {
        font-size: 11px;
    }

    .kcf-home__cat-count {
        font-size: 9px;
    }
}

/* ===== PRODUCTS GRID / CAROUSEL ===== */
.kcf-home__products {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 50px;
}

.kcf-home__products .kcf-home__section-header {
    text-align: center;
    margin-bottom: 30px;
}

.kcf-home__products .kcf-home__section-tag {
    color: #2aa6f6;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

.kcf-home__products .kcf-home__section-title {
    font-family: var(--kcf-font-display);
    font-size: 42px;
    font-weight: 700;
    color: #3b3149;
    margin: 0;
}

.kcf-home__products .kcf-home__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2aa6f6, #7d2cb7, #2aa6f6);
    background-size: 200% auto;
    margin: 20px auto 0;
    border-radius: 2px;
    animation: kcf-shimmer-line 3s linear infinite;
}

.kcf-home__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.kcf-home__product-card {
    border-radius: var(--kcf-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--kcf-gray-200);
    transition: all var(--kcf-duration) var(--kcf-ease);
}

.kcf-home__product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kcf-shadow-md);
}

.kcf-home__product-link {
    text-decoration: none;
    display: block;
}

.kcf-home__product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--kcf-off-white);
}

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

.kcf-home__product-card:hover .kcf-home__product-img img {
    transform: scale(1.05);
}

.kcf-home__product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.kcf-home__product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--kcf-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--kcf-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kcf-home__product-info {
    padding: 16px;
}

.kcf-home__product-name {
    font-family: var(--kcf-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--kcf-gray-800);
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kcf-home__product-excerpt {
    font-size: 12px;
    color: var(--kcf-text-light);
    margin: 0 0 8px;
    line-height: 1.5;
}

.kcf-home__product-price {
    font-family: var(--kcf-font);
    font-size: 16px;
    font-weight: 700;
    background: var(--kcf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kcf-home__product-price .woocommerce-Price-currencySymbol {
    font-size: 13px;
}

.kcf-home__products-cta {
    text-align: center;
}

/* ===== MISSION BANNER ===== */
.kcf-home__mission {
    position: relative;
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.kcf-home__mission-bg {
    position: absolute;
    inset: 0;
    background: var(--kcf-gradient);
    opacity: 0.95;
}

.kcf-home__mission-inner {
    position: relative;
    z-index: 1;
}

.kcf-home__mission-title {
    font-family: var(--kcf-font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.kcf-home__mission-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 24px;
}

.kcf-home__mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.kcf-home__mission-feat {
    text-align: center;
}

.kcf-home__mission-feat>span {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.kcf-home__mission-feat h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.kcf-home__mission-feat p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* ===== FEATURED CATEGORIES ===== */
.kcf-home__featured {
    background: var(--kcf-off-white);
}

.kcf-home__featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.kcf-home__featured-card {
    background: #fff;
    border-radius: var(--kcf-radius);
    padding: 30px 24px;
    text-decoration: none;
    border: 1px solid var(--kcf-gray-200);
    transition: all var(--kcf-duration) var(--kcf-ease);
    display: flex;
    flex-direction: column;
}

.kcf-home__featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kcf-shadow-md);
    border-color: var(--kcf-pink-lighter);
}

.kcf-home__featured-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.kcf-home__featured-card h3 {
    font-family: var(--kcf-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--kcf-gray-800);
    margin: 0 0 8px;
}

.kcf-home__featured-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--kcf-text-light);
    margin: 0 0 14px;
    flex-grow: 1;
}

.kcf-home__featured-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kcf-pink);
    transition: gap var(--kcf-duration) var(--kcf-ease);
}

.kcf-home__featured-card:hover .kcf-home__featured-link {
    gap: 10px;
}

/* ===== OUR SUPPORTERS (BRAND LOGOS) ===== */
.kcf-home__supporters {
    background: var(--kcf-off-white);
    padding: 40px 0;
    overflow: hidden;
    /* Hide horizontal overflow for the marquee */
}

.kcf-supporters-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Space for the 3D hover pop */
}

/* Gradient Fade Masks on Edges */
.kcf-supporters-marquee::before,
.kcf-supporters-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.kcf-supporters-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--kcf-off-white) 0%, transparent 100%);
}

.kcf-supporters-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--kcf-off-white) 0%, transparent 100%);
}

.kcf-supporters-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: kcf-supporter-scroll 40s linear infinite;
    padding: 0 20px;
}

.kcf-supporters-track:hover {
    animation-play-state: paused;
}

/* Glassmorphism Supporter Card – square, original logo colors */
.kcf-supporter-card {
    position: relative;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(107, 91, 123, 0.05);
}

.kcf-supporter-logo {
    max-width: 110px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 2;
}

/* Hover Interactivity: Pop and Glow */
.kcf-supporter-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(42, 166, 246, 0.3);
    box-shadow:
        0 20px 40px rgba(166, 246, 183, 0.1),
        0 1px 10px rgba(42, 166, 246, 0.1);
}

.kcf-supporter-card:hover .kcf-supporter-logo {
    transform: scale(1.1);
}

/* Inner Glow Effect */
.kcf-supporter-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 120%, rgba(42, 166, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.kcf-supporter-card:hover .kcf-supporter-glow {
    opacity: 1;
}

@keyframes kcf-supporter-scroll {
    0% {
        transform: translateX(0);
    }

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

/* ===== CTA / SOCIAL ===== */
.kcf-home__cta {
    background: var(--kcf-off-white);
    padding: 40px 0;
}

.kcf-home__cta-card {
    background: #fff;
    border-radius: var(--kcf-radius);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--kcf-shadow-md);
    border: 1px solid var(--kcf-gray-200);
    position: relative;
    overflow: hidden;
}

.kcf-home__cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--kcf-gradient-horizontal);
}

.kcf-home__cta-content h2 {
    font-family: var(--kcf-font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--kcf-gray-800);
    margin: 0 0 12px;
}

.kcf-home__cta-content p {
    font-size: 15px;
    color: var(--kcf-text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 28px;
}

.kcf-home__cta-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.kcf-home__cta-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--kcf-gradient-soft);
    color: var(--kcf-purple);
    text-decoration: none;
    transition: all var(--kcf-duration) var(--kcf-ease);
}

.kcf-home__cta-social:hover {
    background: var(--kcf-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 166, 246, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .kcf-home__hero-inner {
        text-align: center;
    }

    .kcf-home__hero-glass {
        margin: 0 auto;
        text-align: center;
    }

    .kcf-home__hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .kcf-home__hero-actions {
        justify-content: center;
    }

    .kcf-home__hero-stats {
        justify-content: center;
    }

    .kcf-home__hero-visual {
        height: 200px;
    }

    .kcf-home__hero-card--1 {
        top: 5%;
        left: 5%;
    }

    .kcf-home__hero-card--2 {
        top: 5%;
        right: 5%;
    }

    .kcf-home__hero-card--3 {
        bottom: 10%;
        left: 10%;
    }

    .kcf-home__hero-card--4 {
        bottom: 10%;
        right: 10%;
    }

    .kcf-home__trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kcf-home__hero {
        padding: 40px 0 50px;
    }

    .kcf-home__hero-actions {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .kcf-home__hero-actions .kcf-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .kcf-home__section {
        padding: 50px 0;
    }

    .kcf-home__cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kcf-home__products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .kcf-home__mission-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kcf-home__cta-card {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .kcf-home__cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kcf-home__products-grid {
        grid-template-columns: 1fr;
    }

    .kcf-home__hero-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .kcf-home__hero-subtitle {
        font-size: 14px;
    }

    .kcf-home__hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .kcf-home__hero-stat-num {
        font-size: 20px;
    }

    .kcf-home__hero-stat-label {
        font-size: 11px;
    }

    .kcf-home__trust-grid {
        grid-template-columns: 1fr;
    }

    .kcf-home__featured-grid {
        grid-template-columns: 1fr;
    }
}