/*index page,header,footer css*/
/*=====================================================
GLOBAL CSS
=====================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

a {
    text-decoration: none;
}

/*=====================================================
SECTION 01 : TOP OFFER BAR
=====================================================*/

.top-offer-bar {
    background: linear-gradient(90deg, #007aed, #0caa2a, #00469f);
    color: #fff;
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.offer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-left {
    display: flex;
    gap: 18px;
    align-items: center;
}

.offer-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .5);
}

.offer-right {
    display: flex;
    gap: 22px;
}

.offer-right a {
    color: #fff;
    transition: .3s;
}

.offer-right a:hover {
    color: #fff3d1;
}

@media(max-width:992px) {

    .offer-right {
        display: none;
    }

    .offer-left {
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .top-offer-bar {
        font-size: 12px;
        height: 38px;
    }

    .offer-divider {
        display: none;
    }

    .offer-left span:last-child {
        display: none;
    }

}

/*=========================================================
SECTION 02 : PREMIUM HEADER
=========================================================*/

.main-header {

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    padding: 18px 0;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    position: sticky;

    top: 0;

    z-index: 999;

}


/* HEADER WRAPPER */

.header-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 4px;

}


/* ================= LOGO ================= */

.logo a {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

}


.logo-icon {

    width: 55px;

    height: 55px;

    border-radius: 16px;

    background: linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    box-shadow: 0 8px 20px rgba(16, 89, 179, .35);

}


.logo-text {

    font-size: 32px;

    font-weight: 800;

    color: rgb(0 60 147);

    letter-spacing: -.5px;

}


.logo-text span {

    color: rgb(3 138 30);

}

.logo-img {
    width: 93px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 80px;
    }
}

/* ================= LOCATION ================= */

.delivery-location {

    display: flex;

    gap: 12px;

    align-items: center;

}


.delivery-location i {

    font-size: 26px;

    color: rgb(16 89 179);

}


.delivery-location small {

    display: block;

    color: #777;

    font-size: 12px;

}


.delivery-location strong {

    font-size: 15px;

    color: #222;

}



/* ================= SEARCH ================= */


.search-box {

    flex: 1;

}


.search-box form {

    display: flex;

    border-radius: 50px;

    overflow: hidden;

    background: #fff;

    border: 2px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg,
            rgb(16 89 179),
            rgb(3 138 30)) border-box;

    box-shadow:
        0 5px 20px rgba(16, 89, 179, .12);

}



.search-box select {

    width: 170px;

    border: none;

    background: #f4f8ff;

    padding: 15px;

    color: rgb(0 60 147);

    font-weight: 600;

    outline: none;

}


.search-box input {

    flex: 1;

    border: none;

    padding: 15px 20px;

    outline: none;

    font-size: 15px;

}



.search-box button {

    width: 75px;

    border: none;

    background: linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    cursor: pointer;

    transition: .3s;

}


.search-box button:hover {

    background: linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

}



/* ================= HEADER ICONS ================= */


.header-icons {

    display: flex;

    align-items: center;

    gap: 28px;

}



.header-icons a {

    color: rgb(0 60 147);

    text-decoration: none;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    transition: .3s;

}



.header-icons a:hover {

    color: rgb(3 138 30);

    transform: translateY(-3px);

}



.header-icons i {

    font-size: 23px;

    margin-bottom: 5px;

}



.header-icons span {

    font-size: 13px;

    font-weight: 600;

}



/* CART BADGE */

.cart-count {

    position: absolute;

    top: -10px;

    right: -10px;

    width: 21px;

    height: 21px;

    border-radius: 50%;

    background: rgb(3 138 30);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px !important;

    font-weight: 700;

    box-shadow: 0 4px 10px rgba(3, 138, 30, .4);

}



/* ================= MOBILE ================= */


@media(max-width:992px) {

    .header-wrapper {

        flex-wrap: wrap;

    }


    .delivery-location {

        display: none;

    }


    .search-box {

        order: 3;

        width: 100%;

    }


    .search-box select {

        display: none;

    }

}



@media(max-width:576px) {


    .logo-text {

        font-size: 24px;

    }


    .logo-icon {

        width: 45px;

        height: 45px;

        font-size: 20px;

    }


    .header-icons {

        gap: 15px;

    }




    .search-box input {

        padding: 12px;

    }


    .search-box button {

        width: 55px;

    }


}

/*=========================================================
SECTION 03 : CATEGORY NAVIGATION
=========================================================*/

.category-navbar {

    background: #fff;

    border-top: 1px solid rgba(16, 89, 179, .12);

    border-bottom: 1px solid rgba(16, 89, 179, .12);

    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);

    position: relative;

    z-index: 9999;

    overflow: visible;

}

.category-menu {

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;

    justify-content: flex-start;

    gap: 10px;

    list-style: none;

    overflow-x: auto;
    overflow-y: visible;

    white-space: nowrap;

    position: relative;

}

.category-menu::-webkit-scrollbar {

    display: none;

}


.category-menu li {

    flex-shrink: 0;

}


.category-menu li a {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 16px 18px;

    color: rgb(0 60 147);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;

    position: relative;

}


.category-menu li a i {

    color: rgb(16 89 179);

    font-size: 17px;

    transition: .3s;

}


/* underline */

.category-menu li a::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: linear-gradient(90deg,
            rgb(16 89 179),
            rgb(3 138 30));

    transition: .3s;

}



/* hover */

.category-menu li a:hover {

    color: rgb(16 89 179);

    background: rgba(0, 130, 243, .06);

}


.category-menu li a:hover i {

    color: rgb(3 138 30);

    transform: translateY(-2px);

}


.category-menu li a:hover::after {

    width: 100%;

}



/* MOBILE */

@media(max-width:992px) {

    .category-menu {

        justify-content: flex-start;

    }


    .category-menu li a {

        padding: 14px 16px;

        font-size: 13px;

    }

}

/*=========================================================
SECTION 04 : HERO SECTION
=========================================================*/




.hero-slider {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: flex-start;
    /* ಮೇಲಕ್ಕೆ ತರುವುದಕ್ಕೆ */
    padding-top: 80px;
    /* ಇನ್ನೂ ಮೇಲೆ ತರಲು */
    background:
        radial-gradient(circle at top right,
            rgba(0, 130, 243, .18),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(3, 138, 30, .12),
            transparent 40%),

        linear-gradient(135deg,
            #f8fbff 0%,
            #edf6ff 45%,
            #dceeff 100%);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* LEFT CONTENT */
.hero-content {
    width: 48%;
    padding-left: 8%;
    padding-right: 4%;
    position: relative;
    z-index: 5;
    transform: translateY(-50px);
}

.tag {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(16 89 179);
    border: 1px solid rgba(16, 89, 179, .15);
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(16, 89, 179, .12);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 78px;
    line-height: 1.05;
    color: rgb(0 60 147);
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-content h1 em {
    font-style: italic;
    color: rgb(3 138 30);
}

.hero-content p {
    font-size: 18px;
    color: #5f6f82;
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    text-decoration: none;
    padding: 18px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.35s ease;
}

.btn-primary {
    background: linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    box-shadow: 0 15px 35px rgba(16, 89, 179, .30);
    color: white;

}

.btn-outline {
    background: rgba(255, 255, 255, .55);

    color: rgb(16 89 179);

    border: 2px solid rgb(16 89 179);

    backdrop-filter: blur(10px);
}

.btn-primary:hover {

    transform: translateY(-5px);

    background: linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    box-shadow: 0 18px 40px rgba(3, 138, 30, .30);

}

.btn-outline:hover {

    transform: translateY(-5px);

}

/* IMAGE SIDE */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translateY(-70px);
    /* Image 40px ಮೇಲಕ್ಕೆ */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, #000 45%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, #000 45%);
}

/* FIXED FEATURE CARDS */
.hero-features {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    z-index: 10;

}

.feature-item {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    padding: 22px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(16, 89, 179, .12);
    box-shadow: 0 18px 45px rgba(16, 89, 179, .08);
    transition: all 0.4s;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: #fff;

    border-color: rgb(0 130 243);

    box-shadow: 0 22px 45px rgba(0, 130, 243, .18);
}

.icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    box-shadow: 0 10px 25px rgba(16, 89, 179, .25);
    font-size: 28px;

}

.feature-item h4 {
    color: rgb(0 60 147);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-item p {
    color: #687789;
    font-size: 13px;
    line-height: 1.4;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(16, 89, 179, .25);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: rgb(3 138 30);

    box-shadow: 0 0 15px rgba(3, 138, 30, .4);
    transform: scale(1.4);
}

/*=========================================================
RESPONSIVE HERO SECTION
=========================================================*/

/* ---------- Tablet ---------- */
@media (max-width: 991px) {

    .hero-slider {
        min-height: auto;
        padding: 40px 0 280px;
    }

    .slide {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 20px;
        text-align: center;
        transform: none;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.15;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 420px;
        justify-content: center;
        transform: none;
        margin-bottom: 20px;
    }

    .hero-image img {
        width: 90%;
        height: 100%;
        object-fit: contain;
    }

    .hero-features {
        position: absolute;
        left: 50%;
        bottom: 20px;
        width: 94%;
        transform: translateX(-50%);
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .slider-dots {
        bottom: 220px;
    }
}


/* ---------- Mobile ---------- */
@media (max-width:768px) {

    .hero-slider {
        padding-bottom: 420px;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .tag {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px;
    }

    .hero-image {
        height: 320px;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 92%;
    }

    .feature-item {
        padding: 18px;
    }

    .icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .slider-dots {
        bottom: 390px;
    }
}


/* ---------- Small Mobile ---------- */
@media (max-width:576px) {

    .hero-slider {
        padding-top: 20px;
        padding-bottom: 430px;
    }

    .slide {
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image {
        height: 250px;
    }

    .hero-image img {
        width: 100%;
    }

    .tag {
        font-size: 11px;
        padding: 8px 18px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 15px;
        padding: 15px;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
    }

    .slider-dots {
        bottom: 400px;
    }
}


/* ---------- Extra Small Devices ---------- */
@media (max-width:400px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        height: 220px;
    }

    .icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-item {
        padding: 15px;
    }

}

/*=========================================================
SECTION 06 : SHOP BY CATEGORY
=========================================================*/


.category-section {

    padding: 30px 0;

    background:
        linear-gradient(180deg,
            #ffffff,
            rgba(16, 89, 179, .04));

}



/* SECTION HEADING */

.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 40px;

}



.section-subtitle {

    color: rgb(3 138 30);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}



.section-heading h2 {

    font-size: 36px;

    font-weight: 700;

    color: rgb(0 60 147);

    margin: 8px 0;

}



.section-heading p {

    color: #66788a;

}


/* CATEGORY CARD */

.category-card {

    background: #fff;

    border-radius: 22px;

    text-align: center;

    padding: 22px;

    display: block;

    text-decoration: none;

    transition: .35s ease;

    box-shadow:

        0 10px 25px rgba(16, 89, 179, .08);

    border:

        1px solid rgba(16, 89, 179, .10);

}



.category-card:hover {

    transform: translateY(-8px);

    border-color: rgb(16 89 179);

    box-shadow:

        0 18px 40px rgba(16, 89, 179, .18);

}



/* IMAGE */

.category-card img {

    width: 100px;

    height: 100px;

    border-radius: 50%;

    object-fit: cover;

    margin: auto;

    margin-bottom: 18px;

    transition: .35s;

    border:

        4px solid rgba(16, 89, 179, .08);

}



.category-card:hover img {

    transform: scale(1.08);

    border-color: rgba(3, 138, 30, .35);

}



/* TITLE */

.category-card h5 {

    font-size: 18px;

    font-weight: 700;

    color: rgb(0 60 147);

}



/* COUNT */

.category-card span {

    color: #718096;

    font-size: 14px;

}



/* MOBILE */

@media(max-width:768px) {


    .section-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }



    .section-heading h2 {

        font-size: 28px;

    }



    .category-card {

        padding: 15px;

    }



    .category-card img {

        width: 80px;

        height: 80px;

    }



    .category-card h5 {

        font-size: 16px;

    }



    .category-card span {

        font-size: 12px;

    }


}

/* =========================================================
   SITE-WIDE WIDTH SAFEGUARDS AND RESPONSIVE HEADER LAYOUT
   These rules intentionally follow the legacy header/category overrides.
   ========================================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
canvas,
iframe {
    max-width: 100%;
}

.mymarket-fixed-header,
.top-offer-bar,
.main-header,
.category-navbar,
.hero-banner,
.discount-banners {
    width: 100%;
    max-width: 100%;
}

/* Bootstrap containers retain their normal gutters, without becoming wider
   than their parent when nested in a full-width header section. */
.mymarket-fixed-header .container,
.discount-banners .container {
    width: 100%;
    max-width: 100%;
}

.offer-wrapper,
.header-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.header-wrapper {
    justify-content: flex-start;
    gap: clamp(10px, 1.5vw, 24px);
}

.logo,
.delivery-location,
.header-icons {
    flex: 0 0 auto;
    min-width: 0;
}

.delivery-location {
    max-width: min(12rem, 20vw);
}

.delivery-location>div,
.delivery-location strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-box {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.search-box form,
.search-box input {
    min-width: 0;
    max-width: 100%;
}

.search-box input {
    width: 100%;
}

.search-box button {
    flex: 0 0 75px;
}

/* The rail, rather than the document, owns category overflow.  Earlier
   rules made the max-content menu visible outside this container. */
.category-navbar {
    overflow: hidden !important;
}

.category-navbar .container {
    width: 100%;
    max-width: 100%;
    padding-inline: max(12px, calc((100% - 1320px) / 2 + 12px));
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.category-menu {
    width: max-content;
    min-width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    overflow: visible !important;
}

/* Dropdowns are fixed when opened so the scrolling rail never clips them. */
.category-navbar .subcategory-menu {
    position: fixed;
    top: var(--category-submenu-top, 0px);
    left: var(--category-submenu-left, 1rem);
    right: auto;
    width: max-content;
    min-width: min(12rem, calc(100vw - 2rem));
    max-width: min(20rem, calc(100vw - 2rem));
    max-height: min(22.5rem, calc(100dvh - var(--category-submenu-top, 0px) - 1rem));
    overflow-y: auto;
    white-space: normal;
}

.hero-banner,
.hero-banner img,
.banner,
.banner img,
.banner-img {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .header-wrapper {
        flex-wrap: wrap;
    }

    .delivery-location {
        display: none;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 12px 0;
    }

    .offer-wrapper {
        justify-content: center;
        min-width: 0;
    }

    .offer-left {
        min-width: 0;
        max-width: 100%;
    }

    .offer-left span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search-box button {
        flex-basis: 55px;
    }

    .category-navbar .container {
        padding-inline: 8px;
    }

    .category-navbar .subcategory-menu {
        left: 1rem;
        width: auto;
        min-width: 11rem;
        max-width: calc(100vw - 2rem);
    }
}

/*=========================================================
SECTION 07 : FLASH SALE
=========================================================*/

.flash-sale-section {

    padding: 30px 0;

    background: #fff7f2;

}

.flash-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 45px;

}

.flash-header h2 {

    font-size: 42px;

    font-weight: 700;

    margin: 10px 0;

    color: #222;

}

.flash-header p {

    color: #777;

    margin: 0;

}

.flash-timer {

    display: flex;

    gap: 12px;

}

.timer-box {

    width: 80px;

    height: 80px;

    background: #fff;

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    border: 2px solid #ffe4d1;

}

.timer-box span {

    font-size: 28px;

    font-weight: 700;

    color: #ff7a00;

    line-height: 1;

}

.timer-box small {

    font-size: 12px;

    color: #777;

    margin-top: 6px;

}

/*=========================================================
PRODUCT CARD
=========================================================*/

.flash-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    position: relative;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);

    height: 100%;

    border: 1px solid #f2f2f2;

}

.flash-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

    border-color: #ff7a00;

}

