/* ===== Home Banner ===== */

.home-banner-section {
    width: 99.6vw;
    max-height: 70%;
    height: auto;
    display: flex;
    align-items: center;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.home-banner-swiper {
    /* width: 100%; */
    height: 600px;
}

/* Structure sizing */
.home-banner-swiper .swiper-wrapper,
.home-banner-swiper .swiper-slide {
    /* width: 100%; */
    height: 600px;
}

/* Banner images */
.home-banner-swiper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #000;
    display: block;
}

.home-banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Pagination container */
.home-banner-swiper .swiper-pagination {
    bottom: 20px !important;
    text-align: center;
}

/* Default dots */
.home-banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active dot */
.home-banner-swiper .swiper-pagination-bullet-active {
    background: #ff0000;
    /* tool-style yellow */
    width: 28px;
    border-radius: 10px;
}

/* Base arrow button style */
.home-banner-swiper .swiper-button-prev,
.home-banner-swiper .swiper-button-next {
    width: 55px;
    height: 55px;
    background: transparent;
    /* backdrop-filter: blur(6px); */
    border-radius: 50%;
    border: 3px solid rgb(255, 255, 255);
    transition: all 0.3s ease;
    margin-left: 50px;
    margin-right: 50px;
}

/* Arrow icon color */
.home-banner-swiper .swiper-button-prev::after,
.home-banner-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
    color: #ff0000;
}

/* Hover effect */
.home-banner-swiper .swiper-button-prev:hover,
.home-banner-swiper .swiper-button-next:hover {
    background: #ff0000;
    box-shadow: 0 0 15px rgb(255, 255, 255);
    transform: scale(1.1);
}

/* Arrow icon on hover */
.home-banner-swiper .swiper-button-prev:hover::after,
.home-banner-swiper .swiper-button-next:hover::after {
    color: #000;
}

/* ══════════════════════════════════════════
   FEATURES SECTION — Full Responsive CSS
   ══════════════════════════════════════════ */

/* Outer wrapper */
.icon-features {
    background-color: #AC0401;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    box-sizing: border-box;
}

/* Inner field wrapper — flex row */
.icon-features .field--name-field-icon-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 0 60px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Each paragraph field__item */
.icon-features .field--name-field-icon-features>.field__item {
    display: flex;
    flex: 1;
    min-width: 0;
}

/* The feature-item div inside each paragraph */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Circle icon wrapper */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* Icon image / svg inside the circle */
.icon-circle img,
.icon-circle svg {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    display: block;
    margin: 10px;
    margin-left: 28px;
}

/* Feature title */
.feature-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

/* Feature description */
.feature-description,
.feature-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.field--name-field-title-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}


/* ══════════════════════════════════════════
   TABLET  (768px – 1024px) — single row
   ══════════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 768px) {
    .icon-features {
        height: auto;
        padding: 36px 0;
    }

    .icon-features .field--name-field-icon-features {
        gap: 32px;
        padding: 0 32px;
    }

    .icon-circle {
        width: 58px;
        height: 58px;
    }

    .icon-circle img,
    .icon-circle svg {
        width: 28px;
        height: 28px;
        margin: 8px;
        margin-left: 22px;
    }

    .feature-title {
        font-size: 18px;
    }

    .field--name-field-title-description {
        font-size: 15px;
    }
}


/* ══════════════════════════════════════════
   MOBILE  (up to 767px) — 2 in row 1, 3rd centered in row 2
   ══════════════════════════════════════════ */
