﻿:root {
    --home-bg: #f6f7f9;
    --home-surface: #ffffff;
    --home-surface-soft: #eef1f5;
    --home-text: #101828;
    --home-text-soft: #667085;
    --home-border: #e4e7ec;
    --home-accent: #e30613;
    --home-accent-dark: #b9040d;
    --home-dark: #101722;
    --home-radius-sm: 14px;
    --home-radius-md: 20px;
    --home-radius-lg: 28px;
    --home-shadow-sm: 0 6px 20px rgba(16, 24, 40, 0.06);
    --home-shadow-md: 0 14px 38px rgba(16, 24, 40, 0.1);
    --home-shadow-lg: 0 24px 70px rgba(16, 24, 40, 0.14);
}

/* =========================================================
   BASE
   ========================================================= */

.home-page {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    background: var(--home-bg);
    color: var(--home-text);
}

    .home-page .container {
        width: 100%;
        max-width: 1480px;
        padding-right: 24px;
        padding-left: 24px;
    }

.home-section {
    position: relative;
    padding: 52px 0;
}

.home-section-muted {
    background: radial-gradient( circle at 15% 0, rgba(227, 6, 19, 0.035), transparent 30% ), #eef1f5;
}

.home-page img {
    max-width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;
    padding: 24px 0 18px;
    background: radial-gradient( circle at 10% 0, rgba(227, 6, 19, 0.055), transparent 25% ), var(--home-surface);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
    align-items: stretch;
    gap: 18px;
    min-width: 0;
}

.home-main-banner,
.home-side-banners {
    min-width: 0;
}

.home-main-banner {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.05);
    border-radius: var(--home-radius-lg);
    background: #e9edf2;
    box-shadow: var(--home-shadow-md);
}

.home-main-slider,
.home-main-slider .slick-list,
.home-main-slider .slick-track,
.home-main-slider .slick-slide,
.home-main-slider .slick-slide > div {
    height: 100%;
}

    .home-main-slider:not(.slick-initialized) {
        display: block;
    }

        .home-main-slider:not(.slick-initialized)
        .home-main-slide:not(:first-child) {
            display: none;
        }

.home-main-slide {
    width: 100%;
    height: 100%;
}

.home-banner-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1200 / 520;
    color: inherit;
    text-decoration: none;
}

.home-main-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.home-main-slide:hover .home-main-banner-image {
    transform: scale(1.025);
    filter: saturate(1.03);
}

.home-side-banners {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-side-banner {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.05);
    border-radius: var(--home-radius-md);
    background: #eef1f4;
    box-shadow: var(--home-shadow-sm);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .home-side-banner::after {
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent 20%, rgba(255, 255, 255, 0.16) 48%, transparent 76% );
        content: "";
        opacity: 0;
        transform: translateX(-70%);
        transition: opacity 0.3s ease, transform 0.7s ease;
        pointer-events: none;
    }

    .home-side-banner:hover {
        box-shadow: var(--home-shadow-md);
        transform: translateY(-3px);
    }

        .home-side-banner:hover::after {
            opacity: 1;
            transform: translateX(70%);
        }

.home-side-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-side-banner:hover .home-side-banner-image {
    transform: scale(1.035);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

    .home-section-header > div {
        min-width: 0;
    }

.home-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--home-accent);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

    .home-section-eyebrow::before {
        width: 22px;
        height: 2px;
        border-radius: 99px;
        background: currentColor;
        content: "";
    }