.flash-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: #ff3b30;

    color: #fff;

    padding: 7px 14px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    z-index: 2;

}

.wishlist-btn {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 42px;

    height: 42px;

    background: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);

    cursor: pointer;

    transition: .3s;

    z-index: 2;

}

.wishlist-btn:hover {

    background: #ff7a00;

    color: #fff;

}

.flash-image {

    height: 260px;

    overflow: hidden;

    background: #fafafa;

}

.flash-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.flash-card:hover .flash-image img {

    transform: scale(1.08);

}

.flash-content {

    padding: 22px;

}

.flash-category {

    color: #ff7a00;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 10px;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.flash-content h4 {

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;

    margin-bottom: 15px;

    min-height: 25px;

    color: #222;

}

.flash-rating {

    display: flex;

    align-items: center;

    gap: 3px;

    color: #ffc107;

    margin-bottom: 15px;

}

.flash-rating span {

    color: #666;

    font-size: 13px;

    margin-left: 8px;

}

.flash-price {

    font-size: 28px;

    font-weight: 700;

    color: #111;

    margin-bottom: 18px;

}

.flash-price del {

    color: #999;

    font-size: 16px;

    margin-left: 10px;

}

/*=========================================================
SECTION 07 : FLASH SALE
PREMIUM DESIGN + RESPONSIVE
=========================================================*/


.flash-sale-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(16, 89, 179, .06),
            rgba(0, 130, 243, .05),
            rgba(3, 138, 30, .06));

}


/* =========================================================
   FINAL OVERFLOW OVERRIDES
   Kept at EOF so legacy page-specific rules cannot re-expand the header.
   ========================================================= */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.mymarket-fixed-header, .top-offer-bar, .main-header, .category-navbar,
.hero-banner, .discount-banners {
    width: 100%;
    max-width: 100%;
}

.mymarket-fixed-header .container, .discount-banners .container {
    width: 100%;
    max-width: 100%;
}

.offer-wrapper, .header-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.header-wrapper {
    justify-content: flex-start;
    gap: clamp(10px, 1.5vw, 24px);
}

.logo, .delivery-location, .header-icons {
    flex: 0 0 auto;
    min-width: 0;
}

.delivery-location {
    max-width: min(12rem, 20vw);
}

.delivery-location>div, .delivery-location strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-box {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.search-box form, .search-box input {
    min-width: 0;
    max-width: 100%;
}

.search-box input {
    width: 100%;
}

.search-box button {
    flex: 0 0 75px;
}

.category-navbar {
    overflow: hidden !important;
}

.category-navbar .container {
    width: 100%;
    max-width: 100%;
    padding-inline: max(12px, calc((100% - 1320px) / 2 + 12px));
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.category-menu {
    width: max-content;
    min-width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    overflow: visible !important;
}

.category-navbar .subcategory-menu {
    position: fixed;
    top: var(--category-submenu-top, 0px);
    left: var(--category-submenu-left, 1rem);
    right: auto;
    width: max-content;
    min-width: min(12rem, calc(100vw - 2rem));
    max-width: min(20rem, calc(100vw - 2rem));
    max-height: min(22.5rem, calc(100dvh - var(--category-submenu-top, 0px) - 1rem));
    overflow-y: auto;
    white-space: normal;
}

.hero-banner, .hero-banner img, .banner, .banner img, .banner-img {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .header-wrapper {
        flex-wrap: wrap;
    }

    .delivery-location {
        display: none;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 12px 0;
    }

    .offer-wrapper {
        justify-content: center;
        min-width: 0;
    }

    .offer-left {
        min-width: 0;
        max-width: 100%;
    }

    .offer-left span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search-box button {
        flex-basis: 55px;
    }

    .category-navbar .container {
        padding-inline: 8px;
    }

    .category-navbar .subcategory-menu {
        left: 1rem;
        width: auto;
        min-width: 11rem;
        max-width: calc(100vw - 2rem);
    }
}

/* Keep scrolling available while avoiding persistent scrollbar tracks. */
html,
body,
.category-navbar .container,
.banner-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.category-navbar .container::-webkit-scrollbar,
.banner-scroll::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Background decoration */

.flash-sale-section::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    top: -140px;

    right: -120px;

    background: rgba(0, 130, 243, .12);

    border-radius: 50%;

}


.flash-sale-section::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    bottom: -120px;

    left: -100px;

    background: rgba(3, 138, 30, .10);

    border-radius: 50%;

}



/*=========================================================
SALE PROGRESS
=========================================================*/


.sale-progress {

    margin-bottom: 18px;

}


.sale-bar {

    width: 100%;

    height: 9px;

    background: #e7edf7;

    border-radius: 30px;

    overflow: hidden;

    margin-bottom: 8px;

}



.sale-fill {

    width: 72%;

    height: 100%;

    background:

        linear-gradient(90deg,
            rgb(16 89 179),
            rgb(0 130 243),
            rgb(3 138 30));

    border-radius: 30px;

}



.sale-progress small {

    color: #65758b;

    font-size: 13px;

}



/*=========================================================
STOCK
=========================================================*/


.stock {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgb(3 138 30);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}


.stock i {

    color: rgb(3 138 30);

}



/*=========================================================
FLASH BUTTONS
=========================================================*/


.flash-buttons {

    display: flex;

    gap: 10px;

}



/* ADD CART BUTTON */


.cart-btn {

    flex: 1;

    height: 46px;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    background: rgba(16, 89, 179, .08);

    color: rgb(16 89 179);

    font-weight: 700;

    transition: .35s;

    text-decoration: none;

    border: 1px solid rgba(16, 89, 179, .25);

}



.cart-btn:hover {

    background:

        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    box-shadow:

        0 12px 25px rgba(16, 89, 179, .25);

}



/* BUY BUTTON */


.buy-btn {

    flex: 1;

    height: 46px;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    font-weight: 700;

    transition: .35s;

    text-decoration: none;

}



.buy-btn:hover {

    transform: translateY(-3px);

    color: #fff;

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));


    box-shadow:

        0 12px 30px rgba(3, 138, 30, .35);

}



/*=========================================================
TIMER DESIGN
=========================================================*/


.flash-timer {

    display: flex;

    gap: 14px;

    align-items: center;

}



.timer-box {

    width: 78px;

    height: 78px;

    border-radius: 18px;

    background: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(16, 89, 179, .15);

    box-shadow:

        0 10px 25px rgba(16, 89, 179, .12);

    transition: .35s ease;

}



.timer-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background:

        linear-gradient(90deg,
            rgb(16 89 179),
            rgb(3 138 30));

}



.timer-box span {

    font-size: 30px;

    font-weight: 800;

    color: rgb(0 60 147);

    line-height: 1;

}



.timer-box small {

    margin-top: 7px;

    font-size: 11px;

    color: #718096;

    font-weight: 700;

    text-transform: uppercase;

}



.timer-box:hover {

    transform: translateY(-6px);

    box-shadow:

        0 18px 35px rgba(16, 89, 179, .25);

}



.timer-box:hover span {

    color: rgb(3 138 30);

}



/*=========================================================
CARD HOVER EFFECTS
=========================================================*/


.flash-card:hover .flash-badge {

    animation: pulseBadge .8s infinite;

}



@keyframes pulseBadge {

    0% {

        transform: scale(1);

    }


    50% {

        transform: scale(1.08);

    }


    100% {

        transform: scale(1);

    }

}



.flash-card:hover h4 {

    color: rgb(16 89 179);

}



/*=========================================================
RESPONSIVE
=========================================================*/


@media(max-width:1200px) {

    .flash-image {

        height: 230px;

    }

}



@media(max-width:992px) {

    .flash-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

    }


    .flash-timer {

        flex-wrap: wrap;

    }


    .flash-header h2 {

        font-size: 34px;

    }


    .flash-image {

        height: 240px;

    }

}



@media(max-width:768px) {

    .flash-sale-section {

        padding: 60px 0;

    }


    .flash-header {

        margin-bottom: 30px;

    }


    .timer-box {

        width: 65px;

        height: 65px;

    }


    .timer-box span {

        font-size: 22px;

    }


    .timer-box small {

        font-size: 9px;

    }


    .flash-content {

        padding: 18px;

    }


    .flash-content h4 {

        font-size: 18px;

        min-height: auto;

    }


    .flash-price {

        font-size: 24px;

    }


    .flash-buttons {

        flex-direction: column;

    }


    .cart-btn,

    .buy-btn {

        width: 100%;

    }

}



