/* =======================
   ROOT VARIABLES
   ======================= */
:root {
    /* Brand Colors */
    --primary-color: #377aff;
    --primary-hover: #3d7ae0;
    --danger-color: #e60000;
    --danger-color2: #d00028;
    --orange: #fc5732;
    --warning: #ffcc00;
    --neutral-900: #111111;
    --neutral-600: #666666;
    --neutral-100: #f8f9fa;

    /* Background Colors */
    --dark-bg: #202744;
    --dark-bg-2: #3a415c;
    --dark-bg-3: #ebebeb;
    --white: #ffffff;
    --light-bg: #f9f9fb;

    /* Text Colors */
    --text-dark: #000000;
    --text-light: #ffeded;
    --text-gray: #999;
    --text-medium: #5d5d5d;

    /* Typography */
    --font-family: "Poppins", sans-serif;
    --font-xsm: 9px;
    --font-sm: 12px;
    --font-base: 14px;
    --font-md: 15px;
    --font-lg: 18px;
    --font-xl: 22px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 20px;
    --space-xl: 28px;

    /* Borders */
    --border-color: #4d5171;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: all 0.3s ease-in-out;

    /* Footer */
    --footer-bg: #353b56;
    --footer-link: #bfc2d2;
}

/* =======================
   BASE STYLES
   ======================= */
body {
    font-family: var(--font-family);
    margin: 0;
    background: var(--light-bg);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* =======================
   TOP HEADER
   ======================= */
.top-header {
    background: var(--dark-bg);
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-xl);
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

/* =======================
   SEARCH BAR
   ======================= */
.search-bar {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-bar:hover {
    box-shadow: var(--shadow-md);
}

.search-bar select,
.search-bar input {
    border: none;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-md);
}

.search-bar select {
    background: var(--white);
    font-weight: 500;
    color: var(--text-dark);
    min-width: 140px;
}

.search-bar input {
    flex: 1;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 500;
    font-size: var(--font-sm);
    padding: 0 var(--space-xl);
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-hover);
}

/* =======================
   HEADER ICONS
   ======================= */
.header-icons {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    justify-content: flex-end;
}

.header-icon {
    color: var(--white);
    font-size: var(--font-base);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    transition: var(--transition);
}

.header-icon small {
    display: block;
    font-size: var(--font-sm);
    opacity: 0.7;
    font-weight: 400;
}

.header-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

/* =======================
   BOTTOM NAVIGATION
   ======================= */
.bottom-nav {
    background: var(--dark-bg-2);
    box-shadow: var(--shadow-sm);
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    font-size: var(--font-base);
    font-weight: 500;
    padding: var(--space-md) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* =======================
   DEALS LINK
   ======================= */
.deals-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.deals-link:hover {
    color: var(--primary-color);
}

.deals-badge {
    background: var(--danger-color);
    color: var(--white);
    font-size: var(--font-sm);
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.deals-badge:hover {
    opacity: 0.9;
}

/* =======================
   BANNER SLIDER
   ======================= */
.banner-slider .item,
.p-banner-slider .item {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: center;
}

.banner-caption {
    position: absolute;
    bottom: 25%;
    left: 10%;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 5px;
}

.banner-caption h2 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.banner-slider .owl-nav {
    position: absolute;
    bottom: 1%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10%;
}

.p-banner-slider .owl-nav {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -15%;
}

.banner-slider .owl-nav button {
    background: var(--text-light) !important;
    color: var(--dark-bg) !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    font-size: 20px !important;
    line-height: 45px;
    text-align: center;
    pointer-events: auto;
    transition: background 0.3s;
}

.p-banner-slider .owl-nav button {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    font-size: 20px !important;
    line-height: 45px;
    text-align: center;
    pointer-events: auto;
    transition: background 0.3s;
}

.banner-slider .owl-nav button:hover,
.p-banner-slider .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.banner-slider .owl-dots,
.p-banner-slider .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner-slider .owl-dots .owl-dot span,
.p-banner-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: transparent;
    border: var(--text-light) 1px solid;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.banner-slider .owl-dots .owl-dot.active span,
.p-banner-slider .owl-dots .owl-dot.active span {
    width: 30px;
    height: 12px;
    background: var(--text-light);
    border-radius: 20px;
}

/* =======================
   DEALS SECTION
   ======================= */
.deals-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.deals-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* =======================
   PRODUCT CARD
   ======================= */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    border: var(--dark-bg-2) 1px solid;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border: var(--primary-color) 1px solid;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: var(--white);
    font-size: var(--font-xsm);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-lg);
    z-index: 10;
}

