/* =========================================
   BASIC UTILITIES (for mx-auto, py-8, etc.)
   ========================================= */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.py-8 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

.kiwi-hero {
    position: relative;
    min-height: 380px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 3rem;
}

.kiwi-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #ffb347, #ff6b3d);
    z-index: 1;
}

.kiwi-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
    z-index: 2;
}

.kiwi-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.kiwi-hero__content {
    max-width: 540px;
}

.kiwi-hero__title {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.kiwi-hero__subtitle {
    font-size: 1rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
}

/* Hero buttons */

.kiwi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.kiwi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    cursor: pointer;
}

.kiwi-btn--primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #1f2933;
}

.kiwi-btn--primary:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #000;
    text-decoration: none;
}

.kiwi-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
}

.kiwi-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
}

/* Hero image */

.kiwi-hero__image img {
    max-width: 360px;
    height: auto;
    display: block;
}

/* Responsive hero */

@media (max-width: 991.98px) {
    .kiwi-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* =========================================
   HOME SECTION WRAPPERS
   ========================================= */

.kiwi-home-section {
    padding: 3rem 0;
}

.kiwi-home-section--categories {
    background: #f8fafc;
}

.kiwi-home-section--benefits {
    background: #fff7f1;
}

/* Section header */

.kiwi-home-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kiwi-home-section__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.kiwi-home-section__subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: #6b7280;
}

/* "View all" link */

.kiwi-link-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff6b3d;
    text-decoration: none;
}

.kiwi-link-more:hover {
    text-decoration: underline;
}



/* =========================================
   CATEGORY TILES
   ========================================= */

.kiwi-home-categories {
    row-gap: 1.5rem;
}

.kiwi-home-category {
    display: block;
    height: 100%;
    border-radius: 1rem;
    padding: 1.1rem 1rem;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    color: #111827;
    border: 1px solid #e5e7eb;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.kiwi-home-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    border-color: #fed7c3;
    text-decoration: none;
}

.kiwi-home-category__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.kiwi-home-category__name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.kiwi-home-category__desc {
    font-size: 0.8rem;
    color: #6b7280;
}

/* =========================================
   BENEFITS / USP STRIP
   ========================================= */

.kiwi-home-benefits {
    row-gap: 1.5rem;
}

.kiwi-benefit {
    height: 100%;
    padding: 1.3rem 1.2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #f9d7b8;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.kiwi-benefit__icon {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.kiwi-benefit__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.kiwi-benefit__text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* =========================================
   SMALL RESPONSIVE TWEAKS
   ========================================= */

@media (max-width: 767.98px) {
    .kiwi-hero__title {
        font-size: 2rem;
    }

    .kiwi-home-section {
        padding: 2.5rem 0;
    }
}



.footer {
    background-color: #0e1400;
}

.footer img {
    height: 40px;
}