@media(max-width:576px) {

    .flash-image {

        height: 200px;

    }


    .flash-header h2 {

        font-size: 28px;

    }


    .flash-timer {

        justify-content: center;

        width: 100%;

        gap: 10px;

    }


    .timer-box {

        width: 60px;

        height: 60px;

    }


    .timer-box span {

        font-size: 20px;

    }

}

/*=========================================================
SECTION 08 : TODAY'S BEST DEALS
PREMIUM BRAND DESIGN
=========================================================*/


.today-deals-section {

    padding: 90px 0;

    background:
        linear-gradient(180deg,
            #ffffff,
            rgba(16, 89, 179, .04));

}


/*=========================================================
SECTION HEADING
=========================================================*/


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 45px;

}


.section-heading h2 {

    font-size: 40px;

    font-weight: 800;

    color: rgb(0 60 147);

    margin-top: 8px;

}


.section-heading p {

    color: #66788a;

    margin: 0;

}



/* VIEW BUTTON */

.view-all-btn {

    padding: 12px 30px;

    background:

        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    box-shadow:

        0 8px 22px rgba(16, 89, 179, .25);

    transition: .35s;

}


.view-all-btn:hover {

    color: #fff;

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    transform: translateY(-4px);

}



/*=========================================================
DEAL BANNER
=========================================================*/


.deal-banner {

    position: relative;

    border-radius: 25px;

    overflow: hidden;

    height: 100%;

    min-height: 720px;

    box-shadow:

        0 18px 45px rgba(16, 89, 179, .15);

}



.deal-banner img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.banner-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(180deg,
            rgba(0, 60, 147, .15),
            rgba(0, 0, 0, .75));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px;

    color: #fff;

}



.banner-overlay span {

    display: inline-block;

    width: max-content;

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

}



.banner-overlay h3 {

    font-size: 38px;

    font-weight: 800;

}



.banner-overlay p {

    font-size: 20px;

    margin-bottom: 25px;

}



/* BANNER BUTTON */

.banner-btn {

    display: inline-block;

    width: max-content;

    background: #fff;

    color: rgb(16 89 179);

    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}



.banner-btn:hover {

    background:

        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

}



/*=========================================================
DEAL CARD
=========================================================*/


.deal-card {

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    position: relative;

    box-shadow:

        0 10px 30px rgba(16, 89, 179, .08);

    transition: .35s;

    border:

        1px solid rgba(16, 89, 179, .10);

    height: 100%;

}



.deal-card:hover {

    transform: translateY(-10px);

    border-color: rgb(16 89 179);

    box-shadow:

        0 20px 45px rgba(16, 89, 179, .18);

}



/* BADGE */

.deal-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    color: #fff;

    padding: 7px 14px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 700;

    z-index: 2;

}



/* WISHLIST */

.deal-wishlist {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 42px;

    height: 42px;

    background: #fff;

    color: rgb(0 60 147);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:

        0 5px 20px rgba(0, 0, 0, .12);

    transition: .3s;

}



.deal-wishlist:hover {

    background:

        rgb(16 89 179);

    color: #fff;

}



/* IMAGE */

.deal-image {

    height: 220px;

    overflow: hidden;

    background: #f5f8ff;

}



.deal-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}


.deal-card:hover .deal-image img {

    transform: scale(1.08);

}



/* CONTENT */

.deal-content {

    padding: 22px;

}


.deal-category {

    color: rgb(16 89 179);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

}



.deal-content h4 {

    font-size: 20px;

    font-weight: 700;

    color: rgb(0 60 147);

}



.deal-rating {

    color: #ffc107;

}



.deal-price {

    font-size: 28px;

    font-weight: 800;

    color: rgb(0 60 147);

}



.deal-price del {

    color: #999;

    font-size: 16px;

}



/*=========================================================
DEAL BUTTONS
=========================================================*/


.deal-buttons {

    display: flex;

    gap: 10px;

}



.deal-cart-btn {

    flex: 1;

    height: 46px;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(16, 89, 179, .08);

    color: rgb(16 89 179);

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}



.deal-cart-btn:hover {

    background: rgb(16 89 179);

    color: #fff;

}



.deal-buy-btn {

    flex: 1;

    height: 46px;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}



.deal-buy-btn:hover {

    color: #fff;

    transform: translateY(-3px);

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

}

/*=========================================================
SECTION 09 : SHOP BY TOP BRANDS
PREMIUM BRAND DESIGN
=========================================================*/

/*=========================================================
SHOP BY VENDORS
=========================================================*/

.vendors-section {
    padding: 30px 0;
    background: #f8fbff;
}

/* Horizontal Scroll */

.vendor-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 5px 20px;
    scroll-behavior: smooth;
}

.vendor-slider::-webkit-scrollbar {
    height: 8px;
}

.vendor-slider::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 10px;
}

.vendor-slider::-webkit-scrollbar-track {
    background: #e5e5e5;
}


/* Vendor Card */

.vendor-card {
    min-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    flex-shrink: 0;
    border: 1px solid #edf2ff;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13, 71, 161, .18);
}


/* Logo */

.vendor-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f7ff;
    flex-shrink: 0;
    border: 3px solid #eef3ff;
}

.vendor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Info */

.vendor-info {
    flex: 1;
}

.vendor-info h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0d47a1;
}

.vendor-info p {
    margin: 8px 0 15px;
    color: #666;
    font-size: 15px;
}


/* Rating & Products */

.vendor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}

.vendor-meta span:first-child {
    color: #f5a623;
    font-weight: 600;
}

.vendor-meta span:last-child {
    color: #666;
}


/* Button */

.visit-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.visit-store:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 71, 161, .25);
}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .vendor-card {
        min-width: 280px;
        padding: 20px;
    }

    .vendor-logo {
        width: 75px;
        height: 75px;
    }

    .vendor-info h4 {
        font-size: 20px;
    }

}

@media(max-width:768px) {

    .vendor-slider {
        gap: 18px;
    }

    .vendor-card {
        min-width: 260px;
    }

    .vendor-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .visit-store {
        width: 100%;
    }

}

@media(max-width:576px) {

    .vendor-card {
        min-width: 240px;
        padding: 18px;
    }

    .vendor-logo {
        width: 65px;
        height: 65px;
    }

    .vendor-info h4 {
        font-size: 18px;
    }

    .vendor-info p {
        font-size: 14px;
    }

    .vendor-meta {
        font-size: 13px;
    }

    .visit-store {
        padding: 10px 20px;
        font-size: 14px;
    }

}


/*=========================================================
SECTION 10 : TRENDING PRODUCTS
PREMIUM BLUE GREEN DESIGN
=========================================================*/


.trending-section {

    padding: 90px 0;

    background:
        linear-gradient(180deg,
            #ffffff,
            rgba(16, 89, 179, .05));

}


/*=========================================================
CARD DESIGN
=========================================================*/


.trend-card {

    position: relative;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(16, 89, 179, .12);

    box-shadow:
        0 10px 30px rgba(16, 89, 179, .08);

    transition: .35s ease;

    height: 100%;

}


.trend-card:hover {

    transform: translateY(-10px);

    border-color: rgb(16 89 179);

    box-shadow:
        0 20px 45px rgba(16, 89, 179, .18);

}


/* TOP LINE EFFECT */


.trend-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            rgb(16 89 179),
            rgb(0 130 243),
            rgb(3 138 30));

    transform: scaleX(0);

    transition: .4s;

    z-index: 3;

}


.trend-card:hover::before {

    transform: scaleX(1);

}


/*=========================================================
BADGE
=========================================================*/


.trend-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background:
        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    color: #fff;

    padding: 7px 16px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    z-index: 2;

    box-shadow:
        0 8px 20px rgba(3, 138, 30, .25);

}



.trend-card:hover .trend-badge {

    animation: trendPulse .8s infinite;

}



@keyframes trendPulse {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}



/*=========================================================
WISHLIST ICONS
=========================================================*/


.trend-icons {

    position: absolute;

    top: 15px;

    right: 15px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 2;

    opacity: 0;

    transform: translateX(20px);

    transition: .35s;

}


.trend-card:hover .trend-icons {

    opacity: 1;

    transform: translateX(0);

}



.trend-icons a {

    width: 42px;

    height: 42px;

    background: #fff;

    color: rgb(0 60 147);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .12);

    transition: .3s;

}



.trend-icons a:hover {

    background:
        rgb(16 89 179);

    color: #fff;

    transform: scale(1.08);

}



/*=========================================================
IMAGE
=========================================================*/


.trend-image {

    height: 250px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #f3f8ff,
            #ffffff);

    position: relative;

}


.trend-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}



.trend-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(16, 89, 179, .05),
            rgba(3, 138, 30, .10));

    opacity: 0;

    transition: .35s;

}



.trend-card:hover .trend-image::after {

    opacity: 1;

}



.trend-card:hover .trend-image img {

    transform: scale(1.10);

}



/*=========================================================
CONTENT
=========================================================*/


.trend-content {

    padding: 24px;

}



.trend-category {

    color:
        rgb(16 89 179);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 8px;

}



.trend-content h4 {

    font-size: 20px;

    font-weight: 700;

    color:
        rgb(0 60 147);

    min-height: 55px;

    margin-bottom: 15px;

}



.trend-card:hover .trend-content h4 {

    color:
        rgb(16 89 179);

}



.trend-rating {

    color: #ffc107;

    margin-bottom: 15px;

    font-size: 15px;

}



.trend-rating span {

    color: #667;

    margin-left: 8px;

}



.trend-price {

    font-size: 28px;

    font-weight: 800;

    color:
        rgb(0 60 147);

    margin-bottom: 20px;

}



.trend-price del {

    font-size: 16px;

    color: #999;

    margin-left: 10px;

}



/*=========================================================
BUTTONS
=========================================================*/


.trend-buttons {

    display: flex;

    gap: 10px;

}



.trend-buttons .cart-btn {

    flex: 1;

    height: 46px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    background:
        rgba(16, 89, 179, .08);

    color:
        rgb(16 89 179);

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}



.trend-buttons .cart-btn:hover {

    background:
        rgb(16 89 179);

    color: #fff;

}



.trend-buttons .buy-btn {

    flex: 1;

    height: 46px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

}



.trend-buttons .buy-btn:hover {

    color: #fff;

    transform: translateY(-3px);

    background:
        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(16 89 179));

    box-shadow:
        0 12px 30px rgba(3, 138, 30, .35);

}


/*=========================================================
RESPONSIVE
=========================================================*/


@media(max-width:1200px) {

    .trend-image {

        height: 220px;

    }

}



@media(max-width:992px) {

    .trending-section {

        padding: 70px 0;

    }


    .trend-image {

        height: 230px;

    }

}



@media(max-width:768px) {

    .trend-content {

        padding: 18px;

    }


    .trend-content h4 {

        font-size: 18px;

        min-height: auto;

    }


    .trend-price {

        font-size: 24px;

    }


    .trend-buttons {

        flex-direction: column;

    }


    .trend-buttons .cart-btn,

    .trend-buttons .buy-btn {

        width: 100%;

    }

}



@media(max-width:576px) {

    .trend-image {

        height: 190px;

    }


    .trend-content {

        padding: 16px;

    }


    .trend-category {

        font-size: 12px;

    }


    .trend-content h4 {

        font-size: 17px;

    }


    .trend-price {

        font-size: 22px;

    }


    .trend-icons {

        opacity: 1;

        transform: none;

    }


    .trend-icons a {

        width: 36px;

        height: 36px;

    }

}

/*=========================================================
SECTION 11 : CUSTOMER TESTIMONIALS
PREMIUM BLUE GREEN DESIGN
=========================================================*/


.testimonial-section {

    padding: 30px 0;

    background:
        linear-gradient(180deg,
            #ffffff,
            rgba(16, 89, 179, .05));

}



/*=========================================================
TESTIMONIAL CARD
=========================================================*/


.testimonial-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid rgba(16, 89, 179, .12);

    box-shadow:
        0 12px 35px rgba(16, 89, 179, .08);

    transition: .35s ease;

    position: relative;

    overflow: hidden;

    height: 100%;

}



.testimonial-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;


    background:

        linear-gradient(90deg,
            rgb(16 89 179),
            rgb(0 130 243),
            rgb(3 138 30));


    transform: scaleX(0);

    transition: .35s;

}



.testimonial-card:hover::before {

    transform: scaleX(1);

}



