/* 1. Category Tag Ribbon */
.category-tags-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tags-arrow {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.92);
    color: #E21111;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    transition: background-color 0.2s, transform 0.15s;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

.tags-arrow .material-symbols-outlined {
    font-size: 20px;
    display: block;
}

.tags-arrow--visible {
    display: flex;
}

.tags-arrow:hover {
    background-color: #ffffff;
    transform: scale(1.08);
}

.tags-scroll-wrap {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    padding: 4px 0;
    user-select: none;
    /* justify-content: center; */
    -webkit-user-select: none;
    flex: 1;
    min-width: 0;
}

.tags-scroll-wrap::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.tag-btn {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 6px;
    border: 0px solid #cbd5e1;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tag-btn:hover {
    border-color: #E21111;
    color: #E21111;
}

.tag-btn.active {
    border-color: #E21111;
    color: #E21111;
    background-color: #e6eef0;
}

.banner-wrap {
    position: relative;
}

/* 2. Main Split Hero Card */
.bank-holiday-banner-section {
    max-width: 1600px;
    margin: 0 auto;
}

.bank-holiday-hero-card {
    display: flex;
    /* border-radius: 16px; */
    overflow: hidden;
    height: calc(100vh - 130px);
    min-height: 750px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    position: relative;
    /* background-color: #E21111; */
    /* margin-bottom: 24px; */
}

.hero-card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

/* Text Left Side */
.hero-card-left {
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 40px 15px 50px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
    color: #ffffff;
    z-index: 2;
}

.hero-badge-red {
    background-color: #ffffff;
    color: #E21111;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
    padding: 6px 25px;
    border-radius: 9999px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-card-title {
    color: #fde299;
    font-size: clamp(26px, 4vw, 60px);
    font-weight: 700;
    margin: 0 0 6px 0;
    text-align: center;
    line-height: 1.15;
    text-shadow: 0 3px 7px rgb(0 0 0 / 51%);
    padding: 0 10px;
}

.hero-card-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 400;
    margin: 0 0 10px 0;
    opacity: 0.95;
    text-align: center;
    text-shadow: 0 3px 7px rgb(0 0 0 / 51%);
}

.btn-hero-shop {
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 9999px;
    background-color: #E21111;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #ffffff;
}

.btn-hero-shop:hover {
    background-color: #fde299;
    color: #000;
    border-color: #fde299;
    transform: scale(1.02);
}

/* Floating red discount circle */
.floating-discount-circle {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #a80f0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.disc-up-to {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
}

.disc-percent {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin: 2px 0;
}

.disc-off {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
}

/* Products Right Side */
.hero-card-right {
    width: 35%;
    position: relative;
    background: url('/assets/frontend/images/bank_holiday_bg.png') no-repeat right center;
    background-size: cover;
    z-index: 1;
}

.checkered-tablecloth-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-overlays-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px;
    gap: 12px;
    z-index: 2;
}

.product-overlay-item {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-overlay-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.product-overlay-item img {
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
    mix-blend-mode: multiply;
    /* Removes white background dynamically */
}

.item-honey img {
    max-height: 170px;
}

.item-hydro img {
    max-height: 190px;
}

.item-cetaphil img {
    max-height: 210px;
}

/* 3. Cards Grid (Bottom of Hero) */
.hero-cards-grid {
    z-index: 10;
    /* padding: 30px 10px; */
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1200px;
    padding: 0 10px;
}

.hero-cards-grid .slick-slide {
    margin: 0 10px;
}

.hero-cards-grid .slick-list {
    margin: 0 -10px;
}

.hero-promo-card {
    background-color: #f3f0ed;
    border-radius: 5px;
    border: 0px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.promo-card-title {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 10px 0;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #34363c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .promo-card-title {
        font-size: 14px;
    }
}

.promo-card-img-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 110px;
    width: 100%;
}