.discount-badge-2 {
    background: var(--orange);
    color: var(--white);
    font-size: var(--font-xsm);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-lg);
    z-index: 10;
}

.card-new-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--danger-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 50px 5px 40px;
    transform: rotate(55deg);
    transform-origin: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.rating-value {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars {
    color: var(--warning);
    font-size: var(--font-sm);
}

.rating-count {
    color: var(--primary-color);
    font-size: var(--font-sm);
}

.product-name {
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 40px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--danger-color);
}

.original-price {
    font-size: var(--font-sm);
    color: var(--text-gray);
    text-decoration: line-through;
}

.add-to-cart-btn {
    background: var(--dark-bg-3);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--primary-hover);
    color: var(--text-light);
}

/* =======================
   COUNTDOWN TIMER
   ======================= */
.countdown-section {
    background: rgba(208, 0, 40, 0.08);
    border: 2px solid rgba(208, 0, 40, 0.5);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-timer {
    display: flex;
    gap: 12px;
}

.countdown-item {
    background: var(--danger-color2);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 10px 17px;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: var(--font-sm);
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 4px;
}

/* =======================
   CAROUSELS
   ======================= */
.deals-carousel,
.best-selling-carousel,
.latest-product-carousel {
    position: relative;
}

.deals-carousel .owl-nav,
.best-selling-carousel .owl-nav,
.latest-product-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.deals-carousel .owl-nav button,
.best-selling-carousel .owl-nav button,
.latest-product-carousel .owl-nav button {
    background: var(--dark-bg) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    width: 25px;
    height: 25px;
    font-size: 25px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.deals-carousel .owl-nav button:hover,
.best-selling-carousel .owl-nav button:hover,
.latest-product-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
}

.deals-carousel .owl-nav .owl-prev,
.best-selling-carousel .owl-nav .owl-prev,
.latest-product-carousel .owl-nav .owl-prev {
    margin-left: -10px;
}

.deals-carousel .owl-nav .owl-next,
.best-selling-carousel .owl-nav .owl-next,
.latest-product-carousel .owl-nav .owl-next {
    margin-right: -10px;
}

/* =======================
   SHOP BY BRAND
   ======================= */
.shop-by-brand-section {
    background: linear-gradient(to top, #110038 0%, #300069 60%, #110038 100%),
        radial-gradient(circle at bottom left, #ff00ff 0%, #00000000 30%),
        radial-gradient(circle at bottom right, #00ffff 0%, #00000000 30%);
    background-blend-mode: overlay, screen, lighten;
    background-color: #110038;
    text-align: center;
}

.brand-section-title {
    color: var(--dark-bg);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-item {
    background: var(--white);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 0, 60, 0.07);
    transition: transform 0.2s;
}

.brand-item:hover {
    transform: scale(1.07);
    box-shadow: 0 16px 32px rgba(30, 0, 60, 0.13);
}

.brand-item img {
    width: 90%;
    /* height: 35%; */
    object-fit: contain;
}

/* =======================
   SHOP BY CATEGORIES
   ======================= */
.shop-by-categories-section {
    text-align: center;
}

.categories-section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
}

.category-card {
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(30, 0, 60, 0.07);
    /* padding: 40px 30px; */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.category-card-content {
    text-align: left;
    z-index: 2;
}

.category-card h3 {
    color: var(--dark-bg);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 38px;
}

.shop-now-btn {
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 36px;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
    border: none;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: background 0.25s;
}

.shop-now-btn:hover {
    background: #295fd4;
    color: var(--white);
}

.category-card-img {
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    position: relative;
}

.off-lable {
    background: var(--warning);
    padding: 3px 5px;
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* =======================
   PROMO CARD
   ======================= */
.promo-card {
    background: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 36px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.15;
}

.promo-off {
    display: inline-block;
    background: #ffe600;
    color: #222;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    padding: 6px 16px;
    margin-bottom: 12px;
}

.promo-btn {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 36px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    margin-top: 24px;
}

/* =======================
   MAIN BANNER
   ======================= */
.main-banner-section {
    background: var(--white);
}

.banner-card {
    background: #f7f7f7;
    border-radius: 22px;
    box-shadow: 0 2px 10px rgba(30, 0, 60, 0.08);
    padding: 38px;
    height: 500px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.banner-arrival-card {
    background: url("./assets/images/banner/arrival-bg.png") center/cover no-repeat,
        #f7f7f7;
}

.banner-arrival-badge {
    background: #ffe600;
    color: #222;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    padding: 6px 18px;
    display: inline-block;
    margin-bottom: 18px;
}

.banner-arrival-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.15;
}

.banner-arrival-desc {
    color: var(--text-medium);
    font-size: 1.14rem;
    margin-bottom: 22px;
    font-weight: 400;
}

.banner-shop-btn {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 36px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
}

.banner-shop-btn:hover {
    background: #295fd4;
    color: var(--white);
}

.banner-shop-btn2 {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 36px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    position: absolute;
    right: 30%;
    bottom: 5%;
}

.banner-shop-btn2:hover {
    background: #295fd4;
}

.banner-card-img {
    width: 100%;
    height: auto;
    margin-left: 30px;
    object-fit: contain;
}

.banner-slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.banner-slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
}

.banner-slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 20px;
}

.banner-sale-card {
    background: linear-gradient(120deg, #0c0742 0%, #6616a0 80%, #7c4bcf 100%);
    color: var(--dark-bg);
    border-radius: 22px;
    min-height: 390px;
    text-align: center;
    position: relative;
    padding: 38px 20px;
}

.banner-sale-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.banner-sale-desc {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sale-timer {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 12px;
}

.timer-item {
    background: #e60029;
    color: var(--white);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.03rem;
}

.timer-value {
    font-size: 1.23rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.85;
}

.banner-sale-img {
    max-width: 333px;
}

/* =======================
   PROMO BANNER
   ======================= */
.promo-banner-section {
    padding: 28px 0;
    background: var(--white);
    font-family: var(--font-family);
}

.promo-banner-card {
    background: linear-gradient(90deg,
            #090b2b 0%,
            #111d54 60%,
            #7c4bcf 100%,
            #f32fac 120%,
            #fff 140%);
    border-radius: var(--radius-lg);
    min-height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    flex: 1 1 0;
    color: var(--dark-bg);
    z-index: 2;
}

.promo-banner-subtitle {
    font-size: 1.03rem;
    font-weight: 400;
    opacity: 0.85;
}

.promo-banner-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 34px;
}

.promo-banner-btn {
    padding: 10px 36px;
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-banner-btn:hover {
    background: var(--primary-hover);
}

/* =======================
   RECOMMENDED SECTION
   ======================= */
.recommended-section {
    background: var(--white);
    font-family: var(--font-family);
    padding-bottom: 40px;
}

.recommended-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 38px;
    letter-spacing: 1px;
}

.recommended-card {
    background: var(--white);
    border: 2px solid #a7a7a7;
    padding: 38px 24px;
    margin-bottom: 8px;
    min-height: 210px;
    transition: box-shadow 0.2s, border 0.2s;
    display: flex;
    gap: 30px;
}

.recommended-card:hover {
    border-color: var(--primary-color);
}

.recommended-img {
    width: 120px;
    max-height: 140px;
    object-fit: contain;
}

.recommended-info {
    flex: 1;
}

.recommended-brand {
    color: #b7bac2;
    font-size: var(--font-md);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.recommended-name {
    color: var(--text-dark);
    font-size: var(--font-md);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.35;
}

.recommended-rating {
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.star {
    color: #ffb800;
    font-size: 1.1em;
    margin-left: 2px;
}

.star-empty {
    color: #bdbdbd;
    font-size: 1.1em;
}

.recommended-price {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: var(--font-md);
    margin-top: 5px;
}

.recommended-price .current {
    color: var(--danger-color);
    font-weight: 700;
}

.recommended-price .original {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.95em;
}

/* =======================
   PROMO STRIP
   ======================= */
.promo-strip-section {
    padding: 18px 0;
    font-family: var(--font-family);
}

.promo-strip-card {
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 18px 26px;
    color: var(--white);
    font-size: var(--font-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.promo-strip-text {
    font-size: var(--font-md);
    font-weight: 700;
}

.promo-strip-code {
    background: var(--white);
    color: #222;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1.07rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(50, 90, 255, 0.08);
}

/* =======================
   DEALS WEEK BAR
   ======================= */
.deals-week-bar {
    width: 100%;
    padding: 0 0 0 12px;
    font-family: var(--font-family);
    min-height: 60px;
    margin-bottom: 12px;
}

.deals-title-text {
    font-size: 2rem;
    font-weight: 700;
}

.deals-timer {
    gap: 12px;
    display: flex;
    align-items: center;
}

.deals-timer-item {
    background: rgba(208, 0, 40, 0.06);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.deals-timer-value {
    color: var(--danger-color);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.deals-timer-label {
    color: var(--danger-color);
    font-size: 0.93rem;
    font-weight: 600;
    margin-top: 2px;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

/* =======================
   PRODUCTS BY BRANDS
   ======================= */
.products-by-brands-section {
    padding: 46px 0;
    min-height: 600px;
    /* background: linear-gradient(120deg,
            #0c0742 0%,
            #6616a0 80%,
            #7c4bcf 100%,
            #a15fcf 110%,
            #f32fac 120%,
            #fff 140%); */
    background: linear-gradient(120deg, #2ebff6 0%, #68c4e6 80%, #89d7ee 100%, #acdcf6 110%, #f32fac 120%, #fff 140%);
    font-family: var(--font-family);
}

.brands-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.brand-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(30, 0, 60, 0.06);
    padding: 30px 18px 22px 18px;
    min-height: 425px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    position: relative;
}

.brand-product-card:hover {
    box-shadow: 0 8px 24px rgba(30, 0, 60, 0.13);
}

.brand-product-img {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.brand-product-img img {
    width: 100%;
    object-fit: contain;
}

.brand-product-rating {
    font-size: 1rem;
    color: #222;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #ffb800;
    font-size: 1rem;
    margin-left: 4px;
    letter-spacing: 1px;
}

.ratings-count {
    color: var(--primary-color);
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6px;
}

.brand-product-name {
    color: #222;
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.22;
    min-height: 48px;
}

.brand-product-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.07rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-current {
    color: var(--danger-color);
    font-weight: 700;
}

.price-original {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.95em;
}

.price-discount {
    background: #ff4423;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 4px 10px;
}

.brand-product-btn {
    background: #e3e3e3;
    color: #222;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.07rem;
    padding: 12px 0;
    width: 100%;
    margin-top: auto;
    border: none;
    transition: background 0.2s;
}

.brand-product-btn.blue {
    background: var(--primary-color);
    color: var(--white);
}

.brand-product-btn:hover,
.brand-product-btn.blue:hover {
    background: var(--primary-hover);
    color: var(--white);
}

.brands-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 12px;
}

.brands-list-btn {
    background: var(--white);
    color: #222;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(30, 0, 60, 0.07);
    padding: 18px 0;
    margin: 0;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    outline: none;
}

.brands-list-btn.active,
.brands-list-btn:hover,
.brands-list-btn:focus {
    background: var(--primary-color);
    color: var(--white);
}

/* =======================
   SHOP FEATURES
   ======================= */
.shop-features-strip {
    background: var(--dark-bg-2);
    font-family: var(--font-family);
}

.feature-item {
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.feature-icon i {
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-weight: 600;
    color: var(--white);
    font-size: 1.13rem;
    display: block;
    text-align: justify;
}

.feature-desc {
    color: var(--footer-link);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 3px;
}

/* =======================
   FOOTER
   ======================= */
.footer-section {
    background: var(--footer-bg);
    color: var(--footer-link);
    font-family: var(--font-family);
    padding-top: 46px;
    padding-bottom: 0;
}

.footer-logo-img {
    max-width: 110px;
    margin-bottom: 18px;
}

.footer-contact {
    font-size: 1rem;
}

.footer-contact-item {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact-item i {
    color: var(--white);
    font-size: 1.11rem;
    min-width: 19px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.14rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-link);
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter p {
    color: var(--footer-link);
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-newsletter-input {
    background: var(--white);
    border-radius: 32px;
    border: none;
    padding: 14px 22px;
    font-size: 1rem;
    color: #222;
    width: 220px;
    max-width: 100%;
    margin-right: 10px;
}

.footer-newsletter-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 32px;
    padding: 14px 33px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
}

.footer-newsletter-btn:hover {
    background: var(--primary-hover);
}

.footer-terms {
    margin-top: 14px;
    font-size: 0.97rem;
    color: var(--footer-link);
}

.footer-link {
    color: var(--primary-color);
    text-decoration: underline;
    margin: 0 2px;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 2px solid var(--border-color);
    margin-top: 36px;
    padding-top: 16px;
    padding-bottom: 10px;
    background: var(--footer-bg);
}

.footer-payment-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-right: 10px;
}

.footer-pay-icon {
    background: var(--white);
    border-radius: 7px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(50, 90, 255, 0.08);
    padding: 4px;
}

/* =======================
   PRODUCT SLIDER
   ======================= */
.product-slider {
    padding: 14px;
    border: 1px solid var(--dark-bg-2);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.product-slider .item {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.product-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
}

.product-slider .owl-nav button {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    font-size: 20px !important;
    line-height: 35px;
    text-align: center;
    pointer-events: auto;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-slider .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.product-slider .owl-nav button span {
    position: relative;
    top: -1px;
}

.product-slider-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.product-slider-thumbs .thumb img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.product-slider-thumbs .thumb.active img {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

/* =======================
   PRODUCT DETAILS
   ======================= */
.product-section {
    background: var(--white);
    padding: 5rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #d32f2f;
}

.mrp {
    text-decoration: line-through;
    color: var(--text-gray);
    margin-left: 8px;
    font-size: 1rem;
}

.offer-tag {
    background: var(--orange);
    color: var(--white);
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.offer-box {
    background: #f0f7ff;
    padding: 1rem;
    border-radius: 8px;
}

.owl-carousel .item img {
    border-radius: 12px;
    width: 100%;
}

.offers-panel {
    background: linear-gradient(180deg, #143a7a, #1a53b8);
    color: var(--white);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(17, 42, 89, 0.18);
}

.offers-panel h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffea;
}

.offers-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.offers-item small {
    opacity: 0.95;
    display: block;
    margin-top: 6px;
    color: #e7efff;
}

.purchase-bar {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white);
}

/* .quantity-box select { */
.quantity-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 500;
    color: #111827;
    margin-right: 2px;
    /* width: 80px; */
}

.quantity-box label {
    color: #111827;
    font-weight: 600;
}

.btn-cart {
    background-color: #1f2937;
    color: var(--white);
    border-radius: 6px;
    padding: 8px 20px;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-cart:hover {
    background-color: #374151;
}

.btn-buy {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    padding: 8px 20px;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-buy:hover {
    background-color: var(--primary-hover);
}

.delivery-info {
    font-size: 14px;
    color: #111827;
}

.delivery-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.delivery-info li::before {
    content: "• ";
    color: #111827;
    font-weight: 700;
}

.emi-text {
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
}

.emi-text span {
    font-weight: 600;
}

select {
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-left: 4px;
    cursor: pointer;
}

.sold-info {
    font-weight: 600;
    font-size: 14.5px;
    margin-top: 15px;
}

.sold-info::before {
    content: "🔥 ";
}

.hurry-text {
    margin-top: 10px;
    font-size: 14.5px;
    font-weight: 600;
}

.hurry-text::before {
    content: "🔴 ";
}

.hurry-text span {
    color: red;
}

.right-section {
    margin-top: 0.2rem;
}

.model-info {
    color: #777;
    font-size: 14px;
}

.model-info strong {
    color: #000;
}

.model-options {
    display: flex;
    gap: 10px;
}

.model-card {
    border: 1.5px solid #d1d1d1;
    border-radius: 6px;
    padding: 8px 12px;
    /* width: 110px; */
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.model-card.active {
    border-color: var(--warning);
    box-shadow: 0 0 0 2px #fff3d0;
}

.model-card span {
    display: block;
    font-weight: 600;
    font-size: 12.5px;
}

.priceIn {
    font-weight: 600;
    font-size: 14px;
}

.old-priceIn {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 10px;
}

/* =======================
   SPECIFICATION SECTION
   ======================= */
.specification-section {
    padding: 3rem 0;
}

.specification-section .about-box {
    font-size: var(--font-sm);
    font-weight: 100;
}

.specification-section .about-box h3 {
    font-size: var(--font-sm);
    font-weight: 700;
}

.specification-section .about-box .features-inner-box {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: var(--dark-bg-2) 1px solid;
}

.specification-section .about-box .features-inner-box a {
    color: var(--primary-color);
}

.spec-row {
    display: flex;
    align-items: center;
    font-size: var(--font-sm);
    margin: 0 0 var(--space-md) 0;
}

.spec-row .dots {
    flex: 1;
    border-bottom: 1px dashed #aaa;
    margin: 0 8px;
}

.v-line {
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    opacity: 0.7;
    margin: 0 auto;
}

/* =======================
   REVIEWS SECTION
   ======================= */
.review-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 2rem;
}

.rating-box {
    background-color: #4478f2;
    color: var(--white);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
}

.rating-box .stars {
    color: var(--warning);
    /* font-size: 1.5rem; */
    font-size: 1.2rem;
}

.progress {
    height: 8px;
    border-radius: 10px;
}

.progress-bar {
    background-color: var(--warning);
}

.review-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

hr {
    opacity: 0.2;
}

.info-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #000;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    background-color: #4478f2;
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.table> :not(caption)>*>* {
    border: none;
    vertical-align: middle;
}

.table tbody tr td:first-child {
    font-weight: 600;
    /* width: 50%; */
    color: #333;
}

.table tbody tr td {
    background-color: #fafafa;
    border-radius: 8px;
}

.table tbody tr th {
    border-bottom: 10px solid var(--white);
}

/*  Cart Css */


.shopping-cart {
    background: var(--primary-color);
    padding: 7px;
    color: var(--white);

}


.total-card {
    background: var(--dark-bg);
    color: var(--white);
    padding: 12px;
}


.table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.table tbody tr td {
    padding-top: 16px;
    padding-bottom: 16px;
}



.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Buttons */
.qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qty-btn:hover {
    background-color: #e9ecef;
}

/* Input */
.qty-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

/* Short divider line */
.qty-btn:first-child::after,
.qty-btn:last-child::before {
    content: "";
    position: absolute;
    top: 6px;
    /* ⬅️ space from top */
    bottom: 6px;
    /* ⬅️ space from bottom */
    width: 1px;
    background-color: #ddd;
}

.qty-btn:first-child::after {
    right: 0;
}

.qty-btn:last-child::before {
    left: 0;
}



.cart-price {
    color: var(--primary-color);
}

.remove-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--neutral-600);
    opacity: 1;
    color: var(--white);
    border: 0;
}

.remove-btn:hover {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--danger-color);
    color: var(--white);
    border: 0;
}


.sale-banner,
.logo-word {
    font-family: Poppins, Inter, sans-serif;
}

/* Sale banner */
.sale-banner {
    background: var(--brand-primary);
}

.sale-banner .text-sep {
    opacity: 0.75;
}

/* Logo size */

/* Section padding */
.section-padding {
    padding: 2rem 0;
}

.cart-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
}



/* Quantity input group (no JS behavior—visual only) */
.qty-group .qty-input {
    width: 2rem;
}

/* Discover banner */
.discover-banner {
    background: var(--neutral-100);
    border: 1px solid #e5e7eb;
}

/* Feature cards */
.feature-card img {
    opacity: 0.9;
}

/* Empty state */


/* Footer */

/* Buttons: ensure readable contrast when overriding */



/* Responsive adjustments */
@media (max-width: 575.98px) {
    .section-padding {
        padding: 1.25rem 0;
    }
}

/* =======================
   MEDIA QUERIES
   ======================= */

/* Tablet (991px and below) */
@media (max-width: 991px) {
    .brand-item {
        width: 120px;
        height: 120px;
    }

    .brand-section-title {
        font-size: 1.5rem;
    }

    .category-card {
        height: 220px;
        /* padding: 30px 16px; */
    }

    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }

    .shop-now-btn {
        padding: 7px 26px;
        font-size: 0.9rem;
    }

    .category-card-img {
        width: 160px;
        height: 160px;
    }

    .banner-card,
    .banner-arrival-card,
    .banner-sale-card {
        min-height: 220px;
        padding: 18px 8px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .banner-arrival-title,
    .banner-sale-title {
        font-size: 1.1rem;
    }

    .banner-arrival-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .banner-card-img,
    .banner-sale-img {
        max-width: 150px;
        margin: 8px 0 0 0;
        width: 80%;
    }

    .sale-timer .timer-item {
        width: 43px;
        height: 43px;
        font-size: 0.8rem;
    }

    .recommended-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 8px;
        gap: 10px;
        min-height: 120px;
    }

    .recommended-img {
        width: 90px;
        max-height: 90px;
        margin-bottom: 6px;
    }

    .recommended-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .brands-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .brand-product-card {
        min-height: 260px;
        padding: 18px 8px 12px 8px;
    }

    .brand-product-img {
        height: 80px;
        margin-bottom: 10px;
    }

    .brand-product-img img {
        max-width: 60px;
        max-height: 70px;
    }

    .brands-list-btn {
        font-size: 1rem;
        padding: 10px 0;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.97rem;
    }

    .footer-section {
        padding-top: 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .footer-logo-img {
        max-width: 80px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .footer-pay-icon {
        width: 30px;
        height: 30px;
        margin-right: 4px;
    }

    .offers-panel {
        width: 100%;
        margin-top: 14px;
        box-shadow: none;
        background: linear-gradient(180deg, #f5f8ff, #f7fbff);
        color: #0b1a2b;
        padding: 14px;
        border: 1px solid #eef6ff;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .promo-banner-card {
        flex-direction: column;
        padding: 18px;
        min-height: 100px;
        text-align: center;
    }

    .promo-strip-card {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        text-align: center;
        padding: 14px 10px;
    }

    .promo-strip-code {
        padding: 8px 10px;
        font-size: 0.98rem;
    }

    .promo-strip-text {
        font-size: 0.98rem;
    }

    .deals-week-bar {
        flex-direction: column;
        gap: 8px;
        min-height: 44px;
        padding: 6px 0;
    }

    .deals-title {
        font-size: 1rem;
        gap: 4px;
    }

    .deals-title-text {
        font-size: 0.97rem;
    }

    .deals-timer {
        gap: 6px;
    }

    .deals-timer-item {
        padding: 3px 10px;
        min-width: 33px;
    }

    .deals-timer-value {
        font-size: 1rem;
    }

    .deals-timer-label {
        font-size: 0.8rem;
    }

    .products-by-brands-section {
        padding: 20px 0;
        min-height: 200px;
    }

    .brands-list {
        gap: 10px;
        margin-top: 6px;
    }

    .brand-product-card {
        min-height: 180px;
        padding: 10px 3px;
    }

    .brand-product-img {
        height: 50px;
        margin-bottom: 6px;
    }

    .brand-product-img img {
        max-width: 38px;
        max-height: 38px;
    }

    .footer-section {
        padding-top: 10px;
    }

    .footer-title {
        font-size: 0.96rem;
    }

    .footer-logo-img {
        max-width: 60px;
        margin-bottom: 6px;
    }

    .footer-newsletter-input {
        width: 100px;
        padding: 9px 10px;
        font-size: 0.93rem;
    }

    .footer-newsletter-btn {
        padding: 9px 16px;
        font-size: 0.89rem;
    }

    .purchase-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .delivery-info {
        margin-top: 10px;
    }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) {
    .brand-item {
        width: 80px;
        height: 80px;
    }

    .category-card {
        height: 180px;
        /* padding: 14px 8px; */
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        gap: 12px;
    }

    .category-card-img {
        width: 120px;
        height: 120px;
        margin-top: 10px;
    }

    .categories-section-title {
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 0.97rem;
    }

    .feature-desc {
        font-size: 0.89rem;
    }

    .container {
        flex-direction: column;
    }
}

/* Extra Responsive for Promo Banner */
@media (max-width: 1200px) {
    .promo-banner-card {
        padding: 0 8px;
    }

    .ac-img {
        max-width: 200px;
        margin-right: 10px;
    }

    .promo-banner-title {
        font-size: 1.3rem;
    }
}

.flags{
        background: var(--dark-bg)
}