.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 25px 50px rgba(16, 89, 179, .18);

    border-color:

        rgb(16 89 179);

}



/*=========================================================
USER INFO
=========================================================*/


.testimonial-top {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 20px;

}



.testimonial-top img {

    width: 75px;

    height: 75px;

    border-radius: 50%;

    object-fit: cover;

    border:

        4px solid rgba(16, 89, 179, .15);

    transition: .4s;

}



.testimonial-card:hover img {

    transform: scale(1.08);

    border-color:

        rgb(16 89 179);

}



.testimonial-top h5 {

    margin: 0;

    font-size: 21px;

    font-weight: 700;

    color:

        rgb(0 60 147);

}



/*=========================================================
VERIFIED
=========================================================*/


.verified {

    display: inline-block;

    margin-top: 6px;

    color:

        rgb(3 138 30);

    font-size: 14px;

    font-weight: 600;

}



.verified i {

    margin-right: 5px;

}



/*=========================================================
RATING
=========================================================*/


.testimonial-stars {

    color: #ffc107;

    margin-bottom: 18px;

    font-size: 18px;

}



/*=========================================================
MESSAGE
=========================================================*/


.testimonial-card p {

    color: #66788a;

    line-height: 1.9;

    margin: 0;

    font-size: 15px;

}



/*=========================================================
DECORATIVE QUOTE
=========================================================*/


.testimonial-card::after {

    content: "\f10d";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    right: 25px;

    bottom: 20px;

    font-size: 55px;

    color:

        rgba(16, 89, 179, .08);

}



/*=========================================================
RESPONSIVE
=========================================================*/


@media(max-width:992px) {

    .testimonial-section {

        padding: 70px 0;

    }

}



@media(max-width:768px) {


    .testimonial-card {

        padding: 28px;

    }



    .testimonial-top {

        flex-direction: column;

        text-align: center;

    }



    .testimonial-top img {

        margin-bottom: 10px;

    }



    .testimonial-top h5 {

        font-size: 19px;

    }



    .testimonial-stars {

        text-align: center;

    }



    .testimonial-card p {

        text-align: center;

    }


}



@media(max-width:576px) {


    .testimonial-card {

        padding: 22px;

    }



    .testimonial-top img {

        width: 65px;

        height: 65px;

    }



    .testimonial-top h5 {

        font-size: 18px;

    }



    .testimonial-card p {

        font-size: 14px;

    }


}

/*=========================================================
SECTION 12 : DOWNLOAD APP
PREMIUM BLUE GREEN DESIGN
=========================================================*/


.app-section {

    padding: 30px 0;

    background:

        linear-gradient(135deg,
            rgb(0 60 147),
            rgb(16 89 179),
            rgb(0 130 243));

    color: #fff;

    overflow: hidden;

    position: relative;

}



/* Background Glow */


.app-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background:

        rgba(3, 138, 30, .25);

    border-radius: 50%;

    top: -150px;

    right: -120px;

}



.app-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background:

        rgba(255, 255, 255, .08);

    border-radius: 50%;

    bottom: -150px;

    left: -120px;

}



/*=========================================================
TEXT
=========================================================*/


.app-title {

    font-size: 52px;

    font-weight: 800;

    margin: 20px 0;

    line-height: 1.2;

    position: relative;

    z-index: 2;

}



.app-title span {

    color:

        #b8ffca;

}



.app-text {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 25px;

    max-width: 550px;

    color:

        rgba(255, 255, 255, .9);

    position: relative;

    z-index: 2;

}



/*=========================================================
OFFER BADGE
=========================================================*/


.app-offer {

    display: inline-block;

    background:

        rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 30px;

    border:

        1px solid rgba(255, 255, 255, .25);

    position: relative;

    z-index: 2;

}



/*=========================================================
STORE BUTTONS
=========================================================*/


.store-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    position: relative;

    z-index: 2;

}



.store-btn {

    display: flex;

    align-items: center;

    gap: 15px;

    background: #fff;

    color:

        rgb(0 60 147);

    padding: 15px 25px;

    border-radius: 14px;

    text-decoration: none;

    transition: .35s;

    box-shadow:

        0 12px 30px rgba(0, 0, 0, .20);

}



.store-btn:hover {

    transform: translateY(-6px);

    color:

        rgb(3 138 30);

}



.store-btn i {

    font-size: 34px;

}



.store-btn small {

    display: block;

    color: #777;

    font-size: 12px;

}



.store-btn strong {

    display: block;

    font-size: 18px;

}



/*=========================================================
PHONE IMAGE
=========================================================*/


.phone-wrapper {

    text-align: center;

    position: relative;

    z-index: 2;

}



.phone-image {

    max-width: 320px;

    width: 100%;

    border-radius: 35px;

    box-shadow:

        0 35px 60px rgba(0, 0, 0, .35);

    animation: phoneFloat 4s ease-in-out infinite;

    border:

        8px solid rgba(255, 255, 255, .12);

}



@keyframes phoneFloat {


    0% {

        transform: translateY(0);

    }


    50% {

        transform: translateY(-15px);

    }


    100% {

        transform: translateY(0);

    }

}



/*=========================================================
RESPONSIVE
=========================================================*/


@media(max-width:992px) {


    .app-section {

        text-align: center;

    }



    .app-title {

        font-size: 42px;

    }



    .app-text {

        margin-left: auto;

        margin-right: auto;

    }



    .store-buttons {

        justify-content: center;

        margin-bottom: 40px;

    }


}



@media(max-width:576px) {


    .app-title {

        font-size: 32px;

    }



    .app-text {

        font-size: 15px;

    }



    .store-btn {

        width: 100%;

        justify-content: center;

    }



    .phone-image {

        max-width: 240px;

    }


}


/*=========================================================
SECTION 14 : PREMIUM FOOTER
BLUE GREEN MARKETPLACE DESIGN
=========================================================*/


.footer-section {

    background:

        linear-gradient(135deg,
            rgb(0 60 147),
            rgb(16 89 179));

    color: #ddd;

    padding: 80px 0 30px;

    position: relative;

    overflow: hidden;

}


/* Background Glow */


.footer-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background:

        rgba(3, 138, 30, .25);

    border-radius: 50%;

    right: -120px;

    top: -120px;

}



.footer-section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    background:

        rgba(255, 255, 255, .08);

    border-radius: 50%;

    left: -100px;

    bottom: -100px;

}



/*=========================================================
LOGO
=========================================================*/


.footer-logo {

    color: #fff;

    font-size: 32px;

    font-weight: 800;

    margin-bottom: 20px;

    position: relative;

    z-index: 2;

}



.footer-logo i {

    color:

        #b8ffca;

    margin-right: 8px;

}



/*=========================================================
ABOUT
=========================================================*/


.footer-about {

    color:

        rgba(255, 255, 255, .75);

    line-height: 1.9;

    margin-bottom: 25px;

    position: relative;

    z-index: 2;

}



/*=========================================================
HEADINGS
=========================================================*/


.footer-section h4 {

    color: #fff;

    margin-bottom: 22px;

    font-size: 20px;

    font-weight: 700;

    position: relative;

}



.footer-section h4::after {

    content: "";

    display: block;

    width: 45px;

    height: 3px;

    margin-top: 8px;

    background:

        linear-gradient(90deg,
            rgb(3 138 30),
            rgb(0 130 243));

    border-radius: 10px;

}



/*=========================================================
LINKS
=========================================================*/


.footer-section ul {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-section ul li {

    margin-bottom: 12px;

}



.footer-section ul li a {

    color:

        rgba(255, 255, 255, .75);

    text-decoration: none;

    transition: .3s;

}



.footer-section ul li a:hover {

    color:

        #fff;

    padding-left: 8px;

}



/*=========================================================
SOCIAL ICONS
=========================================================*/


.footer-social {

    display: flex;

    gap: 12px;

}



.footer-social a {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background:

        rgba(255, 255, 255, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    text-decoration: none;

    transition: .35s;

    backdrop-filter: blur(8px);

}



.footer-social a:hover {

    background:

        rgb(3 138 30);

    transform: translateY(-6px);

}



/*=========================================================
CONTACT
=========================================================*/


.footer-section p {

    color:

        rgba(255, 255, 255, .8);

    margin-bottom: 15px;

}



.footer-section p i {

    color:

        #b8ffca;

    width: 22px;

}



/*=========================================================
PAYMENT ICONS
=========================================================*/


.payment-icons {

    display: flex;

    gap: 15px;

    font-size: 34px;

    margin-top: 20px;

    color: #fff;

}



.payment-icons i {

    transition: .3s;

}



.payment-icons i:hover {

    color:

        #b8ffca;

    transform: translateY(-5px);

}



/*=========================================================
BOTTOM FOOTER
=========================================================*/


.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 30px;

}



.footer-bottom p {

    margin: 0;

}



/* BACK TO TOP */


.back-top {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background:

        linear-gradient(135deg,
            rgb(3 138 30),
            rgb(0 130 243));

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    transition: .35s;

    box-shadow:

        0 10px 25px rgba(0, 0, 0, .25);

}



.back-top:hover {

    color: #fff;

    transform:

        translateY(-6px);

    box-shadow:

        0 15px 35px rgba(3, 138, 30, .35);

}



/* DIVIDER */


.footer-section hr {

    border-color:

        rgba(255, 255, 255, .15);

    margin-top: 40px;

}



/*=========================================================
RESPONSIVE
=========================================================*/


@media(max-width:768px) {


    .footer-bottom {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }



    .payment-icons {

        justify-content: center;

    }



    .footer-logo {

        font-size: 28px;

    }

}

/*==========================================
        PRODUCTS PAGE - MY MARKET
==========================================*/

:root {
    --primary: #0d6efd;
    --secondary: #16a34a;
    --dark: #1f2937;
    --light: #f8fafc;
    --border: #e5e7eb;

    --gradient: linear-gradient(135deg, #0d6efd, #16a34a);

    --shadow: 0 12px 30px rgba(0, 0, 0, .08);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, .15);
}

body {
    background: #f6f8fc;
    font-family: 'Poppins', sans-serif;
    color: #333;
}


/*==========================================
Hero Section
==========================================*/

.products-hero {

    background: linear-gradient(135deg, #0d6efd, #16a34a);

    color: #fff;

    padding: 80px 0;

    overflow: hidden;

}

.products-hero .row {

    min-height: 420px;

}

.hero-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .18);

    padding: 10px 22px;

    border-radius: 40px;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 25px;

}

.products-hero h1 {

    font-size: 60px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;

}

.products-hero p {

    font-size: 20px;

    color: #eef3ff;

    max-width: 520px;

    margin-bottom: 35px;

}

.hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    color: #0d6efd;

    text-decoration: none;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 700;

    transition: .35s;

}

.hero-btn:hover {

    transform: translateY(-4px);

    background: #111;

    color: #fff;

}



/*==========================================
Products Heading
==========================================*/

.products-section {

    padding: 70px 0;

}

.products-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 45px;

    border-bottom: 1px solid #eee;

    padding-bottom: 20px;

}

.sub-title {

    color: #16a34a;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 14px;

}

.products-header h2 {

    font-size: 42px;

    font-weight: 800;

    margin: 10px 0;

    color: #111;

}

.products-header p {

    color: #666;

    max-width: 520px;

}

.view-all-btn {

    text-decoration: none;

    background: var(--gradient);

    color: #fff;

    padding: 14px 30px;

    border-radius: 40px;

    font-weight: 600;

    transition: .35s;

}

.view-all-btn:hover {

    color: #fff;

    transform: translateY(-3px);

}


/*==========================================
Product Card
==========================================*/

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .35s;

    height: 100%;

    position: relative;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);

}



/*==========================================
Badge
==========================================*/

.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: #ff3d3d;

    color: #fff;

    padding: 7px 15px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

}


/*==========================================
Wishlist
==========================================*/

.wishlist-btn {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #777;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);

    transition: .3s;

}

.wishlist-btn:hover {

    background: #ff3d3d;

    color: #fff;

}


/*==========================================
Content
==========================================*/

.product-content {

    padding: 22px;

}

.product-vendor {

    color: #16a34a;

    font-size: 14px;

    margin-bottom: 8px;

    font-weight: 600;

}

.product-name {

    font-size: 15px;

    font-weight: 700;

    color: #222;

    margin-bottom: 10px;

    min-height: 55px;

}