.promo-card-img-wrap img {
    max-height: 90px;
    max-width: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.promo-card-footer {
    width: 100%;
    background-color: #E21111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 5px;
    text-transform: uppercase;
}

/* 4. Brands Ribbon (Bottom of section) */
.brands-ribbon {
    margin-top: 30px;
    margin-bottom: 20px;
}

.brands-nav-wrap {
    position: relative;
}

/* Slick arrow styles for category/brands ribbon */
.brands-nav-wrap .slick-prev,
.brands-nav-wrap .slick-next {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.brands-nav-wrap .slick-prev {
    left: -10px;
}

.brands-nav-wrap .slick-next {
    right: -10px;
}

.brands-nav-wrap .slick-prev:hover,
.brands-nav-wrap .slick-next:hover {
    background: #E21111;
}

.brands-nav-wrap .slick-prev:hover span,
.brands-nav-wrap .slick-next:hover span {
    color: #ffffff;
}

.brands-nav-wrap .slick-prev span,
.brands-nav-wrap .slick-next span {
    color: #333333;
    font-size: 18px;
}

.brands-nav-wrap .slick-prev:before,
.brands-nav-wrap .slick-next:before {
    display: none;
}

/* .brands-scroll-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
} */


.brands-scroll-wrap .slick-slide {
    margin: 0 8px;
}

.brands-scroll-wrap .slick-list {
    margin: 0 -8px;
}


.brands-scroll-wrap.slick-initialized {}

.brands-scroll-wrap.slick-initialized .slick-track {
    gap: 0;
}

.brand-pill {
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: block;
    text-align: center;
    border-radius: 10px;
}

.brand-name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 8px;
}

/* Slick dots for mobile view categories */
.brands-nav-wrap .slick-dots {
    bottom: -20px;
}

.brands-nav-wrap .slick-dots li button:before {
    font-size: 8px;
    color: #cbd5e1;
    opacity: 0.6;
}

.brands-nav-wrap .slick-dots li.slick-active button:before {
    color: #3b9b1a;
    opacity: 1;
}


@media (max-width: 768px) {
    .bank-holiday-hero-card {
        height: auto;
        min-height: unset;
        display: block;
        position: relative;
    }

    .bank-holiday-hero-card picture {
        display: block;
        width: 100%;
    }

    .hero-card-bg-img {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-card-left {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
        z-index: 2;
        box-sizing: border-box;
    }
}
















/* Top Sellers Section */
.top-sellers-section {
    margin-top: 50px;
}

.top-sellers-section.flash-sale .top-sellers-header {
    align-items: start;
}

.top-sellers-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-sellers-header .see-all {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-sellers-header .section-title {
    font-weight: 700;
    color: var(--color-2);
    text-transform: uppercase;
    font-size: 18px;
    padding: 8px 25px;
    background: #0FAE08;
    border-radius: 5px 5px 0 0;
    margin-right: 20px;
    position: relative;
    line-height: 25px;
    display: inline-block;
}

.flash-sale .top-sellers-carousel-wrap {
    border-top: 0;
}

.top-sellers-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0;
    border-top: solid 3px #0FAE08;
}

.flash-sale .top-sellers-carousel .slick-slide {
    margin: 0 6px;
}

.flash-sale .top-sellers-carousel .slick-list {
    margin: 0 -6px;
}






/* Trending Edit Section */
.trending-edit-section {
    padding: 50px 0 30px;
    background: #fff;
}

.trending-edit-section .section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.trending-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.trending-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 12px;
}

.trending-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-card:hover .trending-card-image img {
    transform: scale(1.05);
}

.trending-card-body {
    display: flex;
    flex-direction: column;
}

.trending-card-body .discount-tag {
    align-self: flex-start;
    background-color: #d32f2f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.trending-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.trending-card-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}


/* Free Soul Banner Section */
.free-soul-banner-section {
    padding: 30px 0 60px;
    background: #fff;
}

.free-soul-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #444 0%, #777 40%, #e8e4db 100%);
    border-radius: 12px;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.banner-left {
    width: 35%;
    color: #fff;
    z-index: 2;
}

.banner-heading {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.15;
}

.banner-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.banner-center {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
    z-index: 2;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-img {
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    position: absolute;
}

.showcase-img-1 {
    transform: rotate(-10deg) translateX(-40px);
    z-index: 2;
}

.showcase-img-2 {
    transform: rotate(5deg) translateX(40px) translateY(10px);
    z-index: 1;
}

.circle-badge-20 {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #1e1310;
    color: #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
    line-height: 1.1;
    transform: rotate(-5deg);
}

.circle-badge-20 .pct {
    font-size: 20px;
}

.circle-badge-20 .off {
    font-size: 12px;
    text-transform: uppercase;
    color: #dfd8d6;
}

.banner-right {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.brand-logo-text {
    font-size: 36px;
    font-weight: 800;
    color: #1e1310;
    letter-spacing: 2px;
    font-family: 'Outfit', 'Inter', sans-serif;
    white-space: nowrap;
}


/* Responsive styles for trending and banner */
@media (max-width: 992px) {
    .trending-edit-section {
        padding: 40px 0 20px;
    }

    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .free-soul-banner {
        padding: 30px 40px;
    }

    .banner-heading {
        font-size: 24px;
    }

    .brand-logo-text {
        font-size: 30px;
    }

    .showcase-img {
        height: 130px;
    }
}

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

    .free-soul-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
    }

    .banner-left {
        width: 100%;
    }

    .banner-center {
        width: 100%;
        min-height: 160px;
        justify-content: flex-start;
        padding-left: 50px;
    }

    .showcase-img {
        height: 120px;
        position: relative;
    }

    .showcase-img-1 {
        transform: rotate(-10deg) translateX(0);
    }

    .showcase-img-2 {
        transform: rotate(5deg) translateX(20px) translateY(10px);
        margin-left: -40px;
    }

    .circle-badge-20 {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 30px;
    }

    .banner-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .trending-edit-section {
        padding: 30px 0 15px;
    }

    .trending-edit-section .section-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    /* Swipeable row on mobile */
    .trending-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        margin: 0 -15px;
        padding: 0 15px;
        scrollbar-width: none;
        /* Hide scrollbar */
    }

    .trending-grid::-webkit-scrollbar {
        display: none;
    }

    .trending-card {
        flex: 0 0 160px;
    }

    .trending-card-title {
        font-size: 14px;
    }

    .trending-card-subtitle {
        font-size: 12px;
    }

    .free-soul-banner {
        padding: 20px;
    }

    .banner-heading {
        font-size: 20px;
    }

    .brand-logo-text {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .trending-edit-section .section-title {
        font-size: 20px;
    }

    .trending-card {
        flex: 0 0 140px;
    }

    .banner-heading {
        font-size: 18px;
    }
}


/* Featured Brands Section */
.featured-brands-section {
    padding: 50px 0;
}

.featured-brands-section .section-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.featured-brands-section .section-title {
    font-size: 26px;
    font-weight: 700;
}

.featured-brands-section .see-all {
    display: flex;
    align-items: center;
    gap: 5px;
}

.brands-grid .slick-slide {
    margin: 0 10px;
}

.brands-grid .slick-list {
    margin: 0 -10px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.brand-card-top {
    position: relative;
    background: #fdecc2;
    border-radius: 8px;
    /* padding: 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.5 / 1;
    margin-bottom: 12px;
    overflow: hidden;
}

.brand-card-top a {
    display: flex;
}

.brand-card-top img {
    /* max-height: 85%;
    max-width: 85%; */
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-card-top img {
    transform: scale(1.05);
}

.brand-card-body {
    display: flex;
    flex-direction: column;
}

.brand-card-body .discount-tag {
    align-self: flex-start;
    background-color: #d32f2f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.brand-card-body .discount-tag.red-tag {
    background-color: #d32f2f;
}

.brand-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-align: center;
}

.brand-card-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}


/* ==========================================================================
   Get More from H&B Section
   ========================================================================== */
.get-more-section {
    padding: 15px 0 0;
    background-color: #fff;
}

.get-more-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 30px;
}

.get-more-header .section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin: 0;
}