@media (max-width: 767px) {
    .icon-features {
        height: auto;
        padding: 30px 16px;
        align-items: center;
    }

    .icon-features .field--name-field-icon-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 16px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    /* First two items: 50% width in row 1 */
    .icon-features .field--name-field-icon-features>.field__item {
        display: flex;
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        margin-bottom: 0;
    }

    /* 3rd item (last item when odd): 100% width, centered in row 2 */
    .icon-features .field--name-field-icon-features>.field__item:nth-child(3),
    .icon-features .field--name-field-icon-features>.field__item:last-child:nth-child(odd) {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }

    .icon-features .field--name-field-icon-features>.field__item:last-child:nth-child(odd) .feature-item {
        max-width: 260px;
        margin: 0 auto;
    }

    .feature-item {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .icon-circle {
        width: 54px;
        height: 54px;
        margin-bottom: 12px;
    }

    .icon-circle img,
    .icon-circle svg {
        width: 26px;
        height: 26px;
        margin: 0 !important;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .feature-description,
    .feature-description p,
    .field--name-field-title-description {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* =================================================
   WHY CHOOSE US SECTION
   ================================================= */

.why-choose-us-section {
    padding: 30px 0;
    background-color: #ffffff !important;
}

.why-choose-us-section .field--name-field-title-description {
    color: #555555 !important;
}

.why-choose-us-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.why-choose-us-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #111111 !important;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.why-choose-us-section .section-description {
    font-size: 18px;
    color: #666666 !important;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── GRID: 4 equal columns, evenly spaced ── */
/* ── GRID: 4 equal columns on desktop, 2x2 grid on tablet & mobile ── */
.why-choose-us-grid .field--name-field-icon-with-title {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-us-grid .field--name-field-icon-with-title .field__item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ── ITEM WRAPPER ── */
.why-choose-us-section .why-choose-item,
.why-choose-us-section .feature-item {
    padding: 10px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* ── ICON CONTAINER & IMAGE ── */
.why-choose-us-section .why-choose-icon,
.why-choose-us-section .icon-circle {
    width: 64px;
    height: 64px;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: none !important;
}

.why-choose-us-section .why-choose-icon img,
.why-choose-us-section .why-choose-icon svg,
.why-choose-us-section .why-choose-icon picture img,
.why-choose-us-section .icon-circle img,
.why-choose-us-section .icon-circle svg,
.why-choose-us-section .icon-circle picture img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    margin: 0 !important;
    filter: none !important;
}

/* ── TITLE ── */
.why-choose-us-section .item-title,
.why-choose-us-section .feature-title,
.why-choose-us-section .field--name-field-icon-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-top: 0;
    margin-bottom: 8px !important;
    line-height: 1.3;
    text-align: center;
}

/* ── DESCRIPTION ── */
.why-choose-us-section .item-description,
.why-choose-us-section .feature-description,
.why-choose-us-section .feature-description p,
.why-choose-us-section .field--name-field-title-description {
    font-size: 14px !important;
    color: #555555 !important;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* ── RESPONSIVE: Tablet (2x2 Grid) ── */
@media (max-width: 1024px) {
    .why-choose-us-grid .field--name-field-icon-with-title {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 30px;
        max-width: 768px;
        padding: 0 30px;
    }

    .why-choose-us-section .why-choose-icon,
    .why-choose-us-section .icon-circle {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .why-choose-us-section .why-choose-icon img,
    .why-choose-us-section .why-choose-icon svg,
    .why-choose-us-section .why-choose-icon picture img,
    .why-choose-us-section .icon-circle img,
    .why-choose-us-section .icon-circle svg,
    .why-choose-us-section .icon-circle picture img {
        margin-left: 0 !important;
        width: 56px !important;
        height: 56px !important;
    }

    .why-choose-us-section .item-title,
    .why-choose-us-section .feature-title,
    .why-choose-us-section .field--name-field-icon-title {
        font-size: 18px !important;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .why-choose-us-section .item-description,
    .why-choose-us-section .feature-description,
    .why-choose-us-section .field--name-field-title-description {
        font-size: 14px !important;
        line-height: 1.5;
    }
}

/* ── RESPONSIVE: Mobile (2x2 Grid) ── */
@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 30px 0;
    }

    .why-choose-us-section .why-choose-icon,
    .why-choose-us-section .icon-circle {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .why-choose-us-section .why-choose-icon img,
    .why-choose-us-section .why-choose-icon svg,
    .why-choose-us-section .why-choose-icon picture img,
    .why-choose-us-section .icon-circle img,
    .why-choose-us-section .icon-circle svg,
    .why-choose-us-section .icon-circle picture img {
        margin-left: 0 !important;
        width: 48px !important;
        height: 48px !important;
    }

    .why-choose-us-section .section-title {
        font-size: 24px;
    }

    .why-choose-us-section .section-description {
        font-size: 14px;
    }

    .why-choose-us-grid .field--name-field-icon-with-title {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        padding: 0 16px;
        max-width: 100%;
    }

    .why-choose-us-section .section-header {
        margin-bottom: 30px;
    }

    .why-choose-us-section .why-choose-item,
    .why-choose-us-section .feature-item {
        padding: 4px;
    }

    .why-choose-us-section .item-title,
    .why-choose-us-section .feature-title,
    .why-choose-us-section .field--name-field-icon-title {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }

    .why-choose-us-section .item-description,
    .why-choose-us-section .feature-description,
    .why-choose-us-section .field--name-field-title-description {
        font-size: 13px !important;
        line-height: 1.4;
    }
}

/* =================================================
   HOT DEALS SECTION
   ================================================= */

.hot-deals-main {
    width: 99.6vw;
    height: auto;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 30px 20px 30px;
    background: linear-gradient(to bottom, #fff8f8, #ffffff);
    overflow: hidden;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    margin: 0;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c40000, #ff4d4d);
    border-radius: 2px;
}

.section-description {
    font-size: 16px;
    color: #666666;
    margin-top: 24px;
    margin-bottom: 0;
    max-width: 650px;
    line-height: 1.6;
}

.hot-deals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 100%;
}

.hot-deal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.hot-deal-card:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: #c40000;
    transform: translateY(-6px);
}

.hot-deal-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #c40000 0%, #ff4d4d 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(196, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hot-deal-card__badge::before {
    content: "🔥 ";
    font-style: normal;
}

.hot-deal-card__image-wrapper {
    height: 230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 12px;
    background: transparent;
}

.hot-deal-card__image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hot-deal-card:hover .hot-deal-card__image-wrapper img {
    transform: scale(1.12);
}

.hot-deal-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.hot-deal-card__brand {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 4px;
    line-height: 1.2;
}

.hot-deal-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px 0;
    height: 43px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hot-deal-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hot-deal-card__title a:hover {
    color: #c40000;
}

.hot-deal-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 14px;
    width: 100%;
}

.hot-deal-card__price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hot-deal-card__price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.hot-deal-card__list-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 400;
}

.hot-deal-card__stock-status {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-deal-card__stock-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.hot-deal-card__action {
    width: 100%;
}

.hot-deal-card__action .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: #c40000;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(196, 0, 0, 0.15);
    box-sizing: border-box;
}

.hot-deal-card__action .btn-add-to-cart:hover {
    background: #a80000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(196, 0, 0, 0.25);
    color: #ffffff;
}

/* Responsive Customizations */
@media (max-width: 1400px) {
    .hot-deals-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .hot-deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hot-deals-main {
        padding: 30px 30px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .hot-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hot-deals-main {
        padding: 30px 15px 30px;
    }

    .hot-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hot-deal-card {
        padding: 12px;
        border-radius: 12px;
    }

    .hot-deal-card__image-wrapper {
        height: 145px;
        margin-top: 14px;
        margin-bottom: 8px;
        padding: 4px;
    }

    .hot-deal-card__image-wrapper img {
        transform: scale(1);
    }

    .hot-deal-card__badge {
        top: 10px;
        left: 10px;
        padding: 3px 8px;
        font-size: 10px;
    }

    .hot-deal-card__brand {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 4px;
        display: block;
    }

    .hot-deal-card__title {
        font-size: 13px;
        height: 36px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .hot-deal-card__price {
        font-size: 16px;
    }

    .hot-deal-card__list-price {
        font-size: 12px;
    }

    .hot-deal-card__action .btn-add-to-cart {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* =================================================
   LOAD MORE BUTTON & MOB/TAB FUNCTIONALITY
   ================================================= */

.load-more-wrapper {
    display: none;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.btn-load-more {
    background-color: #c40000;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(196, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background-color: #e00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .load-more-wrapper {
        display: flex;
    }

    .js-hot-deals-grid:not(.show-all) .hot-deals-grid__item:nth-child(n+5) {
        display: none;
    }
}

/* =================================================
   FEATURED & LATEST SECTION — Premium 5-Column Grid
   ================================================= */

.featured-latest-main {
    width: 99.6vw;
    height: auto;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(to bottom, #fff8f8, #ffffff);
    overflow: hidden;
    box-sizing: border-box;
}

.featured-latest-main .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

.featured-latest-main .section-header__top,
.shop-by-category-section .section-header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.featured-latest-main .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    margin: 0;
    letter-spacing: -0.5px;
}

.featured-latest-main .section-title::after {
    display: none;
}

.featured-latest-main .view-all-link,
.shop-by-category-section .view-all-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c40000;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.featured-latest-main .view-all-link svg,
.shop-by-category-section .view-all-link svg {
    transition: transform 0.2s ease;
}

.featured-latest-main .view-all-link:hover,
.shop-by-category-section .view-all-link:hover {
    color: #a80000;
}

.featured-latest-main .view-all-link:hover svg,
.shop-by-category-section .view-all-link:hover svg {
    transform: translateX(4px);
}

.section-bottom-link {
    display: none;
}

@media (max-width: 768px) {
    .view-all-link--header {
        display: none !important;
    }

    .section-bottom-link {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-top: 24px;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .section-bottom-link .view-all-link {
        position: static;
        transform: none;
        font-size: 14px;
        font-weight: 600;
    }
}

.featured-latest-main .section-description {
    font-size: 15px;
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 650px;
    line-height: 1.6;
    text-align: center;
}

.featured-latest-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.featured-latest-grid__item {
    flex: 0 0 calc(20% - 20px);
}

.featured-latest-grid__item:nth-child(n+6) {
    display: none;
}

.featured-latest-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    /* For corner tags */
}

.featured-latest-card:hover {
    box-shadow: 0 20px 40px rgba(196, 0, 0, 0.08);
    border-color: #c40000;
    transform: translateY(-10px);
}

.product-card__badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    z-index: 10;
}

.featured-latest-card .badge {
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    box-shadow: none;
    line-height: 1.4;
}

.badge.featured {
    background: #fde047;
    color: #854d0e;
    border: none;
}

.badge.latest {
    background: #e2e8f0;
    color: #475569;
    border: none;
}

.badge.bestseller {
    background: #0ea5e9;
    color: #ffffff;
    border: none;
}

.featured-latest-card .product-card__image-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.featured-latest-card .product-card__image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-latest-card:hover .product-card__image-wrapper img {
    transform: scale(1.12);
}

.featured-latest-card .product-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.product-card__brand {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 4px;
    line-height: 1.2;
}

.featured-latest-card .product-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px 0;
    height: 43px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    width: 100%;
}

.featured-latest-card .product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-latest-card .product-card__title a:hover {
    color: #c40000;
}

.featured-latest-card .product-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 14px;
    width: 100%;
}

.product-card__price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.product-card__list-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 400;
}

.product-card__stock-status {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card__stock-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.product-card__action {
    width: 100%;
}

.product-card__action .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: #c40000;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(196, 0, 0, 0.15);
    box-sizing: border-box;
}

.product-card__action .btn-add-to-cart:hover {
    background: #a80000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(196, 0, 0, 0.25);
    color: #ffffff;
}

/* Toast Notification */
.redfox-toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #10b981;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: toastSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes toastSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-latest-card .product-card__price {
    font-size: 24px;
    font-weight: 900;
    color: #c40000;
}

.featured-latest-main .section-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #c40000 0%, #a00000 100%);
    color: #ffffff;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(196, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 0, 0, 0.25);
    color: #fff !important;
}

