/* 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: #3cb0bc;
    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: #3cb0bc;
    color: #3cb0bc;
}

.tag-btn.active {
    border-color: #3cb0bc;
    color: #3cb0bc;
    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: #3cb0bc; */
    /* 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: #3cb0bc;
    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: #3cb0bc;
    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: #3cb0bc;
    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;
}

.brands-nav-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brands-arrow {
    display: none;
    /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©n mÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·c ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹nh, chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° show khi cÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ overflow */
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: #e6f3f0;
    color: #3cb0bc;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s, transform 0.15s;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

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

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

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

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

.brand-pill {
    display: inline-block;
    padding: 5px 23px;
    border-radius: 8px;
    background-color: #eee;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    /* border: 1px solid rgba(0, 79, 53, 0.05); */
    transition: .3s;
}

.brand-pill:hover {
    background-color: #fef4e2;
}

/* Khi cÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ overflow: scroll ngang thay vÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ wrap */
.brands-scroll-wrap.is-scrollable {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
    user-select: none;
    -webkit-user-select: none;
}

.brands-scroll-wrap.is-scrollable::-webkit-scrollbar {
    display: none;
}

/* TrÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn mobile: ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©n nÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºt, luÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´n cuÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢n ngang */
@media (max-width: 768px) {
    .brands-arrow {
        display: none !important;
    }

    .brands-scroll-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 4px 0;
    }

    .brands-scroll-wrap::-webkit-scrollbar {
        display: none;
    }
}


@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-header {
    margin-bottom: 24px;
    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-size: 24px;
    font-weight: 700;
}

.top-sellers-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.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: 0 0 40px 0;
    background-color: #fff;
}

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

.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: #3cb0bc;
    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: #3cb0bc;
    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;
}

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

.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: #3cb0bc;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* ==========================================================================
   USP Cards Section
   ========================================================================== */
.usp-cards-section {
    padding: 0 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: #3cb0bc !important;
    border-radius: 10px;
    padding: 25px 5px;
    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 .title-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-sellers-section.flash-sale .top-sellers-header .section-title {
    color: #ffffff;
    margin-bottom: 0;
    font-size: clamp(22px, 2.5vw, 26px);
}

.top-sellers-section.flash-sale .top-sellers-header .see-all {
    color: #ffffff;
    font-weight: 600;
    transition: opacity 0.2s;
}

.top-sellers-section.flash-sale .top-sellers-header .see-all:hover {
    opacity: 0.85;
}

/* Flash Sale Countdown */
.flash-sale-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.countdown-block {
    background-color: #ffffff;
    color: #2c9ca7;
    font-weight: 800;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.countdown-colon {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.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);
}

/* 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 .title-area {
        gap: 10px;
    }

    .countdown-block {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-radius: 5px;
    }

    .countdown-colon {
        font-size: 14px;
    }
}

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

    .top-sellers-section.flash-sale .top-sellers-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .top-sellers-section.flash-sale .title-area {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .top-sellers-section.flash-sale .top-sellers-header .see-all {
        /* margin-top: 10px; */
        /* width: 100%; */
        justify-content: flex-end;
        white-space: nowrap;
    }

    .brand-pill {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Responsive adjustments for category tags ribbon and slide container */
@media (max-width: 768px) {
    .hero-card-left {
        padding: 80px 10px 40px !important;
        /* background: #3cb0bc !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;
    }
}