.home-section-title {
    margin: 0;
    color: var(--home-text);
    font-size: clamp(1.7rem, 2.3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.home-section-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--home-text);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .home-section-link:hover {
        border-color: var(--home-text);
        background: var(--home-text);
        color: #fff;
        box-shadow: 0 10px 24px rgba(16, 24, 40, 0.14);
        transform: translateY(-2px);
    }

    .home-section-link i {
        font-size: 0.78rem;
        transition: transform 0.25s ease;
    }

    .home-section-link:hover i {
        transform: translateX(3px);
    }

/* =========================================================
   SLICK BASE
   ========================================================= */

.home-page .slick-slider {
    min-width: 0;
}

.home-page .slick-list {
    min-width: 0;
}

.home-page .slick-track {
    display: flex;
    align-items: stretch;
}

.home-page .slick-slide {
    height: auto;
    min-width: 0;
}

    .home-page .slick-slide > div {
        height: 100%;
    }

.home-page .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 25;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--home-text);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.16);
    font-size: 0.9rem;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

    .home-page .slick-arrow:hover {
        border-color: var(--home-text);
        background: var(--home-text);
        color: #fff;
        box-shadow: 0 14px 34px rgba(16, 24, 40, 0.22);
        transform: translateY(-50%) scale(1.06);
    }

.home-page .slick-prev {
    left: 18px;
}

.home-page .slick-next {
    right: 18px;
}

.home-page .slick-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.home-page .slick-dots {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .home-page .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }

    .home-page .slick-dots button {
        display: block;
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 99px;
        background: rgba(255, 255, 255, 0.58);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
        font-size: 0;
        transition: width 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
    }

    .home-page .slick-dots .slick-active button {
        width: 28px;
        background: #fff;
    }

/* =========================================================
   PRODUCT SLIDERS
   ========================================================= */

.home-product-slider {
    position: relative;
    min-width: 0;
    margin-right: -9px;
    margin-left: -9px;
    padding: 2px 28px 0;
    overflow: visible;
}

    .home-product-slider:not(.slick-initialized) {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
        margin: 0;
        padding: 0;
    }

        .home-product-slider:not(.slick-initialized)
        .home-product-slide:nth-child(n + 6) {
            display: none;
        }

.home-product-slide {
    display: flex;
    height: 100%;
    min-width: 0;
    padding: 6px 9px 14px;
}

    .home-product-slide > * {
        width: 100%;
        height: 100%;
    }

.home-product-slider .slick-prev {
    left: 2px;
}

.home-product-slider .slick-next {
    right: 2px;
}

.home-product-slider .slick-list {
    padding-top: 3px;
    padding-bottom: 8px;
}

.home-product-slider .product-card,
.home-product-slider .product-card-wrapper {
    width: 100%;
    height: 100%;
}

/* =========================================================
   PROGRESS BAR
   ========================================================= */

.home-slider-progress {
    position: relative;
    width: min(210px, 48%);
    height: 4px;
    margin: 18px auto 0;
    overflow: hidden;
    border-radius: 99px;
    background: #d8dde5;
}

.home-slider-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient( 90deg, var(--home-accent), #ff4450 );
    transition: width 0.35s ease;
}

.home-weekly .home-slider-progress {
    background: rgba(255, 255, 255, 0.18);
}

.home-weekly .home-slider-progress-bar {
    background: linear-gradient(90deg, #ffcc33, #ff9f1c);
}

/* =========================================================
   WEEKLY PRODUCTS
   ========================================================= */

.home-weekly-section {
    padding-top: 34px;
}

.home-weekly {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 2.15fr);
    gap: 34px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: radial-gradient( circle at 0 0, rgba(255, 255, 255, 0.13), transparent 32% ), radial-gradient( circle at 100% 100%, rgba(227, 6, 19, 0.18), transparent 34% ), linear-gradient(135deg, #111722 0%, #222b39 100%);
    box-shadow: var(--home-shadow-lg);
}

    .home-weekly::before {
        position: absolute;
        top: -90px;
        right: -90px;
        width: 260px;
        height: 260px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        content: "";
        pointer-events: none;
    }

.home-weekly-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 10px 2px;
    color: #fff;
}

.home-weekly-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ffcc33;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

    .home-weekly-eyebrow::before {
        width: 22px;
        height: 2px;
        border-radius: 99px;
        background: currentColor;
        content: "";
    }

.home-weekly-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.home-weekly-description {
    max-width: 410px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.7;
}

.home-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(60px, 1fr));
    gap: 9px;
    width: 100%;
    max-width: 390px;
}