.rating {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

}

.stars {

    color: #ffc107;

}

.review-count {

    color: #888;

    font-size: 14px;

}


/*==========================================
Price
==========================================*/

.price-row {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

}

.price {

    color: #0d6efd;

    font-size: 28px;

    font-weight: 800;

}

.old-price {

    text-decoration: line-through;

    color: #999;

}

.discount {

    background: #dcfce7;

    color: #16a34a;

    font-size: 12px;

    font-weight: 700;

    padding: 5px 12px;

    border-radius: 20px;

}


/*==========================================
Button
==========================================*/

.btn-add-cart {

    width: 100%;

    border: none;

    background: var(--gradient);

    color: #fff;

    padding: 14px;

    border-radius: 12px;

    font-weight: 700;

    transition: .35s;

}

.btn-add-cart:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(13, 110, 253, .25);

}


/*==========================================
Responsive
==========================================*/

@media(max-width:992px) {

    .products-hero {

        text-align: center;

        padding: 60px 0;

    }

    .products-hero h1 {

        font-size: 42px;

    }

    .products-hero p {

        margin: auto auto 30px;

    }

    .products-header {

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }

}

@media(max-width:768px) {

    .products-hero h1 {

        font-size: 34px;

    }

    .products-header h2 {

        font-size: 30px;

    }



    .product-name {

        font-size: 17px;

    }

    .price {

        font-size: 24px;

    }

}

@media(max-width:576px) {

    .products-hero {

        padding: 45px 0;

    }

    .hero-tag {

        font-size: 13px;

    }

    .products-hero h1 {

        font-size: 28px;

    }

    .products-hero p {

        font-size: 16px;

    }

    .hero-btn {

        padding: 14px 28px;

    }



}

.pd-section {
    padding: 70px 0;
    background: #f5f7fb;
}

.pd-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}



.pd-image {
    width: 100%;
    display: block;
}

/* Main Image Box */



.pd-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 10px;
}

/*=================================================
PRODUCT IMAGE
=================================================*/

.pd-image-box {
    width: 100%;
}

.pd-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.pd-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/*==============================
ARROWS
==============================*/

.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: .3s;
    z-index: 100;
}

.img-nav:hover {
    background: #0d6efd;
    color: #fff;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/*==============================
TABLET
==============================*/

@media (max-width:992px) {

    .pd-image-wrapper {
        max-width: 420px;
    }

    .img-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px) {

    .pd-image-wrapper {
        max-width: 320px;
    }

    .pd-image {
        width: 100%;
    }

    .img-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width:480px) {

    .pd-image-wrapper {
        max-width: 280px;
    }

    .img-nav {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .prev {
        left: 2px;
    }

    .next {
        right: 2px;
    }

}

/* Thumbnail Gallery */

.pd-thumbnail-gallery {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
    background: #fff;
}

.pd-thumb:hover {
    border-color: #ff9900;
    transform: translateY(-3px);
}

.pd-thumb.active {
    border-color: #ff9900;
}

.pd-content {
    padding-left: 30px;
}

.pd-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pd-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.pd-vendor {
    color: #666;
    font-size: 17px;
    margin-bottom: 20px;
}

.pd-rating {
    margin-bottom: 20px;
}

.pd-rating i {
    color: #ffc107;
    margin-right: 3px;
}

.pd-rating span {
    color: #666;
    margin-left: 10px;
}

.pd-price-box {
    margin-bottom: 25px;
}

.pd-price {
    color: #ff6b00;
    font-size: 36px;
    font-weight: 700;
}

.pd-old-price {
    color: #999;
    font-size: 22px;
    margin-left: 15px;
    text-decoration: line-through;
}

.pd-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.pd-quantity {
    margin-bottom: 25px;
}

.pd-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.pd-quantity input {
    width: 90px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.pd-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.pd-cart-btn {
    background: #ff6b00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.pd-cart-btn:hover {
    color: #fff;
    background: #e55b00;
}

.pd-buy-btn {
    background: #198754;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.pd-buy-btn:hover {
    color: #fff;
    background: #157347;
}

.pd-info {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.pd-info h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.pd-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-info li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.pd-info strong {
    width: 140px;
    display: inline-block;
}

@media(max-width:991px) {

    .pd-content {
        padding-left: 0;
        margin-top: 30px;
    }

}

@media(max-width:768px) {

    .pd-card {
        padding: 20px;
    }

    .pd-title {
        font-size: 28px;
    }

    .pd-price {
        font-size: 28px;
    }

    .pd-old-price {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .pd-buttons {
        flex-direction: column;
    }

    .pd-cart-btn,
    .pd-buy-btn {
        text-align: center;
    }

}

/*=========================================
DESCRIPTION & REVIEW
=========================================*/

.product-tabs-section {
    padding: 70px 0;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    background: #eef4ff;
    color: #0d47a1;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0d47a1;
    color: #fff;
}

.tab-content {
    display: none;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #0d47a1;
    margin-bottom: 20px;
}

.tab-content p {
    color: #666;
    line-height: 1.8;
}

.review-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 20px;
}

.review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-top h5 {
    margin: 0;
    color: #0d47a1;
}

.review-top span {
    color: #f5a623;
}

@media(max-width:768px) {

    .product-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .tab-content {
        padding: 20px;
    }

    .review-top {
        flex-direction: column;
        gap: 5px;
    }

}

/*=========================================================
SHOPPING CART PAGE
=========================================================*/

.cart-section {
    padding: 80px 0;
    background: #f5f8fc;
}

/*=========================================================
CART BOX
=========================================================*/

.cart-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.cart-heading {
    font-size: 30px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 30px;
}

.cart-heading i {
    color: #0d6efd;
    margin-right: 10px;
}

/*=========================================================
CART ITEM
=========================================================*/

.cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #ececec;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    background: #f5f5f5;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 22px;
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-details p {
    color: #777;
    margin-bottom: 8px;
}

.item-details h5 {
    color: #16a34a;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/*=========================================================
QUANTITY
=========================================================*/

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.quantity button {
    width: 42px;
    height: 42px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.quantity button:hover {
    background: #0b5ed7;
}

.quantity input {
    width: 55px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

/*=========================================================
TOTAL
=========================================================*/

.item-total {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
    min-width: 130px;
    text-align: right;
}

/*=========================================================
REMOVE BUTTON
=========================================================*/

.remove-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #ffe5e5;
    color: #dc3545;
    cursor: pointer;
    transition: .3s;
}

.remove-btn:hover {
    background: #dc3545;
    color: #fff;
}

/*=========================================================
ORDER SUMMARY
=========================================================*/

.summary-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px;
}

.summary-box h3 {
    font-size: 28px;
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
    font-size: 17px;
    color: #555;
}

.summary-row.total {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

/*=========================================================
CHECKOUT BUTTON
=========================================================*/

.checkout-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 50px;
    margin-top: 25px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    transition: .35s;
}

.checkout-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, .25);
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .summary-box {
        margin-top: 30px;
        position: static;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .item-total {
        text-align: left;
        margin-top: 15px;
    }

}

@media(max-width:768px) {

    .cart-box {
        padding: 20px;
    }

    .cart-heading {
        font-size: 26px;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .cart-item img {
        width: 160px;
        height: 160px;
    }

    .quantity {
        margin: auto;
    }

    .item-total {
        text-align: center;
    }

    .remove-btn {
        margin-top: 10px;
    }

}

@media(max-width:576px) {

    .cart-section {
        padding: 60px 0;
    }

    .cart-heading {
        font-size: 24px;
    }

    .item-details h4 {
        font-size: 18px;
    }

    .item-details h5 {
        font-size: 20px;
    }

    .summary-box {
        padding: 20px;
    }

    .summary-box h3 {
        font-size: 22px;
    }

    .summary-row {
        font-size: 15px;
    }

    .summary-row.total {
        font-size: 20px;
    }

    .checkout-btn {
        padding: 14px;
        font-size: 16px;
    }

    .quantity button {
        width: 38px;
        height: 38px;
    }

    .quantity input {
        width: 45px;
    }

}


/*=========================================================
CONTACT PAGE
=========================================================*/

/* HERO */

.contact-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f4f9ff, #e7f1ff);
}

.contact-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 20px;
}

.contact-hero p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    transition: .35s;
    font-weight: 600;
}

.contact-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, .25);
}

.contact-hero-img {
    max-width: 100%;
}


/*=========================================================
CONTACT INFO
=========================================================*/

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(13, 71, 161, .18);
}

.contact-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    font-size: 28px;
}

.contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 15px;
}

.contact-card p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}


/*=========================================================
CONTACT FORM
=========================================================*/

.contact-form-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.contact-form-section h2 {
    font-size: 40px;
    color: #0d47a1;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-form-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 18px;
    font-size: 17px;
    color: #555;
}

.contact-list i {
    color: #16a34a;
    margin-right: 10px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-form .form-control {
    border-radius: 12px;
    height: 55px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.contact-form textarea {
    min-height: 160px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, .15);
}

.contact-submit {
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    transition: .35s;
}

.contact-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, .25);
}


/*=========================================================
GOOGLE MAP
=========================================================*/

.contact-map-section {
    padding: 90px 0;
    background: #fff;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0d47a1;
}

.section-title p {
    color: #666;
    font-size: 17px;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0d47a1;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.map-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.map-box iframe {
    display: block;
    width: 100%;
}


/*=========================================================
ANIMATION
=========================================================*/

.contact-card,
.contact-form,
.map-box {
    opacity: 0;
    transform: translateY(40px);
    transition: .7s;
}

.contact-card.show,
.contact-form.show,
.map-box.show {
    opacity: 1;
    transform: translateY(0);
}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .contact-hero {
        text-align: center;
    }

    .contact-hero-img {
        margin-top: 40px;
    }

    .contact-form {
        margin-top: 40px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

}

@media(max-width:768px) {

    .contact-hero {
        padding: 70px 0;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-map-section {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-form-section h2 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

}

/*=========================================
CONTACT CARDS - 2 PER ROW ON MOBILE
=========================================*/

@media (max-width: 576px) {

    .contact-info-section .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .contact-info-section .col-lg-3,
    .contact-info-section .col-md-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .contact-card {
        padding: 18px 12px;
        border-radius: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-word;
    }

}

/*=========================================================
ABOUT PAGE
=========================================================*/

/*==============================
ABOUT HERO
==============================*/

.about-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f4f9ff, #e9f3ff);
}

.about-tag {
    display: inline-block;
    padding: 10px 24px;
    background: #0d6efd;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 71, 161, .25);
}

.about-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border: 2px solid #0d47a1;
    border-radius: 50px;
    text-decoration: none;
    color: #0d47a1;
    font-weight: 600;
    transition: .35s;
}

.about-btn-outline:hover {
    background: #0d47a1;
    color: #fff;
}

.about-hero-img {
    max-width: 100%;
}


/*==============================
ABOUT COMPANY
==============================*/

.about-company {
    padding: 100px 0;
    background: #fff;
}

.about-image {
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.section-heading span {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 25px;
}

.about-company p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.about-features i {
    color: #16a34a;
    font-size: 20px;
}


/*==============================
MISSION SECTION
==============================*/

.mission-section {
    padding: 90px 0;
    background: #f8fbff;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, .15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    font-size: 32px;
}

.mission-card h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/*=========================================================
WHY CHOOSE US
=========================================================*/

.why-about {
    padding: 100px 0;
    background: #ffffff;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, .18);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    font-size: 30px;
}

.why-card h4 {
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}


/*=========================================================
COUNTER
=========================================================*/

.about-counter {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.counter-box {
    color: #fff;
    padding: 20px;
}

.counter-box h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;
    margin: 0;
}


/*=========================================================
PREMIUM TIMELINE
=========================================================*/

/* .timeline-section{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fbff,#ffffff);
} */

/* .timeline{ 
    position:relative;
    max-width:850px;
    margin:60px auto 0;
    padding-left:60px;
} */

/* .timeline::before{ 
    content:"";
    position:absolute;
    left:25px;
    top:0;
    bottom:0;
    width:4px;
    border-radius:20px;
    background:linear-gradient(to bottom,#0d47a1,#2196f3);
/* } */

/* .timeline-item{ 
    position:relative;
    margin-bottom:35px;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(13,71,161,.10);
    border-left:5px solid #0d6efd;
    transition:.35s;
/* } */

/* .timeline-item:last-child{ 
    margin-bottom:0;
/* } */

/* .timeline-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,71,161,.18);
/* } */

/* .timeline-item::before{  
    content:"";
    position:absolute;
    left:-47px;
    top:35px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    border:5px solid #0d6efd;
    box-shadow:0 0 0 8px rgba(13,110,253,.12);
/* } */

/* .timeline-item h3{ 
    display:inline-block;
    padding:8px 20px;
    background:linear-gradient(135deg,#0d47a1,#2196f3);
    color:#fff;
    border-radius:30px;
    font-size:18px;
    margin-bottom:18px;
    font-weight:700;
/* } */

/* .timeline-item p{ 
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:16px;
/* } */


/*=========================================================
CALL TO ACTION
=========================================================*/

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    color: #eef4ff;
    font-size: 18px;
    margin-bottom: 35px;
}


/*=========================================================
ANIMATION
=========================================================*/

.why-card,
.team-card,
.mission-card,
.about-image {
    transition: .4s;
}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .about-hero {
        text-align: center;
    }

    .about-hero-img {
        margin-top: 40px;
    }

    .about-company {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 55px;
        width: calc(100% - 70px);
    }

    .timeline-item::before {
        left: -40px !important;
    }

}