/* Responsive Customizations */
@media (max-width: 1400px) {
    .featured-latest-grid {
        gap: 20px;
    }

    .featured-latest-grid__item {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 1100px) {
    .featured-latest-grid__item {
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 900px) {
    .featured-latest-grid {
        gap: 15px;
    }

    .featured-latest-grid__item {
        flex: 0 0 calc(50% - 8px);
    }

    .featured-latest-main .section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .featured-latest-grid {
        gap: 12px;
    }

    .featured-latest-grid__item {
        flex: 0 0 calc(50% - 6px);
    }

    .featured-latest-card {
        padding: 12px;
        border-radius: 12px;
    }

    .featured-latest-card .product-card__image-wrapper {
        height: 145px;
        margin-top: 16px;
        margin-bottom: 8px;
        padding: 4px;
    }

    .featured-latest-card .product-card__image-wrapper img {
        transform: scale(1);
    }

    .product-card__badges {
        top: 10px;
        left: 10px;
    }

    .featured-latest-card .badge {
        padding: 2px 6px;
        font-size: 9px;
    }

    .featured-latest-card .product-card__brand {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 4px;
        display: block;
    }

    .featured-latest-card .product-card__title {
        font-size: 13px;
        height: 36px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .featured-latest-card .product-card__price {
        font-size: 16px;
    }

    .featured-latest-card .btn-add-to-cart {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* =================================================
   SHOP BY CATEGORY — Homepage Section Design
   ================================================= */
.shop-by-category-section {
    padding: 30px 0;
    background: #f8fafc;
    width: 100%;
}

.shop-by-category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-by-category-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.shop-by-category-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    display: inline-block;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.shop-by-category-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #c40000;
    border-radius: 2px;
}

.shop-by-category-section .section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
}

.shop-by-category-section .category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    padding: 0;
    width: 100%;
}

.shop-by-category-section .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 10px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    min-height: 160px;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
}

.shop-by-category-section .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #c40000;
}

.shop-by-category-section .category-card__image {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    background: transparent;
    transition: transform 0.3s ease;
}

.shop-by-category-section .category-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.shop-by-category-section .category-card__image svg {
    width: 32px;
    height: 32px;
    stroke: #c40000;
}

.shop-by-category-section .category-card:hover .category-card__image {
    transform: scale(1.12);
}

.shop-by-category-section .category-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1.25;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.shop-by-category-section .category-card:hover .category-card__name {
    color: #c40000 !important;
}

.shop-by-category-section .category-card__count {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .shop-by-category-section .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .shop-by-category-section .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-by-category-section .section-title {
        font-size: 26px;
    }
}