.home-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 78px;
    padding: 11px 6px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(8px);
}

    .home-countdown-item strong {
        color: #fff;
        font-size: 1.55rem;
        font-weight: 800;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .home-countdown-item span {
        margin-top: 7px;
        color: rgba(255, 255, 255, 0.59);
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

.home-weekly-end-date {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.75rem;
}

.home-weekly-products {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.home-product-slider-weekly {
    height: 100%;
    padding-right: 26px;
    padding-left: 26px;
}

    .home-product-slider-weekly .home-product-slide {
        padding-top: 0;
    }

/* =========================================================
   PIN SHOWCASE
   ========================================================= */

.home-showcase-section {
    background: var(--home-surface);
}

.home-pin-slider {
    position: relative;
    min-width: 0;
}

    .home-pin-slider:not(.slick-initialized)
    .home-pin-slide:not(:first-child) {
        display: none;
    }

.home-pin-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 28px;
    background: #e8ebef;
    box-shadow: var(--home-shadow-md);
}

.home-pin-main-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: cover;
}

.home-product-pin {
    position: absolute;
    z-index: 8;
    transform: translate(-50%, -50%);
}

.home-product-pin-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 3px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    background: var(--home-accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .home-product-pin-button::before {
        position: absolute;
        inset: -9px;
        border: 2px solid rgba(227, 6, 19, 0.34);
        border-radius: 50%;
        content: "";
        animation: home-pin-pulse 1.9s infinite;
    }

    .home-product-pin-button:hover {
        background: var(--home-accent-dark);
        transform: scale(1.08);
    }

    .home-product-pin-button i {
        font-size: 0.82rem;
        transition: transform 0.25s ease;
    }

.home-product-pin.is-open .home-product-pin-button i {
    transform: rotate(45deg);
}

.home-product-pin-detail {
    position: absolute;
    bottom: calc(100% + 13px);
    left: 50%;
    z-index: 9;
    width: 240px;
    padding: 17px;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 46px rgba(16, 24, 40, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    backdrop-filter: blur(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

    .home-product-pin-detail::after {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 13px;
        height: 13px;
        border-right: 1px solid var(--home-border);
        border-bottom: 1px solid var(--home-border);
        background: #fff;
        content: "";
        transform: translate(-50%, -7px) rotate(45deg);
    }

.home-product-pin:hover .home-product-pin-detail,
.home-product-pin.is-open .home-product-pin-detail {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.home-product-pin-title {
    margin: 0 0 8px;
    color: var(--home-text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-product-pin-price {
    margin: 0 0 13px;
    color: var(--home-accent);
    font-size: 1.03rem;
    font-weight: 800;
}

.home-product-pin-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--home-text);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

    .home-product-pin-link:hover {
        color: var(--home-accent);
    }

@keyframes home-pin-pulse {
    0% {
        opacity: 0.75;
        transform: scale(0.8);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* =========================================================
   PROJECT BANNER
   ========================================================= */

.home-project-section {
    padding: 50px 0;
    background: var(--home-surface);
}

.home-project-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    background: var(--home-dark);
    color: #fff;
    box-shadow: var(--home-shadow-lg);
    text-decoration: none;
}

    .home-project-banner > img {
        display: block;
        width: 100%;
        aspect-ratio: 1400 / 500;
        object-fit: cover;
        opacity: 0.88;
        transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .home-project-banner:hover > img {
        opacity: 0.72;
        transform: scale(1.035);
    }

.home-project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: clamp(26px, 5.5vw, 82px);
    background: linear-gradient( 90deg, rgba(7, 13, 24, 0.9) 0%, rgba(7, 13, 24, 0.56) 48%, rgba(7, 13, 24, 0.05) 100% );
}

.home-project-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 650px;
}

    .home-project-content small {
        margin-bottom: 12px;
        color: #ffcc33;
        font-size: 0.73rem;
        font-weight: 800;
        letter-spacing: 0.16em;
    }

    .home-project-content strong {
        margin-bottom: 18px;
        color: #fff;
        font-size: clamp(2rem, 4.5vw, 4rem);
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.055em;
    }

    .home-project-content > span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.95rem;
        font-weight: 700;
    }

    .home-project-content i {
        transition: transform 0.25s ease;
    }

.home-project-banner:hover .home-project-content i {
    transform: translateX(5px);
}

/* =========================================================
   BOTTOM BANNERS
   ========================================================= */

.home-brands-section {
    padding-bottom: 64px;
}

.home-bottom-banner-slider {
    position: relative;
    min-width: 0;
    margin-right: -9px;
    margin-left: -9px;
    padding: 0 28px;
}

    .home-bottom-banner-slider:not(.slick-initialized) {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin: 0;
        padding: 0;
    }

        .home-bottom-banner-slider:not(.slick-initialized)
        .home-bottom-banner-slide:nth-child(n + 5) {
            display: none;
        }

.home-bottom-banner-slide {
    height: 100%;
    padding: 5px 9px 14px;
}

.home-bottom-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 145px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--home-shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .home-bottom-banner-link:hover {
        border-color: #cfd4dc;
        box-shadow: var(--home-shadow-md);
        transform: translateY(-4px);
    }

    .home-bottom-banner-link img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 115px;
        object-fit: contain;
        transition: transform 0.35s ease;
    }

    .home-bottom-banner-link:hover img {
        transform: scale(1.025);
    }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.home-page a:focus-visible,
.home-page button:focus-visible {
    outline: 3px solid rgba(42, 116, 255, 0.35);
    outline-offset: 3px;
}

/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199.98px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 2.4fr) minmax(250px, 1fr);
        gap: 14px;
    }

    .home-side-banners {
        gap: 14px;
    }

    .home-product-slider:not(.slick-initialized) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

        .home-product-slider:not(.slick-initialized)
        .home-product-slide:nth-child(n + 5) {
            display: none;
        }

    .home-weekly {
        grid-template-columns: minmax(250px, 0.9fr) minmax(0, 2.1fr);
        gap: 24px;
        padding: 28px;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .home-page .container {
        max-width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-section {
        padding: 42px 0;
    }

    .home-hero {
        padding-top: 17px;
    }

    .home-hero-grid {
        display: block;
    }

    .home-main-banner {
        border-radius: 22px;
    }

    .home-side-banners {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 12px;
    }

    .home-side-banner {
        aspect-ratio: 420 / 165;
        border-radius: 17px;
    }

    .home-product-slider:not(.slick-initialized) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

        .home-product-slider:not(.slick-initialized)
        .home-product-slide:nth-child(n + 4) {
            display: none;
        }

    .home-weekly {
        grid-template-columns: 1fr;
    }

    .home-weekly-info {
        align-items: center;
        text-align: center;
    }

    .home-weekly-description {
        margin-right: auto;
        margin-left: auto;
    }

    .home-countdown {
        max-width: 440px;
    }

    .home-bottom-banner-slider:not(.slick-initialized) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

        .home-bottom-banner-slider:not(.slick-initialized)
        .home-bottom-banner-slide:nth-child(n + 4) {
            display: none;
        }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .home-page .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .home-section {
        padding: 34px 0;
    }

    .home-hero {
        padding: 10px 0;
    }

    .home-main-banner {
        border-radius: 16px;
    }

    .home-banner-link {
        aspect-ratio: 16 / 9;
    }

    .home-main-banner-image {
        object-position: center;
    }

    .home-side-banners {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 12px;
        overflow: visible;
    }

        .home-side-banners:not(.slick-initialized)
        .home-side-banner:not(:first-child) {
            display: none;
        }

        .home-side-banners .slick-list {
            overflow: hidden;
            border-radius: 15px;
        }

        .home-side-banners .slick-track {
            display: flex;
            align-items: stretch;
        }

        .home-side-banners .slick-slide {
            height: auto;
        }

            .home-side-banners .slick-slide > div {
                height: 100%;
            }

    .home-side-banner {
        display: block;
        width: 100%;
        height: 100%;
        aspect-ratio: 420 / 165;
        border-radius: 15px;
    }

    .home-side-banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-side-banners .slick-prev {
        left: 10px;
    }

    .home-side-banners .slick-next {
        right: 10px;
    }

    .home-side-banners .slick-dots {
        bottom: 10px;
    }

        .home-side-banners .slick-dots button {
            background: rgba(255, 255, 255, 0.65);
        }

        .home-side-banners .slick-dots
        .slick-active button {
            background: #fff;
        }

    .home-section-header {
        align-items: center;
        gap: 12px;
        margin-bottom: 19px;
    }

    .home-section-eyebrow {
        margin-bottom: 6px;
        font-size: 0.66rem;
    }

        .home-section-eyebrow::before {
            width: 16px;
        }

    .home-section-title {
        font-size: 1.48rem;
        line-height: 1.08;
    }

    .home-section-link {
        min-height: 36px;
        padding: 8px 11px;
        font-size: 0.74rem;
        white-space: nowrap;
    }

        .home-section-link i {
            display: none;
        }

    .home-page .slick-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.76rem;
    }

    .home-main-slider .slick-prev {
        left: 10px;
    }

    .home-main-slider .slick-next {
        right: 10px;
    }

    .home-product-slider {
        margin-right: -5px;
        margin-left: -5px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .home-product-slide {
        padding-right: 5px;
        padding-left: 5px;
    }

    .home-product-slider .slick-prev {
        left: 1px;
    }

    .home-product-slider .slick-next {
        right: 1px;
    }

    .home-product-slider:not(.slick-initialized) {
        display: block;
    }

        .home-product-slider:not(.slick-initialized)
        .home-product-slide {
            display: none;
        }

            .home-product-slider:not(.slick-initialized)
            .home-product-slide:first-child {
                display: flex;
            }

    .home-slider-progress {
        width: 42%;
        margin-top: 13px;
    }

    .home-weekly {
        gap: 20px;
        padding: 22px 14px;
        border-radius: 22px;
    }

    .home-weekly-title {
        font-size: 1.9rem;
    }

    .home-weekly-description {
        margin-bottom: 20px;
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .home-countdown {
        grid-template-columns: repeat(4, minmax(50px, 1fr));
        gap: 6px;
    }

    .home-countdown-item {
        min-height: 66px;
        padding: 8px 3px;
        border-radius: 11px;
    }

        .home-countdown-item strong {
            font-size: 1.2rem;
        }

        .home-countdown-item span {
            font-size: 0.56rem;
        }

    .home-product-slider-weekly {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-pin-image-container {
        border-radius: 18px;
    }

    .home-product-pin-button {
        width: 34px;
        height: 34px;
    }

    .home-product-pin-detail {
        width: 205px;
        padding: 14px;
    }

    .home-project-section {
        padding: 34px 0;
    }

    .home-project-banner {
        border-radius: 20px;
    }

        .home-project-banner > img {
            min-height: 310px;
            aspect-ratio: auto;
        }

    .home-project-overlay {
        align-items: flex-end;
        padding: 26px 21px;
        background: linear-gradient( 0deg, rgba(7, 13, 24, 0.94) 0%, rgba(7, 13, 24, 0.54) 65%, rgba(7, 13, 24, 0.08) 100% );
    }

    .home-project-content strong {
        margin-bottom: 13px;
        font-size: 1.9rem;
    }

    .home-bottom-banner-slider {
        padding-right: 22px;
        padding-left: 22px;
    }

        .home-bottom-banner-slider .slick-prev {
            left: 1px;
        }

        .home-bottom-banner-slider .slick-next {
            right: 1px;
        }

    .home-bottom-banner-link {
        min-height: 120px;
        padding: 15px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .home-section {
        padding: 30px 0;
    }

    .home-section-header {
        align-items: flex-start;
    }

    .home-section-title {
        font-size: 1.34rem;
    }

    .home-section-link {
        margin-top: 1px;
    }

    .home-page .slick-arrow {
        width: 36px;
        height: 36px;
    }

    .home-product-slider {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-product-pin-detail {
        width: 180px;
    }

    .home-countdown {
        width: 100%;
    }

    .home-countdown-item {
        min-width: 0;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