@media(max-width:768px) {

    .about-hero h1 {
        font-size: 38px;
    }

    .section-title,
    .section-heading h2 {
        font-size: 32px;
    }

    .counter-box h2 {
        font-size: 40px;
    }

    .about-cta h2 {
        font-size: 34px;
    }

    .team-card img {
        height: 250px;
    }

}

@media(max-width:576px) {

    .about-hero {
        padding: 70px 0;
    }

    .about-company,
    .mission-section,
    .why-about,
    .team-section,
    .timeline-section,
    .about-counter,
    .about-cta {
        padding: 70px 0;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-btn,
    .about-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .counter-box h2 {
        font-size: 34px;
    }

    .timeline-item {
        left: 40px !important;
        width: calc(100% - 50px);
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item::before {
        left: -32px !important;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 16px;
    }

}

/*=========================================================
VENDOR REGISTER
=========================================================*/

.cart-section {
    padding: 80px 0;
    background: #f4f8ff;
}

.register-wrapper {
    max-width: 1100px;
    margin: auto;
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 40px;
    background: #eaf3ff;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 15px;
}

.register-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 10px;
}

.register-header p {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.register-card {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.register-card label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0d47a1;
}

.register-card .form-control,
.register-card .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #d8e3f5;
    box-shadow: none;
}

.register-card textarea.form-control {
    height: auto;
    resize: none;
}

.register-card .form-control:focus,
.register-card .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .12);
}

.form-check {
    padding-left: 28px;
}

.form-check-input {
    width: 20px;
    height: 20px;
}

.form-check-label {
    color: #555;
}

.btn-register {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    transition: .3s;
}

.btn-register:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, .25);
}

.btn-register i {
    margin-right: 8px;
}

/*==============================
Responsive
==============================*/

@media(max-width:992px) {

    .register-card {
        padding: 35px;
    }

    .register-header h2 {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .cart-section {
        padding: 60px 0;
    }

    .register-card {
        padding: 25px;
    }

    .register-header h2 {
        font-size: 28px;
    }

    .register-card .form-control,
    .register-card .form-select {
        height: 50px;
    }

    .btn-register {
        padding: 15px;
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .register-header h2 {
        font-size: 24px;
    }

    .register-header p {
        font-size: 15px;
    }

    .register-card {
        padding: 20px;
    }

}

/*=========================================================
VENDOR GUIDE SECTION
=========================================================*/

.vendor-guide-section {
    padding: 25px 0;
    background: #f8fbff;
}

.guide-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d47a1;
    margin: 15px 0;
}

.guide-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================================
VIDEO
=========================================================*/

.video-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.video-box iframe {
    width: 100%;
    height: 430px;
    border: none;
    border-radius: 15px;
}

/*=========================================================
GUIDE CARD
=========================================================*/

.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
    height: 100%;
}

.guide-card h3 {
    color: #0d47a1;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

/*=========================================================
GUIDE STEP
=========================================================*/

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e9ecef;
}

.guide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.guide-step h5 {
    margin-bottom: 8px;
    color: #0d47a1;
    font-size: 20px;
    font-weight: 600;
}

.guide-step p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/*=========================================================
HOVER EFFECTS
=========================================================*/

.video-box,
.guide-card {
    transition: .35s ease;
}

.video-box:hover,
.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, .15);
}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px) {

    .vendor-guide-section {
        padding: 70px 0;
    }

    .guide-title {
        font-size: 34px;
    }

    .video-box {
        margin-bottom: 30px;
    }

    .video-box iframe {
        height: 350px;
    }

    .guide-card {
        padding: 30px;
    }

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px) {

    .vendor-guide-section {
        padding: 60px 0;
    }

    .guide-title {
        font-size: 28px;
    }

    .guide-subtitle {
        font-size: 15px;
    }

    .video-box {
        padding: 10px;
    }

    .video-box iframe {
        height: 240px;
    }

    .guide-card {
        padding: 25px;
    }

    .guide-card h3 {
        text-align: center;
        font-size: 24px;
    }

    .guide-step {
        gap: 15px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .guide-step h5 {
        font-size: 18px;
    }

    .guide-step p {
        font-size: 14px;
    }

}

/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:576px) {

    .guide-title {
        font-size: 24px;
    }

    .video-box iframe {
        height: 200px;
    }

    .guide-card {
        padding: 20px;
    }

    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .step-number {
        margin-bottom: 5px;
    }

    .guide-step h5 {
        font-size: 17px;
    }

    .guide-step p {
        font-size: 14px;
    }

}

.category-navbar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 999;
    overflow: visible;
}

.category-navbar .container {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
}

.category-navbar .container::-webkit-scrollbar {
    display: none;
}

.category-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: max-content;
}

.category-item {
    position: relative;
    flex: 0 0 auto;
}

.category-item>a {
    display: block;
    padding: 18px 22px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.category-item>a:hover {
    color: #0d6efd;
}

/* Dropdown */

.subcategory-menu {

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 260px;

    background: #fff;

    list-style: none;
    padding: 10px 0;
    margin: 0;

    border-radius: 10px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .25s;

    z-index: 99999;

}

.category-item:hover>.subcategory-menu {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.subcategory-menu li {
    width: 100%;
}

.subcategory-menu a {

    display: block;
    padding: 12px 18px;

    color: #444;
    text-decoration: none;

}

.subcategory-menu a:hover {

    background: #f5f5f5;
    color: #0d6efd;

}

@media(max-width:991px) {

    .category-item>a {

        padding: 14px 18px;
        font-size: 14px;

    }

}


.category-menu {
    display: flex;
    justify-content: flex-start;
}

.subcategory-menu {

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 250px;

    background: #fff;

    list-style: none;

    padding: 10px 0;
    margin: 0;

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

    display: none;

    z-index: 99999;

}

.category-item:hover>.subcategory-menu {

    display: block;

}

/* Final category menu overrides (kept last to supersede legacy menu styles). */
.category-navbar {
    isolation: isolate;
}

.category-navbar .container {
    overflow: visible !important;
}

.category-menu {
    gap: 0;
    overflow: visible !important;
}

.category-item {
    position: relative;
}

.category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 52px;
    padding: 14px 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #003c93;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.category-trigger i {
    font-size: 11px;
    transition: transform .2s ease;
}

.category-trigger:hover, .category-trigger:focus-visible,
.category-item:hover>.category-trigger, .category-item:focus-within>.category-trigger,
.category-item.is-open>.category-trigger {
    color: #0d6efd;
    background: #f3f7ff;
    border-bottom-color: #0d6efd;
    outline: none;
}

.category-trigger:disabled {
    cursor: default;
}

.category-item:hover>.category-trigger i, .category-item:focus-within>.category-trigger i,
.category-item.is-open>.category-trigger i {
    transform: rotate(180deg);
}

.category-navbar .subcategory-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.category-item:hover>.subcategory-menu, .category-item:focus-within>.subcategory-menu,
.category-item.is-open>.subcategory-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.category-navbar .subcategory-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    line-height: 1.4;
}

.category-navbar .subcategory-menu a::after {
    display: none;
}

@media (max-width: 991px) {
    .category-navbar {
        overflow: visible !important;
    }

    .category-navbar .container {
        max-width: none;
        padding: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .category-navbar .container::-webkit-scrollbar {
        display: none;
    }

    .category-menu {
        width: max-content;
        min-width: 100%;
        padding: 0 8px;
        overflow: visible !important;
    }

    .category-trigger {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .category-navbar .subcategory-menu {
        position: fixed;
        top: var(--category-submenu-top, 0px);
        right: 12px;
        left: 12px;
        min-width: 0;
        max-height: min(360px, calc(100dvh - var(--category-submenu-top, 0px) - 16px));
        overflow-y: auto;
        border: 1px solid rgba(13, 110, 253, .12);
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(20, 44, 91, .2);
    }

    .category-navbar .subcategory-menu a {
        padding: 13px 16px;
    }
}

/* Mobile submenu: always use the available viewport width, never content width. */
@media (max-width: 991px) {
    .category-navbar .subcategory-menu {
        left: 1rem;
        right: auto;
        width: fit-content !important;
        min-width: 11rem !important;
        max-width: calc(100vw - 2rem) !important;
        box-sizing: border-box;
    }
}

/* =========================================================
   CATEGORY NAVIGATION - authoritative final rules
   ========================================================= */
.category-navbar {
    isolation: isolate;
}

.category-navbar .container {
    overflow: visible !important;
}

.category-menu {
    gap: 0;
    overflow: visible !important;
}

.category-item {
    position: relative;
}

.category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 52px;
    padding: 14px 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #003c93;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.category-trigger i {
    font-size: 11px;
    transition: transform .2s ease;
}

.category-trigger:hover,
.category-trigger:focus-visible,
.category-item:hover>.category-trigger,
.category-item:focus-within>.category-trigger,
.category-item.is-open>.category-trigger {
    color: #0d6efd;
    background: #f3f7ff;
    border-bottom-color: #0d6efd;
    outline: none;
}

.category-trigger:disabled {
    cursor: default;
}

.category-item:hover>.category-trigger i,
.category-item:focus-within>.category-trigger i,
.category-item.is-open>.category-trigger i {
    transform: rotate(180deg);
}

.category-navbar .subcategory-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.category-item:hover>.subcategory-menu,
.category-item:focus-within>.subcategory-menu,
.category-item.is-open>.subcategory-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.category-navbar .subcategory-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    line-height: 1.4;
}

.category-navbar .subcategory-menu a::after {
    display: none;
}

@media (max-width: 991px) {
    .category-navbar {
        overflow: visible !important;
    }

    .category-navbar .container {
        max-width: none;
        padding: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .category-navbar .container::-webkit-scrollbar {
        display: none;
    }

    .category-menu {
        width: max-content;
        min-width: 100%;
        padding: 0 8px;
        overflow: visible !important;
    }

    .category-trigger {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 13px;
    }

    /* Fixed positioning avoids clipping by the horizontal category rail. */
    .category-navbar .subcategory-menu {
        position: fixed;
        top: var(--category-submenu-top, 0px);
        right: 12px;
        left: 12px;
        min-width: 0;
        max-height: min(360px, calc(100dvh - var(--category-submenu-top, 0px) - 16px));
        overflow-y: auto;
        border: 1px solid rgba(13, 110, 253, .12);
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(20, 44, 91, .2);
    }

    .category-navbar .subcategory-menu a {
        padding: 13px 16px;
    }
}

/* Desktop dropdown: compact, content-aware, and independent of legacy 260px rules. */
@media (min-width: 992px) {
    .category-navbar .subcategory-menu {
        inline-size: fit-content;
        min-inline-size: 12rem;
        max-inline-size: min(20rem, calc(100vw - 2rem));
    }

    .category-navbar .subcategory-menu a {
        white-space: normal;
    }
}

/* =========================================================
   CATEGORY NAVIGATION - final responsive behaviour
   ========================================================= */
.category-navbar {
    isolation: isolate;
}

.category-navbar .container {
    overflow: visible !important;
}

.category-menu {
    gap: 0;
    overflow: visible !important;
}

.category-item {
    position: relative;
}

.category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 52px;
    padding: 14px 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #003c93;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.category-trigger i {
    font-size: 11px;
    transition: transform .2s ease;
}