.get-more-arrows {
    display: flex;
    gap: 8px;
}

.get-more-prev,
.get-more-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    cursor: pointer;
    color: #E21111;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
    padding: 0;
}

.get-more-prev:hover,
.get-more-next:hover {
    background-color: #f5f5f5;
    border-color: #b0b0b0;
}

.get-more-prev.slick-disabled,
.get-more-next.slick-disabled {
    opacity: 0.5;
    cursor: default;
    border-color: #e0e0e0;
    color: #aaa;
    background-color: #fafafa;
}

.get-more-prev span,
.get-more-next span {
    font-size: 20px;
    font-weight: bold;
}

.get-more-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.promo-posts-carousel .slick-list {
    margin: 0 -10px;
}

.promo-posts-carousel .slick-slide {
    margin: 0 10px;
}

.get-more-carousel .slick-track {
    display: flex !important;
}

.get-more-carousel .slick-slide {
    height: auto !important;
    display: flex !important;
}

.get-more-slide {
    display: flex !important;
    flex-direction: column;
}

.get-more-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-more-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-more-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.get-more-card-image.bg-light-green {
    background-color: #eaf5ef;
}

.get-more-card-image.bg-light-green img {
    object-fit: contain;
    padding: 24px;
}

.get-more-card:hover .get-more-card-image img {
    transform: scale(1.05);
}