.category-trigger:hover,
.category-trigger:focus-visible,
.category-item:hover>.category-trigger,
.category-item:focus-within>.category-trigger,
.category-item.is-open>.category-trigger {
    color: #0d6efd;
    background: #f3f7ff;
    border-bottom-color: #0d6efd;
    outline: none;
}

.category-trigger:disabled {
    cursor: default;
}

.category-item:hover>.category-trigger i,
.category-item:focus-within>.category-trigger i,
.category-item.is-open>.category-trigger i {
    transform: rotate(180deg);
}

.subcategory-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.category-item:hover>.subcategory-menu,
.category-item:focus-within>.subcategory-menu,
.category-item.is-open>.subcategory-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .category-navbar {
        overflow: visible !important;
    }

    .category-navbar .container {
        max-width: none;
        padding: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .category-navbar .container::-webkit-scrollbar {
        display: none;
    }

    .category-menu {
        width: max-content;
        min-width: 100%;
        padding: 0 8px;
        overflow: visible !important;
    }

    .category-trigger {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 13px;
    }

    /* Fixed positioning avoids clipping by the horizontally scrolling rail. */
    .subcategory-menu {
        position: fixed;
        top: var(--category-submenu-top, 0px);
        right: 12px;
        left: 12px;
        min-width: 0;
        max-height: min(360px, calc(100dvh - var(--category-submenu-top, 0px) - 16px));
        overflow-y: auto;
        border: 1px solid rgba(13, 110, 253, .12);
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(20, 44, 91, .2);
    }

    .subcategory-menu a {
        padding: 13px 16px;
    }
}

.subcategory-menu li {

    width: 100%;

}

.subcategory-menu li a {

    display: block;

    padding: 12px 18px;

    color: #333;

}

.subcategory-menu li a:hover {

    background: #f5f7fb;

    color: #0d6efd;

}

.category-item {

    position: relative;

    flex-shrink: 0;

}


.hero-slider {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    z-index: 1;
}

.main-header {
    z-index: 99999;
}

.category-item {
    position: relative;
}

.subcategory-menu {

    position: absolute;

    left: 0;
    top: 100%;

    display: none;

    z-index: 999999;

}

.category-item:hover>.subcategory-menu {

    display: block;

}

/* ================= FIX CATEGORY DROPDOWN ================= */

.main-header,
.category-navbar {
    position: relative;
    z-index: 99999 !important;
    overflow: visible !important;
}

.category-navbar .container {
    overflow: visible !important;
}

.category-menu {
    overflow: visible !important;
}

.category-item {
    position: relative;
}

.subcategory-menu {

    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 260px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

    padding: 10px 0;

    margin: 0;

    list-style: none;

    z-index: 9999999;
}

.category-item:hover>.subcategory-menu {

    display: block;

}

/* Last category-navigation override: this follows the legacy dropdown rules above. */
.category-navbar .subcategory-menu {
    display: block;
    inline-size: max-content;
    min-inline-size: 100%;
    max-inline-size: min(24rem, calc(100vw - 2rem));
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.category-item:hover>.subcategory-menu, .category-item:focus-within>.subcategory-menu, .category-item.is-open>.subcategory-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.category-navbar .subcategory-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    line-height: 1.4;
}

.category-navbar .subcategory-menu a::after {
    display: none;
}

@media (max-width: 991px) {
    .category-navbar .container {
        max-width: none;
        padding: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .category-navbar .container::-webkit-scrollbar {
        display: none;
    }

    .category-menu {
        width: max-content;
        min-width: 100%;
        padding: 0 8px;
    }

    .category-trigger {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .category-navbar .subcategory-menu {
        position: fixed;
        top: var(--category-submenu-top, 0px);
        inset-inline: 1rem;
        inline-size: auto;
        min-inline-size: auto;
        max-inline-size: none;
        max-height: min(22.5rem, calc(100dvh - var(--category-submenu-top, 0px) - 1rem));
        left: 1rem;
        right: auto;
        width: fit-content !important;
        min-width: 11rem !important;
        max-width: calc(100vw - 2rem) !important;
        box-sizing: border-box;
        overflow-y: auto;
        border: 1px solid rgba(13, 110, 253, .12);
        border-radius: 12px;
        box-shadow: 0 18px 36px rgba(20, 44, 91, .2);
    }

    .category-navbar .subcategory-menu a {
        padding: 13px 16px;
    }
}

/* Final desktop width: overrides the old fixed 260px submenu width. */
@media (min-width: 992px) {
    .category-navbar .subcategory-menu {
        inline-size: fit-content;
        min-inline-size: 12rem;
        max-inline-size: min(20rem, calc(100vw - 2rem));
    }

    .category-navbar .subcategory-menu a {
        white-space: normal;
    }
}



/* ===========================
   PROFESSIONAL HERO BANNER
=========================== */

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 0 0 30px 30px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

/* Desktop */
@media (min-width:1200px) {
    .hero-banner {
        height: 550px;
    }
}

/* Laptop */
@media (min-width:992px) and (max-width:1199px) {
    .hero-banner {
        height: 480px;
    }
}

/* Tablet */
@media (min-width:768px) and (max-width:991px) {
    .hero-banner {
        height: 380px;
        border-radius: 0 0 20px 20px;
    }
}

/* Mobile */
@media (max-width:767px) {
    .hero-banner {
        height: 220px;
        border-radius: 0 0 15px 15px;
    }

    .hero-banner img {
        object-position: center;
    }
}

/* Small Mobile */
@media (max-width:480px) {
    .hero-banner {
        height: 170px;
    }
}

/* Optional Hover Effect */
.hero-banner:hover img {
    transform: scale(1.03);
}

.vendor-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 5px solid #f39c12;
    border-radius: 10px;
    padding: 15px 18px;
}

.vendor-warning-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    font-size: 24px;
    flex-shrink: 0;
}

.vendor-warning-content h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #856404;
}

.vendor-warning-content p {
    margin: 5px 0 0;
    color: #6c5b00;
    font-size: 14px;
    line-height: 1.6;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.cart-product {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-price {
    width: 170px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
}

.cart-qty {
    width: 130px;
    text-align: center;
}

.cart-qty input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
}

.cart-total {
    width: 160px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    word-break: normal;
    white-space: nowrap;
}

.cart-action {
    width: 70px;
    text-align: center;
}

.cart-total {
    min-width: 160px;
}

#error {
    display: none;
    padding: 12px 16px;
    margin: 15px 0;
    border-left: 5px solid #f0ad4e;
    background-color: #fff8e5;
    color: #8a6d3b;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
    font-family: Arial, sans-serif;
    font-size: 14px;
}


/* ==========================
   Discount Banner Section
========================== */

.discount-banners {
    padding: 20px 0;
}

.banner-scroll {
    display: flex;
    gap: 20px;
}

.banner-item {
    flex: 1;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: .3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.banner-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

/* Mobile */

@media(max-width:768px) {

    .banner-scroll {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 5px;
    }

    .banner-scroll::-webkit-scrollbar {
        display: none;
    }

    .banner-item {
        flex: 0 0 280px;
    }

    .banner-img {
        width: 100%;
        height: auto;
    }

}


/* ================= FILTER SIDEBAR ================= */

.filter-sidebar {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(13, 110, 253, .08);
    box-shadow: 0 15px 40px rgba(13, 110, 253, .08), 0 5px 15px rgba(0, 0, 0, .04);
    position: sticky;
    top: 100px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.filter-sidebar:hover {
    box-shadow: 0 20px 50px rgba(13, 110, 253, .12), 0 5px 15px rgba(0, 0, 0, .04);
    transform: translateY(-2px);
}

.filter-sidebar h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -.5px;
    position: relative;
}

.filter-sidebar h4::before {
    content: "";
    width: 4px;
    height: 30px;
    border-radius: 20px;
    background: linear-gradient(180deg, #0d6efd, #6ea8fe);
    flex-shrink: 0;
}

.filter-sidebar h4::after {
    content: "⚙️";
    font-size: 22px;
    margin-left: auto;
    opacity: .5;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Sections */

.filter-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0, 0, 0, .04);
    position: relative;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 13px;
    color: #6c757d;
    letter-spacing: .5px;
}

.filter-group h6::before {
    content: "";
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
    border-radius: 2px;
}

/* Labels */

.filter-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    font-size: 14px;
    color: #4a4a6a;
    font-weight: 500;
    margin-bottom: 2px;
    position: relative;
    border: 1px solid transparent;
}

.filter-group label:hover {
    background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
    color: #0d6efd;
    transform: translateX(4px);
    border-color: rgba(13, 110, 253, .1);
    box-shadow: 0 4px 12px rgba(13, 110, 253, .06);
}

.filter-group label:active {
    transform: scale(.97);
}

/* Checkbox */

.filter-group input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #0d6efd;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 5px;
    transition: all .2s ease;
    border: 2px solid #d0d7e6;
}

.filter-group input[type=checkbox]:hover {
    transform: scale(1.08);
    border-color: #0d6efd;
}

.filter-group input[type=checkbox]:checked {
    border-color: #0d6efd;
    background-color: #0d6efd;
}

/* Price Slider */

.filter-group input[type=range] {
    width: 100%;
    margin: 18px 0 12px;
    height: 6px;
    border-radius: 10px;
    background: linear-gradient(to right, #0d6efd 0%, #0d6efd 50%, #e0e7f0 50%, #e0e7f0 100%);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    transition: all .3s ease;
}

.filter-group input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(13, 110, 253, .35);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.filter-group input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 18px rgba(13, 110, 253, .5);
}

.filter-group input[type=range]::-webkit-slider-thumb:active {
    transform: scale(.95);
}

.filter-group input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(13, 110, 253, .35);
}