.get-more-card-image .image-text-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Outfit', 'Inter', sans-serif;
}

.get-more-card-image .edit-text-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.get-more-card-image .edit-title {
    background: #E21111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
    display: inline-block;
}

.get-more-card-image .edit-subtitle {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.get-more-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.get-more-card-body .badge-red {
    background-color: #d32f2f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.get-more-card-body .card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 46px;
}

.get-more-card-body .card-title:hover {
    color: #E21111;
}

.get-more-card-body .card-subtitle {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.get-more-progress {
    margin-top: 24px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #E21111;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* ==========================================================================
   USP Cards Section
   ========================================================================== */
.usp-cards-section {
    padding: 40px 0 40px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usp-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 18px;
    display: grid;
    grid-template-columns: 50px auto;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: 1px solid #f0f0f0;
}

.usp-card:hover {
    transform: translateY(-2px);
    background-color: #f1f1f1;
}

.usp-card .usp-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.usp-card .usp-text {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
    .get-more-section .section-title {
        font-size: 22px;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .get-more-section {
        padding: 0 0 30px;
    }

    .usp-cards-section {
        padding: 0 0 30px;
    }

    .featured-brands-section .section-title {
        font-size: 22px;
    }

    .see-all .material-symbols-outlined {
        /* display: none; */
    }

    .featured-brands-section {
        padding: 40px 0;
    }

    .brand-card-title {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .usp-card {
        padding: 16px;
    }

    .get-more-card-image {
        aspect-ratio: 16 / 10;
    }

    .get-more-card-body {
        padding: 16px;
    }

    .get-more-card-body .card-title {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .get-more-card-body .card-title {
        font-size: 15px;
    }

    .get-more-card-body .card-subtitle {
        font-size: 13px;
    }

    .usp-card .usp-title {
        font-size: 15px;
    }

    .usp-card .usp-text {
        font-size: 12px;
    }
}

/* ==========================================================================
   Flash Sale Custom Styling & Countdown Timer
   ========================================================================== */
.top-sellers-section.flash-sale {
    background-color: #3b9b1a !important;
    border-radius: 10px;
    padding: 25px 10px;
    margin: 40px 10px 0;
}

@media (min-width: 1470px) {
    .top-sellers-section.flash-sale {
        max-width: 1420px;
        margin: 30px auto 0;
    }
}

.top-sellers-section.flash-sale .top-sellers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Ribbon title for flash sale */
.flash-sale-title-ribbon {
    background-color: #FFB800;
    color: #000;
    font-size: 22px;
    font-weight: 800;
    padding: 8px 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 15px 50%, 0% 100%, 100% 100%, calc(100% - 15px) 50%, 100% 0%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px;
    box-sizing: border-box;
}

.flash-sale-title-ribbon span {
    font-weight: 700;
}

/* Countdown container on desktop */
.flash-sale-countdown-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-title-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.flash-sale-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flash-sale-countdown .countdown-block {
    background-color: #FFB800;
    color: #000000;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.flash-sale-countdown .countdown-num {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
}

.flash-sale-countdown .countdown-lbl {
    font-size: 11px;
    font-weight: 500;
    color: #000000;
    margin-top: 1px;
}

.top-sellers-section.flash-sale .product-card {
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.top-sellers-header .section-title:after {
    content: '';
    display: block;
    line-height: 36px;
    background: #0FAE08;
    width: 25px;
    height: 41px;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -10px;
    transform: skewX(21deg);
    border-radius: 0 5px 0 0;
}

/* Responsive adjustments for Flash Sale Section */
@media (max-width: 768px) {
    .top-sellers-section.flash-sale {
        padding: 24px 8px;
        margin: 30px 10px 0;
    }

    .top-sellers-section.flash-sale .top-sellers-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .flash-sale-title-ribbon {
        font-size: 18px;
        padding: 6px 30px;
        min-height: 38px;
        width: auto;
        clip-path: polygon(0% 0%, 12px 50%, 0% 100%, 100% 100%, calc(100% - 12px) 50%, 100% 0%);
    }

    .flash-sale-countdown-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .countdown-title-text {
        display: none !important;
    }

    .flash-sale-countdown {
        background-color: #FFB800;
        width: 100%;
        max-width: 360px;
        padding: 10px 15px;
        border-radius: 8px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    .flash-sale-countdown .countdown-block {
        background-color: transparent;
        box-shadow: none;
        width: auto;
        height: auto;
        flex-direction: row;
        align-items: baseline;
        gap: 4px;
    }

    .flash-sale-countdown .countdown-num {
        font-size: 18px;
        font-weight: 800;
        color: #000000;
    }

    .flash-sale-countdown .countdown-lbl {
        font-size: 13px;
        font-weight: 500;
        color: #000000;
    }
}

@media (max-width: 575px) {
    .top-sellers-section.flash-sale {
        padding: 20px 0px;
        margin: 25px 8px 0;
    }
}

/* Responsive adjustments for category tags ribbon and slide container */
@media (max-width: 768px) {
    .hero-card-left {
        padding: 80px 10px 40px !important;
        /* background: #E21111 !important; */
    }

    .category-tags-ribbon {
        top: 15px !important;
        left: 15px !important;
        right: 15px !important;
    }

    .tags-arrow,
    .tags-arrow--visible {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .hero-card-left {
        padding: 20px 10px 30px !important;
    }

    .category-tags-ribbon {
        top: 10px !important;
        left: 10px !important;
        right: 10px !important;
    }
}

/* Custom Homepage Banner Redesign */
.custom-banner-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.banner-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.banner-left-slider {
    min-width: 0;
    /* Prevents flex/grid blow-out with slick */
    height: 450px;
}

.main-hero-slider {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.main-hero-slider .slick-list,
.main-hero-slider .slick-track,
.main-hero-slider .slider-item {
    height: 100% !important;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.banner-right-static {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 450px;
}

.static-item {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.static-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.static-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.static-item:hover img {
    transform: scale(1.03);
}

/* Slick slider dots for main banner */
.main-hero-slider .slick-dots {
    bottom: 20px;
}

.main-hero-slider .slick-dots li button:before {
    font-size: 10px;
    color: #fff;
    opacity: 0.6;
}

.main-hero-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Bottom block: 3 slides carousel */
.banner-grid-bottom {
    margin-bottom: 30px;
}

.bottom-slick-slider {
    margin: 0 -8px;
}

.product-banner-card-slide {
    padding: 0 8px;
    box-sizing: border-box;
}

.product-banner-card {
    display: block;
    text-decoration: none !important;
    color: inherit;
    outline: none;
}

.product-banner-card .card-inner {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-banner-card:hover .card-inner {
    transform: translateY(-2px);
}

/* Specific background colors for bottom product cards */
.card-558 .card-inner {
    background: linear-gradient(135deg, #e8f5ed 0%, #d8eadf 100%);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.card-788 .card-inner {
    background: linear-gradient(135deg, #fcf6e8 0%, #f7ebd0 100%);
    border: 1px solid rgba(230, 81, 0, 0.1);
}

.card-522 .card-inner {
    background: linear-gradient(135deg, #f0f2f5 0%, #e1e4e8 100%);
    border: 1px solid rgba(13, 71, 161, 0.1);
}

.card-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-brand {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.brand-badge-hasuka {
    background-color: #E21111;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    display: inline-block;
    font-family: 'Manrope', sans-serif;
}

.brand-badge-official {
    color: #2e7d32;
    font-weight: 700;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-left: 6px;
    border: 1px solid #2e7d32;
    vertical-align: middle;
}

.card-788 .brand-badge-official {
    color: #e65100;
    border-color: #e65100;
}

.card-522 .brand-badge-official {
    color: #0d47a1;
    border-color: #0d47a1;
}

.card-title {
    font-size: 15px;
    color: #212121;
    font-weight: 700;
    margin: 8px 0 2px;
    line-height: 1.25;
    font-family: 'Manrope', sans-serif;
}

.card-title .highlight {
    font-weight: 800;
}

.card-558 .card-title .highlight {
    color: #2e7d32;
}

.card-788 .card-title .highlight {
    color: #e65100;
}

.card-522 .card-title .highlight {
    color: #0d47a1;
}

.card-subtitle {
    font-size: 11px;
    color: #616161;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #424242;
    font-weight: 600;
    line-height: 1.2;
}

.feature-item .icon {
    font-size: 14px;
    color: #2e7d32;
    flex-shrink: 0;
}

.card-788 .feature-item .icon {
    color: #e65100;
}

.card-522 .feature-item .icon {
    color: #0d47a1;
}

.card-right {
    width: 38%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-right img {
    max-width: 100%;
    max-height: 115%;
    object-fit: contain;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
}

.product-banner-card:hover .card-right img {
    transform: scale(1.16) rotate(1deg);
}

/* Slick arrows style override for bottom banner */
.bottom-slick-slider .slick-prev,
.bottom-slick-slider .slick-next {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.bottom-slick-slider .slick-prev {
    left: -18px;
}

.bottom-slick-slider .slick-next {
    right: -18px;
}

.bottom-slick-slider .slick-prev:hover,
.bottom-slick-slider .slick-next:hover {
    background: #E21111;
}

.bottom-slick-slider .slick-prev:hover span,
.bottom-slick-slider .slick-next:hover span {
    color: #ffffff;
}

.bottom-slick-slider .slick-prev span,
.bottom-slick-slider .slick-next span {
    color: #333333;
    font-size: 20px;
}

.bottom-slick-slider .slick-prev:before,
.bottom-slick-slider .slick-next:before {
    display: none;
}

/* Responsive banner redesign grid */
@media (max-width: 991px) {
    .banner-grid-top {
        grid-template-columns: 1fr;
    }

    .banner-left-slider {
        height: 360px;
    }

    .banner-right-static {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .custom-banner-container {
        padding: 0 10px;
    }

    .banner-left-slider {
        height: auto;
    }

    .banner-right-static {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
    }

    .static-item {
        height: 140px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-subtitle {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .card-features {
        gap: 4px;
    }

    .feature-item {
        font-size: 9px;
    }

    .feature-item .icon {
        font-size: 12px;
    }
}

/* Subcategory horizontal pill list */
.sub-category-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.sub-category-item {
    display: inline-block;
    padding: 4px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.sub-category-item:hover {
    background-color: #e8f5ed;
    color: #3b9b1a;
    border-color: #3b9b1a;
    box-shadow: 0 3px 8px rgba(59, 155, 26, 0.08);
}

@media (max-width: 768px) {
    .sub-category-list {
        margin-top: 8px;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
        /* Hide scrollbar in Firefox */
    }

    .sub-category-list::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar in Chrome/Safari */
    }

    .sub-category-list li {
        flex-shrink: 0;
    }

    .sub-category-item {
        padding: 5px 12px;
        font-size: 12px;
    }
}

       /* ====== 3-Column Combo Section on Home ====== */
        .combo-featured-section {
            padding: 35px 0 45px;
            background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
            border-top: 1px solid #fee2e2;
            border-bottom: 1px solid #fee2e2;
            margin-bottom: 30px;
        }
        .combo-header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 24px;
        }
        .combo-title-group {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .combo-title-main {
            font-size: clamp(20px, 2.2vw, 26px);
            font-weight: 800;
            color: #1e293b;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .combo-badge-pill {
            background: linear-gradient(135deg, #e21111, #ff5722);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(226, 17, 17, 0.3);
        }
        .combo-view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #e21111;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #fecdd3;
            transition: all 0.25s ease;
        }
        .combo-view-all:hover {
            background: #e21111;
            color: #fff;
            border-color: #e21111;
            transform: translateX(3px);
            box-shadow: 0 4px 12px rgba(226, 17, 17, 0.25);
        }

        /* 3-Column Slick Slide */
        .combo-home-slide {
            padding: 0 10px;
            box-sizing: border-box;
            height: 100%;
        }
        .combo-home-carousel .slick-track {
            display: flex !important;
        }
        .combo-home-carousel .slick-slide {
            height: inherit !important;
            display: flex !important;
        }
        .combo-home-carousel .slick-slide > div {
            width: 100%;
            height: 100%;
        }

        /* Home Combo Card */
        .home-combo-card {
            background: #fff;
            border-radius: 18px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .home-combo-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 36px rgba(226, 17, 17, 0.12);
            border-color: #fca5a5;
        }
        .home-combo-card__top {
            position: relative;
            /* aspect-ratio: 16/10; */
            background: #f8fafc;
            overflow: hidden;
        }
        .home-combo-card__img-link {
            display: block;
            width: 100%;
            height: 100%;
        }
        .home-combo-card__img-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }
        .home-combo-card:hover .home-combo-card__img-link img {
            transform: scale(1.05);
        }
        .home-combo-card__placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
        }
        .home-combo-card__placeholder .material-icons-outlined {
            font-size: 54px;
        }
        .home-combo-card__badge-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #e21111, #ff5722);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(226, 17, 17, 0.35);
        }
        .home-combo-card__badge-sale {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #ff5722;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
        }
        .home-combo-card__badge-outstock {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(15, 23, 42, 0.88);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
        }

        /* Body */
        .home-combo-card__body {
            padding: 12px 12px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .home-combo-card__bundle-preview {
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            padding: 8px 12px;
            border-radius: 10px;
            margin-bottom: 12px;
        }
        .home-combo-card__bundle-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .home-combo-card__thumbs {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .home-combo-card__thumb-item {
            position: relative;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            overflow: hidden;
            border: 1.5px solid #e2e8f0;
            background: #fff;
            flex-shrink: 0;
        }
        .home-combo-card__thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .home-combo-card__thumb-qty {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            padding: 1px 3px;
            border-radius: 4px 0 0 0;
        }
        .home-combo-card__plus {
            font-size: 14px;
            font-weight: 800;
            color: #94a3b8;
        }
        .home-combo-card__more {
            font-size: 11px;
            font-weight: 700;
            color: #475569;
            background: #e2e8f0;
            padding: 3px 6px;
            border-radius: 6px;
        }

        .home-combo-card__title {
            font-size: 16px;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.4;
            margin: 0 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .home-combo-card__title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.15s;
        }
        .home-combo-card__title a:hover {
            color: #e21111;
        }
        .home-combo-card__desc {
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
            margin: 0 0 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Price Wrap */
        .home-combo-card__price-wrap {
            margin-top: auto;
            margin-bottom: 14px;
            padding-top: 12px;
            border-top: 1px dashed #e2e8f0;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .home-combo-card__prices {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .home-combo-card__price {
            font-size: 20px;
            font-weight: 900;
            color: #e21111;
        }
        .home-combo-card__compare-price {
            font-size: 13px;
            color: #94a3b8;
            text-decoration: line-through;
        }
        .home-combo-card__save-tag {
            font-size: 11px;
            font-weight: 700;
            color: #b91c1c;
            background: #fee2e2;
            padding: 3px 8px;
            border-radius: 12px;
        }

        /* Actions */
        .home-combo-card__actions {
            display: flex;
            gap: 8px;
        }
        .home-combo-card__btn-cart {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: linear-gradient(135deg, #e21111, #ff5722);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(226, 17, 17, 0.25);
            text-decoration: none;
        }
        .home-combo-card__btn-cart:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(226, 17, 17, 0.35);
        }
        .home-combo-card__btn-cart.is-disabled {
            background: #cbd5e1;
            color: #64748b;
            box-shadow: none;
            cursor: not-allowed;
        }
        .home-combo-card__btn-detail {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            background: #fff;
            color: #475569;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        .home-combo-card__btn-detail:hover {
            background: #f1f5f9;
            color: #0f172a;
            border-color: #cbd5e1;
        }