.filter-group small {
    display: block;
    background: linear-gradient(135deg, #f8fbff, #f0f7ff);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: #0d6efd;
    font-size: 15px;
    border: 1px solid rgba(13, 110, 253, .08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.filter-group small::before {

    margin-right: 4px;
    opacity: .6;
}

.filter-group small:hover {
    background: linear-gradient(135deg, #e8f0fe, #dce8f8);
    border-color: rgba(13, 110, 253, .2);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(13, 110, 253, .08);
}

/* Filter Count */

.filter-count {
    float: right;
    background: linear-gradient(135deg, #edf4ff, #e0ebf9);
    color: #0d6efd;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 700;
    transition: all .3s ease;
    border: 1px solid rgba(13, 110, 253, .08);
    letter-spacing: .3px;
}

.filter-group label:hover .filter-count {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    transform: scale(1.08);
    border-color: #0d6efd;
}

/* Clear Button */

.clear-filter {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    margin-top: 22px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(13, 110, 253, .25);
}

.clear-filter::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transition: all .5s ease;
}

.clear-filter:hover::before {
    left: 100%;
}

.clear-filter:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, .35);
}

.clear-filter:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(13, 110, 253, .2);
}

.clear-filter::after {
    content: "✕";
    margin-left: 12px;
    font-size: 16px;
    opacity: .8;
    transition: all .3s ease;
}

.clear-filter:hover::after {
    transform: rotate(90deg);
    opacity: 1;
}

/* Responsive */

/* Mobile */
/* Mobile only */
/* Mobile Only */
/* Desktop */
.mobile-filter-bar {
    display: none;
}

/* Mobile */
@media (max-width:991px) {

    .mobile-filter-bar {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 10px 0;
        margin-bottom: 15px;
        scrollbar-width: none;
    }

    .mobile-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-chip {
        flex: 0 0 auto;
        padding: 10px 18px;
        border: 1px solid #0d6efd;
        border-radius: 30px;
        background: #fff;
        color: #0d6efd;
        font-weight: 600;
        cursor: pointer;
    }

    .filter-chip.active {
        background: #0d6efd;
        color: #fff;
    }

    .filter-sidebar {
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .mobile-filter-content {
        display: none;
    }

    .mobile-filter-content.active {
        display: block;
    }

    .filter-sidebar h4 {
        display: none !important;
    }
}

@media (max-width:576px) {

    .filter-sidebar {
        padding: 18px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(13, 110, 253, .06);

        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .filter-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .filter-sidebar::-webkit-scrollbar-thumb {
        background: #0d6efd;
        border-radius: 10px;
    }
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    /* Fixed image area */
    background: #fff;
    overflow: hidden;
    display: grid;
    place-items: center;

}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Shows complete image */
    transition: .3s ease;
}

.product-card:hover .image-wrapper img {
    transform: scale(1.05);
}


/*====================================================
        TERMS & POLICIES PAGE - PART 1
        Hero + Navigation + Base Styles
=====================================================*/

:root {

    --primary: #1059b3;
    --secondary: #038a1e;
    --orange: #ff7a00;
    --dark: #1d2939;
    --text: #475467;
    --border: #e4e7ec;
    --light: #f8f9fc;
    --white: #ffffff;

}

/*=================================
Background
=================================*/

body {

    background: var(--light);

}


/*=================================
Hero Section
=================================*/

.policy-hero {

    position: relative;

    overflow: hidden;

    padding: 90px 20px;

    text-align: center;

    background:
        linear-gradient(135deg, #1059b3 0%, #0d6efd 45%, #038a1e 100%);

}

.policy-hero::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -180px;

    left: -150px;

}

.policy-hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    right: -150px;

    bottom: -180px;

}

.policy-hero .container {

    position: relative;

    z-index: 2;

}

.policy-hero h1 {

    color: #fff;

    font-size: 52px;

    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: .5px;

}

.policy-hero p {

    color: #fff;

    max-width: 750px;

    margin: auto;

    line-height: 1.8;

    font-size: 18px;

    opacity: .95;

}


/*=================================
Navigation
=================================*/

.policy-nav-section {

    margin-top: -35px;

    position: relative;

    z-index: 20;

}

.policy-nav {

    background: #fff;

    border-radius: 60px;

    padding: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    box-shadow:

        0 15px 40px rgba(16, 89, 179, .12);

}

.policy-tab {

    border: none;

    outline: none;

    cursor: pointer;

    background: #f4f7fb;

    color: #555;

    font-weight: 600;

    padding: 14px 28px;

    border-radius: 40px;

    transition: .35s;

}

.policy-tab:hover {

    background: linear-gradient(90deg, var(--primary), var(--secondary));

    color: #fff;

    transform: translateY(-3px);

}

.policy-tab.active {

    color: #fff;

    background: linear-gradient(90deg, var(--primary), var(--secondary));

    box-shadow:

        0 10px 20px rgba(16, 89, 179, .25);

}


/*=================================
Main Section
=================================*/

.policy-section {

    padding: 70px 0;

}

.policy-content {

    display: none;

}

.policy-content.active {

    display: block;

    animation: fadeUp .5s ease;

}


/*=================================
Animation
=================================*/

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/*=================================
Responsive
=================================*/

@media(max-width:992px) {

    .policy-hero {

        padding: 70px 20px;

    }

    .policy-hero h1 {

        font-size: 42px;

    }

}


@media(max-width:768px) {

    .policy-hero {

        padding: 60px 15px;

    }

    .policy-hero h1 {

        font-size: 30px;

    }

    .policy-hero p {

        font-size: 15px;

    }

    .policy-nav {

        overflow-x: auto;

        justify-content: flex-start;

        flex-wrap: nowrap;

        scrollbar-width: none;

    }

    .policy-nav::-webkit-scrollbar {

        display: none;

    }

    .policy-tab {

        white-space: nowrap;

        flex: 0 0 auto;

        padding: 12px 22px;

    }

}

/*====================================================
        TERMS & POLICIES PAGE - PART 2
        Policy Cards
=====================================================*/

.policy-card {

    position: relative;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .4);

    border-radius: 20px;

    padding: 45px;

    margin-bottom: 35px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .08);

    transition: .35s;

}

.policy-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(16, 89, 179, .18);

}


/* Decorative Corner */

.policy-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background:
        linear-gradient(135deg,
            rgba(16, 89, 179, .08),
            rgba(3, 138, 30, .08));

    border-radius: 50%;

    top: -100px;

    right: -80px;

}

.policy-card {

    position: relative;

    z-index: 2;

}


/* Heading */

.policy-card h2 {

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--primary);

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 2px;

    padding-bottom: 18px;

    border-bottom: 2px solid #eef2f7;

}

.policy-card h2 i {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 26px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    box-shadow:
        0 10px 25px rgba(16, 89, 179, .25);

}


/* Sub Heading */

.policy-card h4 {

    position: relative;

    color: #222;

    font-size: 22px;

    font-weight: 700;

    margin-top: 35px;

    margin-bottom: 15px;

    padding-left: 20px;

}

.policy-card h4::before {

    content: "";

    position: absolute;

    left: 0;

    top: 4px;

    width: 6px;

    height: 24px;

    border-radius: 10px;

    background:
        linear-gradient(var(--primary), var(--secondary));

}


/* Paragraph */

.policy-card p {

    font-size: 16px;

    color: #666;

    line-height: 1.9;

    margin-bottom: 18px;

}


/* List */

.policy-card ul {

    list-style: none;

    padding-left: 0;

    margin-top: 20px;

}

.policy-card ul li {

    position: relative;

    background: #f8f9fc;

    margin-bottom: 15px;

    padding: 16px 18px 16px 55px;

    border-radius: 12px;

    transition: .3s;

    color: #444;

    font-weight: 500;

}

.policy-card ul li:hover {

    background: #edf5ff;

    transform: translateX(8px);

}

.policy-card ul li::before {

    content: "✓";

    position: absolute;

    left: 18px;

    top: 50%;

    transform: translateY(-50%);

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 13px;

    font-weight: bold;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

}


/* Highlight Box */

.policy-card .highlight {

    margin-top: 30px;

    background: #fff8e6;

    border-left: 5px solid var(--orange);

    padding: 18px 20px;

    border-radius: 10px;

    color: #555;

}


/* Responsive */

@media(max-width:992px) {

    .policy-card {

        padding: 35px;

    }

    .policy-card h2 {

        font-size: 30px;

    }

}

@media(max-width:768px) {

    .policy-card {

        padding: 25px;

        border-radius: 16px;

    }

    .policy-card h2 {

        font-size: 24px;

        gap: 12px;

    }

    .policy-card h2 i {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

    .policy-card h4 {

        font-size: 18px;

    }

    .policy-card p {

        font-size: 15px;

    }

    .policy-card ul li {

        padding: 14px 15px 14px 50px;

    }

}

/*====================================================
        TERMS & POLICIES PAGE - PART 3
        FAQ + Contact + Buttons + Effects
=====================================================*/

/*=================================
FAQ Accordion
=================================*/

.accordion {

    border-radius: 18px;

    overflow: hidden;

}

.accordion-item {

    border: none;

    margin-bottom: 18px;

    border-radius: 16px !important;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

    transition: .35s;

}

.accordion-item:hover {

    transform: translateY(-3px);

}

.accordion-button {

    background: #fff;

    color: #222;

    font-size: 17px;

    font-weight: 600;

    padding: 22px;

    box-shadow: none;

}

.accordion-button:focus {

    box-shadow: none;

}

.accordion-button:not(.collapsed) {

    color: #fff;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

}

.accordion-button::after {

    filter: brightness(0) invert(1);

}

.accordion-button.collapsed::after {

    filter: none;

}

.accordion-body {

    background: #fff;

    padding: 22px;

    color: #666;

    line-height: 1.9;

}


/*=================================
Need Help Card
=================================*/

.policy-card.text-center {

    background:
        linear-gradient(135deg,
            #1059b3,
            #038a1e);

    color: #fff;

    text-align: center;

    overflow: hidden;

}

.policy-card.text-center::before {

    display: none;

}

.policy-card.text-center h2 {

    color: #fff;

    justify-content: center;

    border: none;

}

.policy-card.text-center h2 i {

    background: #fff;

    color: var(--primary);

}

.policy-card.text-center p {

    color: rgba(255, 255, 255, .9);

    font-size: 17px;

}


/*=================================
Contact Boxes
=================================*/

.policy-contact {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    margin: 35px 0;

}

.policy-contact div {

    min-width: 260px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .2);

    padding: 18px 22px;

    border-radius: 16px;

    font-size: 17px;

    font-weight: 600;

    transition: .35s;

}

.policy-contact div:hover {

    transform: translateY(-6px);

    background: rgba(255, 255, 255, .22);

}

.policy-contact i {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    display: inline-flex;

    justify-content: center;

    align-items: center;

    margin-right: 12px;

}


/*=================================
Button
=================================*/

.policy-btn {

    display: inline-block;

    margin-top: 15px;

    padding: 15px 40px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    color: #fff;

    background: linear-gradient(90deg, #ff7a00, #ff9800);

    transition: .35s;

    box-shadow:
        0 12px 30px rgba(255, 122, 0, .35);

}

.policy-btn:hover {

    color: #fff;

    transform: translateY(-5px);

    box-shadow:
        0 20px 35px rgba(255, 122, 0, .45);

}


/*=================================
Custom Scrollbar
=================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(var(--primary),
            var(--secondary));

    border-radius: 30px;

}

::-webkit-scrollbar-track {

    background: #edf2f7;

}


/*=================================
Selection
=================================*/

::selection {

    background: var(--primary);

    color: #fff;

}


/*=================================
Floating Animation
=================================*/

@keyframes floating {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}

.policy-card:hover h2 i {

    animation: floating 1s ease infinite;

}


/*=================================
Responsive
=================================*/

@media(max-width:768px) {

    .policy-contact {

        flex-direction: column;

        gap: 18px;

    }

    .policy-contact div {

        width: 100%;

        min-width: 100%;

        font-size: 15px;

    }

    .policy-btn {

        width: 100%;

        text-align: center;

    }

    .accordion-button {

        padding: 18px;

        font-size: 15px;

    }

}


/* =========================================================
   FINAL HEADER AND NAVIGATION WIDTH RULES
   ========================================================= */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.mymarket-fixed-header, .top-offer-bar, .main-header, .category-navbar,
.hero-banner, .discount-banners {
    width: 100%;
    max-width: 100%;
}

.mymarket-fixed-header .container, .discount-banners .container {
    width: 100%;
    max-width: 100%;
}

.offer-wrapper, .header-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.header-wrapper {
    justify-content: flex-start;
    gap: clamp(10px, 1.5vw, 24px);
}

.logo, .delivery-location, .header-icons {
    flex: 0 0 auto;
    min-width: 0;
}

.delivery-location {
    max-width: min(12rem, 20vw);
}

.delivery-location>div, .delivery-location strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-box {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.search-box form, .search-box input {
    min-width: 0;
    max-width: 100%;
}

.search-box input {
    width: 100%;
}

.search-box button {
    flex: 0 0 75px;
}

.category-navbar {
    overflow: hidden !important;
}

.category-navbar .container {
    width: 100%;
    max-width: 100%;
    padding-inline: max(12px, calc((100% - 1320px) / 2 + 12px));
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.category-menu {
    width: max-content;
    min-width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    overflow: visible !important;
}

.category-navbar .subcategory-menu {
    position: fixed;
    top: var(--category-submenu-top, 0px);
    left: var(--category-submenu-left, 1rem);
    right: auto;
    width: max-content;
    min-width: min(12rem, calc(100vw - 2rem));
    max-width: min(20rem, calc(100vw - 2rem));
    max-height: min(22.5rem, calc(100dvh - var(--category-submenu-top, 0px) - 1rem));
    overflow-y: auto;
    white-space: normal;
}

.hero-banner, .hero-banner img, .banner, .banner img, .banner-img {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .header-wrapper {
        flex-wrap: wrap;
    }

    .delivery-location {
        display: none;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 12px 0;
    }

    .offer-wrapper {
        justify-content: center;
        min-width: 0;
    }

    .offer-left {
        min-width: 0;
        max-width: 100%;
    }

    .offer-left span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search-box button {
        flex-basis: 55px;
    }

    .category-navbar .container {
        padding-inline: 8px;
    }

    .category-navbar .subcategory-menu {
        left: 1rem;
        width: auto;
        min-width: 11rem;
        max-width: calc(100vw - 2rem);
    }
}