@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root {
    --primary-color: #0F5D71;
    --primary-color-rgb: 15, 93, 113;
    --primary-dark: #0a4255;
    --primary-light: #1a7a93;
    --secondary-color: #ff9200;
    --secondary-color-rgb: 255, 146, 0;
    --secondary-color-dark: #e07e00;
    --card-bg: #E7F4F7;
    --card-bg-hover: #d8eef4;
    --card-radius: 14px;
    --card-shadow: 0 4px 20px rgba(15, 93, 113, 0.09);
    --card-shadow-hover: 0 12px 36px rgba(15, 93, 113, 0.17);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --text-primary: #0d1b2a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #d8eef4;
    --surface-white: #ffffff;
    --surface-light: #f4f9fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--surface-light);
    overflow-x: hidden;
    font-family: "Inter", "Open Sans", sans-serif;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1290px;
    padding: 0px 15px;
    margin: 0 auto;
}

.section-padding {
    padding: 20px;
    margin-top: 25px;
}

/* ================= TOP HEADER ================= */
.top-section {
    background: #f5f7fa;
    border-bottom: 1px solid #e5e5e5;
}

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

.top-left i {
    font-size: 14px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 15px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.currency-dropdown,
.language-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #111;
}

.dropdown-btn i {
    font-size: 10px;
    color: #000;
    margin-top: 5px;
}

.dropdown-btn img {
    width: 25px;
    border: 1px solid #ddd;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: 130px;
    background: #f3f3f3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
    border: 0px !important;
}

.dropdown-menu.show {
    display: block;
    animation: fade .3s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.dropdown-menu div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 18px;
    font-size: 16px;
    transition: .3s;
}

.dropdown-menu div:hover {
    background: #fff;
    color: var(--primary-color);
}

.dropdown-menu img {
    width: 25px;
    border: 1px solid #ddd;
}

/* ================= MAIN HEADER ================= */
.main-header-section {
    background: #fff;
}

.main-header {
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo a img {
    max-width: 140px;
}

.search-box {
    flex: 1;
    display: flex;
    max-width: 750px;
}

.search-box input {
    width: 100%;
    padding: 8px;
    text-indent: 10px;
    border: 1px solid #ddd;
    border-right: none;
    outline: none;
    font-size: 16px;
    border-radius: 5px 0px 0px 5px;
}

.search-box button {
    width: 70px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    transition: .3s;
    border-radius: 0px 5px 5px 0px;
}

.search-box button:hover {
    background: var(--secondary-color);
    background: var(--primary-color);
}

.search-box i {
    font-size: 20px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.icon-box:hover {
    background: #e3e8ef;
}

.icon-box i {
    font-size: 17px;
    color: #000000;
}

.badge {
    position: absolute;
    top: -5px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.header-icons {
    display: flex;
    align-items: center;
}

.cart-price p {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0px !important;
}

.cart-price p span {
    display: block;
    font-weight: 600 !important;
}

.cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cart-price p {
    font-size: 13px;
    font-weight: 400;
    color: #4b566b !important;
    text-transform: capitalize;
}

.cart-price span {
    font-size: 14px;
    font-weight: 700;
    color: #4b566b !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-price span i {
    font-size: 10px;
    color: #4b566b !important;
}

.cart-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 999;
}

.cart-wrapper:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-info {
    flex: 1;
}

.cart-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #222;
}

.cart-info p {
    color: #666;
    font-size: 14px;
}

.remove {
    color: #999;
    cursor: pointer;
    transition: .3s;
}

.remove:hover {
    color: rgb(246, 6, 6);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.cart-total h3 {
    font-size: 18px;
    color: #222;
}

.cart-total span {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: bold;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

.cart-btn,
.checkout-btn {
    flex: 1;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    transition: .3s;
}

.cart-btn {
    background: #edf2f7;
    color: #222;
}

.cart-btn:hover {
    background: #dbe4ee;
}

/* ================= CHECKOUT BUTTON ================= */
.checkout-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 93, 113, 0.3);
}

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 16px rgba(15, 93, 113, 0.3);
}

.nav-container {
    width: 100%;
}

.nav-container .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= CATEGORY BUTTON ================= */
.category-btn {
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
}

.category-btn:hover {
    background: var(--card-bg);
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(15,93,113,0.25);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.menu-item > a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    display: inline-block;
    letter-spacing: 0.2px;
}

.menu-item > a:hover {
    color: #fff;
}

.menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.menu-item > a:hover::after {
    width: 100%;
}


@keyframes drop {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    transition: .3s;
}

.dropdown a:hover {
    background: #f8f9ff;
    color: var(--secondary-color);
    padding-left: 28px;
}

.menu-item:hover .dropdown {
    display: block;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle i::before {
    font-size: 10px;
}


.menu-item {
    position: relative;

}

.dropdown {
    position: absolute;
    top: calc(100% + 24px);
    left: 0;
    width: 245px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 999;
    border-radius: 4px;
}

/* HOVER GAP FIX */

.menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
}

/* SHOW */

.menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* -------------- banner -------------- */
.main-slider {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Outgoing slide exits to the left */
.slide.leaving {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide-content h1 {
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1.1;
}

.slide-content p {
    margin: 25px 0;
    font-size: 22px;
    color: #666;
}

.slide-content button {
    padding: 15px 35px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.slide img {
    width: 350px;
}

/* BUTTON */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* ================= RIGHT ================= */

.right-banner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-banner {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
    cursor: pointer;
}

.small-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.small-banner img {
    width: 80px;
}

.small-banner h4 {
    margin-bottom: 8px;
}


/* ================= CATEGORY SIDEBAR ================= */

/* .category-sidebar{
    width:320px;
    background:#fff;
    border-radius:6px;
    position:relative;
    overflow:visible;
}

.category-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid #eee;
    cursor:pointer;
    transition:.3s;
}
.category-item:hover{
    background:#f8f9ff;
    color:var(--primary-color);
}
.category-left{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
}
.mega-dropdown{
    position:absolute;
    left:100%;
    top:0;
    width:1250px;
    min-height:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}
.category-item:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
}
.mega-column{
    border-right:1px solid #eee;
    padding-right:20px;
}

.mega-column h3{
    margin-bottom:18px;
    color:#111;
    font-size:18px;
}

.mega-column a{
    display:block;
    text-decoration:none;
    color:#333;
    margin-bottom:12px;
    transition:.3s;
    font-size:15px;
}

.mega-column a:hover{
    color:var(--primary-color);
    padding-left:5px;
} */

/* ================= CATEGORY SIDEBAR ================= */

.category-sidebar {
    width: 320px;
    background: #fff;
    border-radius: 8px;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
    transition: .3s;
}

.category-item:hover {
    background: #f8f9ff;
    color: var(--primary-color);
}



.category-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.category-item i {
    font-size: 12px !important;
    color: #333;
}

.category-left img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mega-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 950px;
    min-height: 100%;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.category-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}


.mega-column {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.mega-column h3 {
    margin-bottom: 18px;
    color: #111;
    font-size: 18px;
}


.mega-column a {
    display: block;
    text-decoration: none;
    color: #333;
    margin-bottom: 2px;
    transition: .3s;
    font-size: 14px;
}

.mega-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


.view-all {
    padding: 8px 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: capitalize;
}

/* ================= HERO SECTION ================= */

/* .hero-section{
    padding:20px 0;
}
.category-sidebar{
    background:#fff;
    border-radius:10px;
    height:62vh;
    padding:4px 0;
    box-shadow:0 2px 20px rgba(0,0,0,0.06);
    position:relative;
}
.category-sidebar::-webkit-xllbar{
    width:4px;
}

.category-sidebar::-webkit-scrollbar-thumb{
    background:#d0d0d0;
    border-radius:10px;
} */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.category-item:hover {
    background: #f7f9fc;
}

.category-item:hover .category-left {
    color: var(--primary-color);
}

/* .category-item:hover i{
    color:#ff6b00;
}
.category-left{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:500;
    color:#333;
    transition:.3s;
}

.category-left img{
    width:24px;
    height:24px;
    object-fit:cover;
}
.category-item i{
    font-size:13px;
    color:#bbb;
    transition:.3s;
} */

/* ================= MEGA DROPDOWN ================= */

/* .mega-dropdown{
    position:absolute;
    left:100%;
    top:0;
    width:900px;
    min-height:100%;
    background:#fff;
    padding:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);

    opacity:0;
    visibility:hidden;
    transform:translateX(20px);

    transition:.35s ease;
    z-index:999;
}
.category-item:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}
.mega-column{
    border-right:1px solid #eee;
    padding-right:20px;
}

.mega-column:last-child{
    border-right:none;
}
.mega-column h3{
    font-size:18px;
    margin-bottom:18px;
    color:#111;
}
.mega-column a{
    display:block;
    text-decoration:none;
    color:#555;
    font-size:15px;
    margin-bottom:12px;
    transition:.3s;
}

.mega-column a:hover{
    color:var(--primary-color);
    padding-left:6px;
}
.view-all{
    text-align:center;
    padding:16px;
    font-size:17px;
    font-weight:600;
    color:var(--primary-color);
    cursor:pointer;
} */

/* ================= MAIN SLIDER ================= */

.main-slider {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    height: 430px;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    padding-left: 50px;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Outgoing slide exits smoothly left */
.slide.leaving {
    opacity: 0;
    visibility: visible;
    transform: translateX(-40px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide-content h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--secondary-color);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 22px;
    color: #666;
    margin-bottom: 25px;
}

.slide-content button {
    border: none;
    background: var(--secondary-color);
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

.slide-content button:hover {
    background: var(--secondary-color);
}

.slide img {
    width: 340px;
    object-fit: contain;
}

.category-sidebar {


    position: relative;
}

.mega-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 900px;
    min-height: 100%;
    background: #fff;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateX(20px);

    transition: all .35s ease;

    z-index: 9999;
}

.category-item:hover>.mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0px 0px 4px var(--primary-color);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* z-index:1000; */
    transition: all .35s ease;
}

.prev {
    left: 10px;
    padding-top: 3px;
}

.next {
    right: 10px;
    padding-top: 3px;
}

.main-slider:hover .prev {
    left: 5px;
}

.main-slider:hover .next {
    right: 5px;
}

.owl-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 8px;
    z-index: 99;
}

.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7d2e5 !important;
    transition: .3s;
    border: none !important;
}

.owl-dot.active {
    width: 28px;
    border-radius: 30px;
    background: var(--secondary-color) !important;
    background: var(--primary-color) !important;
}

/* .category-sidebar{
    width:100%;
    background:#fff;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    height:62vh;

    overflow-y:auto;
    overflow-x:visible;

    position:relative;
} */

/* SCROLLBAR */

.category-sidebar::-webkit-scrollbar {
    width: 6px;
}

.category-sidebar::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 10px;
}

/* CATEGORY ITEM */

.category-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 11px 20px;
    border-bottom: 1px solid #eee;

    background: #fff;
    cursor: pointer;
}

/* MEGA MENU */

.mega-dropdown {
    position: fixed;
    left: 422px;
    top: 198px;
    width: 962px;
    min-height: 430px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

/* SHOW */

.category-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-btn {
    display: none;
}

/* ---------------services-------------- */
.flash-back {
    /* background: linear-gradient(90deg, #fff8ee 0%, #fff2dc 100%); */
    background-color: #e7f4f7 !important;
    padding: 22px 26px;
    overflow: hidden;
    position: relative;
}

.flash-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.flash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.flash-top h2 {
    font-size: 26px;
    color: #000000;
    font-weight: 500;
}

.flash-top a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}



/* LEFT TIMER */

.flash-timer {

    background: var(--secondary-color);
    background: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.flash-p p {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.countdown {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 5px;
}

.countdown p {
    font-size: 30px;
    color: #f8f9ff;
}

.count-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.count-box h3 {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 5px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    word-break: normal;
    color: #000;
}

.count-box span {
    font-size: 12px;
    text-align: center;
    display: inline-block;
}

.progress {
    width: 100%;
    height: 8px;
    background: #000000;
    border-radius: 30px;
    margin-top: 15px;
    overflow: hidden;
}

.progress div {
    width: 72%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
}

/* RIGHT PRODUCTS */

.flash-slider {
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 18px;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}

.flash-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    overflow: hidden;
    position: relative;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    background: var(--card-bg-hover);
    border-color: rgba(15, 93, 113, 0.25);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.product-image img {
    width: 80%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* HOVER ICONS */

.hover-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .hover-icons {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.hover-icons a {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(15, 93, 113, 0.18);
    transition: var(--transition-fast);
}

.hover-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 24px rgba(15, 93, 113, 0.35);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 93, 113, 0.08);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-info {
    padding: 14px 16px 16px;
    background: var(--card-bg);
    transition: var(--transition-smooth);
}

.product-card:hover .product-info {
    background: var(--card-bg-hover);
}

.product-info h4 {
    text-overflow: ellipsis;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
}

.product-card:hover .product-info h4 {
    color: var(--primary-color);
}

.price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 4px;
}

.rating {
    margin-top: 6px;
    color: #f59e0b;
    font-size: 12px;
}

/* =============== SHINY DISCOUNT BADGE =============== */

.discount, .badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9200 50%, #ffb347 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 10px rgba(255, 146, 0, 0.45);
    overflow: hidden;
    white-space: nowrap;
}

.discount::after, .badge-discount::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: shiny-sweep 2.5s ease-in-out infinite;
}

@keyframes shiny-sweep {
    0% { left: -100%; }
    40%, 100% { left: 160%; }
}

/* NEW badge */
.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(15, 93, 113, 0.35);
}

/* =========================
CUSTOM ARROW
========================= */

.product-slider-area {
    position: relative;
}

/* BUTTON */

.product-slider-area .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 32%;
    z-index: 20;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 14px rgba(15, 93, 113, 0.3);
}

.product-slider-area:hover .arrow {
    opacity: 1;
    visibility: visible;
}

.product-slider-area .arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
}

.product-slider-area .arrow.left {
    left: -20px;
}

.product-slider-area .arrow.right {
    right: -20px;
}

/* -------------- feature section--------------- */
.features {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 6px;
    border-radius: 5px;

}

.feature-section .flash-top h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.feature-section .product-image {
    border: 1px solid #e9f3ff;
    box-shadow: 0px 3px 6px #dbdbdc;
    margin: 2px;
}

.feature-section .product-info h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-section .product-info {
    padding: 6px 4px !important;
}

.feature-section .owl-dot {
    display: none !important;
}

/* ---------- categories-section ------------- */
.categories-item-part {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 6px;
    border-radius: 5px;

}

.categories-section .flash-top h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.categories-section .category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    overflow: hidden;
    padding: 10px 0px !important;
}

.categories-section .category-item:hover {
    background-color: transparent !important;
}

.categories-section .category-item img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.0509803922);
}

.categories-section .category-item img {
    transition: .5s;
}

.categories-section .category-item img:hover {
    transform: scale(1.1);
}

.categories-section .category-item h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0px !important;
}

/* =========================
FEATURED DEAL
========================= */
.featured-wrapper {
    margin-top: 25px;
}

.featured-bg {
    background: #e5f1ff;
    background: linear-gradient(90deg, #fff7ec 0%, #fff4e3 50%, #ffecc7 100%);
    padding: 30px 25px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* TOP */

.featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.featured-wrapper .featured-top h2 {
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.featured-wrapper .featured-top p {
    font-size: 16px;
    color: #000;
}

.featured-top a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

/* =========================
SLIDER AREA
========================= */

.featured-slider-area {
    position: relative;
}

/* CARD */

.featured-card {
    background: #fff;
    border-radius: 6px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

/* IMAGE */

.featured-img {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent !important;
}

.featured-img img {
    max-width: 100%;
    transition: .4s;
}

/* IMAGE ZOOM */

.featured-card:hover .featured-img img {
    transform: scale(1.12);
}

/* INFO */

.featured-info {
    flex: 1;
}

.featured-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 6px;

}


.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-box del {
    font-size: 12px !important;
    color: #9b9b9b !important;
}

.price-box span {
    color: #3c4659;
    font-size: 17px;
    font-weight: 700;
}

/* DISCOUNT */

.discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    z-index: 1;
}

/* =========================
ARROW
========================= */

.featured-slider-area .arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    z-index: 50;

    cursor: pointer;

    transition: .3s;

    opacity: 0;
    visibility: hidden;
}

/* SHOW ON HOVER */

.featured-slider-area:hover .arrow {
    opacity: 1;
    visibility: visible;
}

.featured-slider-area .arrow:hover {
    background: var(--secondary-color-dark);
    transform: translateY(-50%) scale(1.08);
}

.featured-slider-area .arrow.left {
    left: -25px;
}

.featured-slider-area .arrow.right {
    right: -25px;
}

/* =========================
OWL
========================= */

.featured-slider .owl-stage-outer {
    padding: 5px 0;
}

/* ------------ ad images ------------- */
.ad-images-section {
    margin-top: 25px;
}

.ad-img img {
    width: 100%;
    object-fit: cover;
}


/* =========================
TOP SELLERS
========================= */

.seller-wrapper {
    padding: 40px 0;
}

.seller-bg {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    overflow: hidden;
}

.seller-wrapper .flash-top h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.seller-wrapper .flash-top a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

/* CARD */

.seller-card {
    border: 1px solid var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all ease-in 0.3s;
}

.seller-card:hover {
    transition: all ease-in 0.3s;
    box-shadow: 0 1px 4px var(--secondary-color);
}

/* COVER */

.seller-cover {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.seller-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.seller-card:hover .seller-cover img {
    transform: scale(1.08);
}

.pink {
    background: #f8d6d2;
}

.cream {
    background: #f3eed8;
}

.orange {
    background: #f18c5f;
}

/* INFO */

.seller-info {
    display: flex;
    align-items: end;
    gap: 15px;
    padding: 0 20px;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.seller-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #fff;
}

.seller-logo img {
    width: 70%;
    transition: .4s;
}

.seller-logo img:hover {
    transform: scale(1.08);
}

.dark {
    background: #000;
}

.seller-content h3 {
    color: #444a4e;
    font-size: 15px;
    font-weight: 700;
    transition: all ease 0.3s;
    margin: 0 0 2px 0;
}

.seller-content p {
    font-size: 12px;
    color: #66717c;
}

.seller-content p span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #FF7D1E !important;
}

.seller-content i {
    color: #FDBC15 !important;
    font-size: 12px;
    margin-left: 4px !important;
    margin-right: 4px !important;
}

/* BOTTOM */

.seller-bottom {
    display: flex;
    gap: 15px;
    padding: 14px 20px 16px;
}

.seller-box {
    flex: 1;
    background: linear-gradient(90deg, #fff8ee 0%, #fff2dc 100%);
    border-radius: 6px;
    padding: 5px 12px;
    text-align: center;
    color: #334257;
    font-size: 14px;
}

.seller-box span {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

/* OWL */

.seller-slider .owl-stage-outer {
    padding: 5px 0;
}

/* -----------  top sellers ----------- */
.seller-cover img {
    width: 100%;
    height: 100%;
    object-fit: center;
    transition: all ease-in 0.3s;
}

.seller-cover img:hover {
    transform: scale(1.08);
}

/* ----------- Latest products ------------- */
.Latest-products-section .product-card-up {
    padding: 40px 25px;
    box-shadow: rgba(177, 175, 175, 0.06) 0px 0px 18px;
    border: 1.315px solid var(--secondary-color);
    border-radius: 4.382px;
    background: linear-gradient(90deg, #fff8ee 0%, #fff2dc 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-left-image {
    width: 215px;
    height: 215px;
    object-fit: cover;
    border: 1px solid #eef1ff;
    position: relative;
}

.product-left-image img {
    width: 100%;
}

.sub-card {
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 4px;
}

.Latest-products-section .product-info {
    padding: 8px 0px !important;
    text-align: center;
}

.Latest-products-section .product-info h4 {
    font-size: 1.0625rem;
    margin-top: 8px !important;
    color: #000;
    text-align: center;
}

.Latest-products-section .product-info .price del {
    font-size: 14px;
    color: #9b9b9b;
    font-weight: 300;
    margin-right: 3px;
}

.Latest-products-section .product-info .price {
    color: #373f50 !important;
    font-size: 18px;
    font-weight: 700;
}

.grab-btn button {
    background-color: var(--secondary-color);
    text-align: center;
    margin: 20px 0px 40px;
    border: 1px solid transparent;
    padding: 10px 22px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
}


/* ----------- Latest products ------------ */

.Latest-products-section .flash-top h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.product-card-up {
    padding: 20px;
    background-color: #f3f8fe;
    border: 1px solid #000000;
}

.Latest-products-section .flash-top a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.sub-card h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 18px !important;
    text-transform: uppercase;
}

.Latest-products-section .product-card {
    padding: 6px !important;
    background-color: #ffffff !important;
    border: none !important;
    margin-top: 10px;
}

.Latest-products-section .product-image img {
    width: 100%;
}

.Latest-products-section .product-info h4 {
    font-size: 0.875rem;
    padding: 0px !important;
}

.Latest-products-section .product-info .price {
    color: #373f50 !important;
    font-size: 15px;
    font-weight: 700;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.heading a {
    text-decoration: none;
    color: #2d69c7;
    font-size: 16px;
    font-weight: 500;
}

.arrivals-wrapper .rating i {
    color: rgba(255, 125, 30, 1) !important;
    font-size: 9px;
}

.rating span {
    font-size: 11px;
    color: #000;
}

.arrivals-wrapper .rating {
    margin-top: 0px !important;
}


/* ----------Best-sellings-section----------- */
.Best-sellings-section .heading h2 img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 5px;
}

.Best-sellings-section .heading h2 {
    font-size: 16px;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #000;
}

.Best-sellings-section .heading a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}

.Best-sellings-section #pro-item {
    display: flex;
    flex-direction: column;
}

.Best-sellings-section .product-section1 {
    display: flex;
}

.Best-sellings-section .wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* LEFT & RIGHT BOX */
.Best-sellings-section .product-section {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px;
}

/* PRODUCTS GRID */
.Best-sellings-section .products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* SINGLE CARD */
.Best-sellings-section .product-card {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;

    transition: .3s;
    cursor: pointer;
    background: #fff;
}

.Best-sellings-section .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.Best-sellings-section .product-img {
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Best-sellings-section .product-img img {
    width: 90px;
    transition: .4s;
}

.Best-sellings-section .product-card:hover img {
    transform: scale(1.08);
}

.products {
    border-radius: 5px;
    background: #FAFAFC;
    padding: 10px;
    border: none;
}

.products .featured-card {
    border: 1px solid #dfe0e5;
    padding: 10px 12px !important;
}

.Best-sellings-section .rating {
    margin-top: 0px !important;
}


/* --------- ad section --------- */
.ad-section .ad-img img {
    border-radius: 5px;
}

/* ---------- brand section ----------- */
body {
    background-color: #fafbfc;
}

.brand-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 85px;
    border-radius: 50%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--white-clr);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    margin-bottom: 2px;
}

.brand-img img {
    width: 100%;
    border-radius: 50%;
    background-color: #ffffff;

}

.featured-brand-slider {
    margin-top: 40px;
}

.arrivals-wrapper .owl-dots button {
    display: none !important;
}

.Gadgets-section .owl-dots button {
    display: none !important;
}

.women-section .owl-dots button {
    display: none !important;
}

.home-kitchen-section .owl-dots button {
    display: none !important;
}

.electronics-gadgets-section .owl-dots button {
    display: none !important;
}

.men-section .owl-dots button {
    display: none !important;
}

.kid-section .owl-dots button {
    display: none !important;
}

/* ----------- women fashion ------------ */
.women-section .price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.women-section .price del {
    color: #9b9b9b !important;
    font-size: 14px;
    font-weight: 300;
}

.women-section .product-image {
    border: 1px solid #f2f2f2;
}

/* ------------- Gadgets-section ------------- */

.Gadgets-section .product-image {
    border: 1px solid #f2f2f2;
}

.electronics-gadgets-section .product-image {
    border: 1px solid #f2f2f2;
}

.home-kitchen-section .product-image {
    border: 1px solid #f2f2f2;
}

.men-section .product-image {
    border: 1px solid #f2f2f2;
}

.kid-section .product-image {
    border: 1px solid #f2f2f2;
}

.men-section .rating {
    margin-top: 0px !important;
    font-size: 18px;
    margin-bottom: 6px !important;
}

.men-section .price del {
    color: #9b9b9b !important;
    font-size: 14px;
    font-weight: 300;
}

/* ----------- official section ----------- */
.official-section {
    margin-top: 25px;
    margin-bottom: 25px;
}

.background {
    background: linear-gradient(90deg, #fff8ee 0%, #fff2dc 100%);
    padding: 45px 40px;
}

.official-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.background .row .col-xl-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--secondary-color);
}

.background .row .col-xl-3:last-child {
    border: none !important;
}

.off-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0e1e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.off-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.off-para p {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px !important;
}

/* ----------- about section ------------ */

.about-item {
    padding: 33px 20px 27px;
    border-radius: 5px;
    border: 1px solid #e9ecf0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.about-icon svg {
    color: var(--secondary-color);
}

.about-para h6 {
    color: #262d34;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 5px;
    margin-top: 12px !important;
    text-transform: capitalize;
}

.about-para p {
    color: rgba(38, 45, 52, 0.8);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.14px;
}


/* ================= FOOTER ================= */

.footer {
    background: var(--secondary-color);
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
}

.footer-container {
    padding: 50px 0px;
}


/* Logo */

.footer-logo img {
    max-width: 150px;
    /* margin-bottom: 45px; */
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: .5px;
    margin-top: 45px !important;
}

.app-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.app-buttons img {
    max-width: 150px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.app-buttons img:hover {
    transform: translateY(-3px);
}

/* Links */
.footer-links ul {
    padding-left: 0px !important;
}

.footer-links ul li {
    margin-bottom: 6px;
    list-style-type: none;
}

.footer-links ul li a {
    color: #fff;
    font-size: 18px;
    transition: .3s;
    display: block;
    font-size: 0.875rem;
    font-weight: normal;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #4b566b;
    padding-left: 4px;
}

/* Newsletter */

.newsletter-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.newsletter-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.newsletter-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
}

.newsletter-box input::placeholder {
    color: #b8c7d3;
}

.newsletter-box button {
    width: 130px;
    border: none;
    background: var(--secondary-color);
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    position: absolute;
    right: 5px;
    top: 4px;
    padding: 11px;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: capitalize;
    border: none;
    border-radius: 2px;
    color: #fff;
}

.newsletter-box button:hover {
    background: #ececec;
}

.footer-middle {
    margin-top: 20px;
}

.contact-box h3,
.address-box h3 {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box h3::after,
.address-box h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.contact-info,
.address-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 10px;
}

.contact-info a,
.address-info a {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.contact-info a i,
.address-info a i {
    font-size: 15px;
}

/* Social */

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    font-size: 14px;
    text-decoration: none;
}


.social-icons a:hover {
    background: #fff;
    color: #0f4a73;
    transform: translateY(-4px);
}

.text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

/* Copyright */

.copyright {
    background: #f1a033;
    background: linear-gradient(90deg,
            #50a2b5 0%,
            #e7f4f7 100%);
    text-align: center;
    padding: 20px 20px;
    font-size: 14px;
    color: #000;
}

/* Whatsapp */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 75px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
    text-decoration: none;
}

/* Scroll Top */

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #000000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
}


/* ================= MAIN HEADER FIXED ================= */

.main-header-section {
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

/* ================= OPTIONAL STICKY EFFECT ================= */

.main-header-section.active {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}



/* ================= RESPONSIVE ================= */

@media(max-width:1200px) {
    .mega-dropdown {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-middle {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .mega-dropdown {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content h1 {
        font-size: 45px;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .right-banner {
        flex-direction: row;
    }
}

@media(max-width:1400px) {

    .mega-dropdown {
        width: 900px;
    }
}

@media(max-width:1100px) {

    .mega-dropdown {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:992px) {
    .logo {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    #rev-box {
        display: none !important;
    }

    .dropdown-menu {
        position: absolute;
        z-index: 100000;
        left: -64px;
        top: 140%;
    }

    .arrow.left {
        left: 0;
    }

    .arrow.right {
        right: 0;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .flash-top h2 {
        font-size: 16px;
        font-weight: 800;
    }

    .flash-top a {
        font-size: 12px;
        font-weight: 500;
    }

    .flash-p p {
        font-size: 12px;
        margin-bottom: 10px !important;
    }

    .flash-timer {
        margin-bottom: 20px;
    }

    .product-image img {
        width: 100%;
    }

    .count-box {
        width: 70px;
        height: 70px;
    }

    .count-box h3 {
        font-size: 24px;
    }

    .category-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .mega-dropdown {
        display: none;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }

    .slide img {
        width: 220px;
    }

    .featured-top {
        flex-direction: column;
        gap: 10px;
    }

    .arrow.left {
        left: 0;
    }

    .arrow.right {
        right: 0;
    }

    .featured-card {
        flex-direction: column;
        text-align: center;
    }

    /* .wrapper{
        flex-direction:column;
      } */
    .Best-sellings-section .wrapper.d-lg-flex {
        display: flex;
        gap: 0px;
    }
}

@media(max-width:768px) {
    .category-sidebar {
        width: 100%;
    }

    .mega-dropdown {
        display: none;
    }

    .mega-dropdown {
        display: none;
    }

    .category-sidebar {
        width: 100%;
    }

    .main-slider {
        height: auto;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 17px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .cart-dropdown {
        width: 300px;
        right: -60px;
    }

    .cart-price {
        display: none;
    }

    .footer-container {
        padding: 45px 10px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .newsletter-box {
        height: 54px;
    }

    .newsletter-box button {
        width: 100px;
        font-size: 12px;
    }

    .footer-links ul li a {
        font-size: 16px;
    }

    .newsletter-text {
        font-size: 14px;
    }

    .contact-info,
    .address-info {
        flex-direction: column;
        gap: 15px;
    }

    .copyright {
        font-size: 14px;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 35px;
    }

    .slide img {
        width: 220px;
    }

    .right-banner {
        flex-direction: column;
    }

    .mega-menu {
        display: none;
    }
}


@media(max-width:600px) {
    .products {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }
}











/* Mobile Search Panel hidden on desktop */
.mobile-search-panel {
    display: none;
}

/* ================= MOBILE RESPONSIVE CLEAN UI ================= */

@media(max-width:991px) {
    .top-section {
        width: 100%;

    }

    .main-header-section {
        width: 100%;
    }

    .hero-section {
        width: 100%;
    }

    /* OWL NAV */

    .categories-slider .owl-nav {
        display: none !important;
    }

    .categories-section .flash-top h2 {
        font-size: 16px;
    }

    .flash-back {
        padding: 30px 10px 0px;
    }

    .flash-wrapper .product-card {
        display: flex !important;
        background-color: #ffffff;
        flex-direction: column !important;
        justify-content: space-around !important;
        align-items: center !important;
    }

    .flash-wrapper .product-image img {
        max-width: 120px !important;
        height: 100% !important;
    }

    .flash-wrapper .product-info {
        padding: 0px 5px;
        text-align: left;
    }

    .flash-wrapper .product-info h4 {
        font-size: 17px;
        transition: .3s;
    }

    .feature-section .flash-top h2 {
        font-size: 16px;
        margin-top: 15px;
    }

    .section-padding {
        padding: 20px 0px;
    }

    .product-card {
        width: 100% !important;
        margin: 20px auto 0px;
    }

    .feature-section .product-image {
        box-shadow: none !important;
        border: 1px solid #b8bbbc;
    }

    .feature-section .product-image img {
        width: 200px;
        height: 100%;
        object-fit: cover;
    }

    /* HIDE DESKTOP CATEGORY + BANNER SIDEBAR */

    .category-sidebar {
        display: none;
    }

    /* HERO SECTION */

    .hero-section {
        padding-top: 15px;
    }

    .category-row {
        display: block;
    }

    /* ================= MOBILE HEADER ================= */



    .top-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .top-left {
        font-size: 11px;
    }

    .top-right {
        gap: 10px;
    }

    .dropdown-btn {
        font-size: 13px;
    }

    .dropdown-btn img {
        width: 20px;
    }

    /* ================= MAIN HEADER ================= */

    .main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 5px 0;
        position: relative;
    }

    /* MOBILE MENU BUTTON */

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 40px;
        font-size: 16px;
        cursor: pointer;
        color: #555;
    }

    /* LOGO */

    .logo img {
        width: 85px;
    }

    /* SEARCH BOX */

    .search-box {
        position: static;
        transform: none;
        order: 2;
        margin-left: auto;
        margin-right: 8px;
        display: flex;
        align-items: center;
    }

    .search-box input {
        display: none !important;
    }

    .search-box button {
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        border: none !important;
        background: #f3f5ff !important;
        color: #1b4db1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        padding: 0 !important;

        i {
            font-size: 16px !important;
            color: #1b4db1 !important;
        }
    }

    /* Mobile Search Panel Overlay and Transition Styles */
    .mobile-search-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        padding: 12px 16px;
        border-bottom: 1px solid #f1f5f9;
        
        opacity: 0;
        transform: translateY(-10px);
        transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-search-panel.open {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-search-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        background: #f8fafc;
        border: 1.5px solid #cbd5e1;
        border-radius: 24px;
        padding: 0 16px;
        height: 46px;
        transition: border-color 0.2s;
    }

    .mobile-search-input-wrapper:focus-within {
        border-color: #1b4db1;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(27, 77, 177, 0.1);
    }

    .search-input-icon {
        color: #64748b;
        font-size: 16px;
        margin-right: 10px;
    }

    #mobileSearchInput {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        font-size: 15px;
        color: #1e293b;
        padding: 0;
        width: 100%;
    }

    #mobileSearchInput::placeholder {
        color: #94a3b8;
    }

    .search-close-btn {
        border: none;
        background: transparent;
        color: #64748b;
        font-size: 18px;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

    .search-close-btn:hover {
        background: #e2e8f0;
        color: #0f172a;
    }

    /* HEADER ICONS */

    .header-icons {
        order: 3;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .icon-box {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f3f5ff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .icon-box i {
        font-size: 14px;
        color: #1b4db1;
    }

    /* BADGE */

    .badge {
        position: absolute;
        top: -3px;
        right: -3px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #ff7a00;
        color: #fff;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    /* HIDE CART TEXT */

    .cart-price {
        display: none;
    }

    /* HIDE CART DROPDOWN */

    .cart-dropdown {
        display: none !important;
    }

    /* ================= NAVBAR HIDE ================= */

    .navbar {
        display: none;
    }

    /* ================= MOBILE SIDEBAR ================= */

    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        overflow-y: auto;
        transition: .4s;
        padding: 20px;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    /* TOP */

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

    .mobile-top img {
        width: 60px;
    }

    .close-menu {
        font-size: 24px;
        cursor: pointer;
    }

    /* MENU */

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-right: 74px;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #111;
        font-size: 15px;
    }

    /* DROPDOWN */

    .mobile-dropdown {
        display: none;
        padding-left: 15px;
        margin-top: 12px;
    }

    .mobile-dropdown a {
        display: block;
        margin-bottom: 12px;
        color: #666;
        font-size: 14px;
    }

    .mobile-item.active .mobile-dropdown {
        display: block;
    }

    /* CATEGORY */

    .mobile-category-item {
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .mobile-category-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-category-left {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .mobile-category-left img {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        object-fit: cover;
    }

    .mobile-subcategory {
        display: none;
        padding-left: 35px;
        margin-top: 12px;
    }

    .mobile-subcategory a {
        display: block;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .mobile-category-item.active .mobile-subcategory {
        display: block;
    }

    /* OVERLAY */

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ================= SLIDER ================= */

    .main-slider {
        width: 100%;
        height: 180px;
        border-radius: 8px;
        overflow: hidden;
    }

    .slide {
        padding: 0px;
        height: 100%;
    }

    .slide-content h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .slide-content p {
        font-size: 12px;
        margin: 8px 0;
    }

    .slide-content button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .slide img {
        width: 130px;
    }

    /* SLIDER BUTTON */

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

}

/* ================= MOBILE SIDEBAR SCROLL FIX ================= */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 999999;

    /* IMPORTANT */

    overflow-y: auto;
    overflow-x: hidden;

    transition: .4s;
    padding: 20px;
}

/* MOBILE SIDEBAR PROFILE SECTION */
.mobile-profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(15, 93, 113, 0.08) 0%, rgba(15, 93, 113, 0.02) 100%);
    border: 1px solid rgba(15, 93, 113, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.mobile-profile-section:hover {
    background: linear-gradient(135deg, rgba(15, 93, 113, 0.12) 0%, rgba(15, 93, 113, 0.04) 100%);
    border-color: rgba(15, 93, 113, 0.18);
    box-shadow: 0 4px 15px rgba(15, 93, 113, 0.05);
}

.mobile-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(15, 93, 113, 0.2);
}

.mobile-profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-profile-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.mobile-profile-greeting {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-profile-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-profile-link:hover {
    color: #0c4a5a;
    text-decoration: none;
}

/* SCROLLBAR */

.mobile-sidebar::-webkit-scrollbar {
    width: 5px;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 10px;
}

/* CATEGORY WRAPPER */

.category-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 100px;
}

/* CATEGORY ITEM */

.mobile-category-item {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

/* TITLE */

.mobile-category-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* LEFT SIDE */

.mobile-category-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #222;
}

/* IMAGE */

.mobile-category-left img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* SUBCATEGORY */

.mobile-subcategory {
    display: none;
    padding-left: 42px;
    margin-top: 15px;
}

/* LINKS */

.mobile-subcategory a {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

/* ACTIVE */

.mobile-category-item.active .mobile-subcategory {
    display: block;
}

.ad-section .owl-dots button {
    display: none !important;
}












/* ================= CATEGORIES SECTION ================= */



/* OWL NAV */

.categories-slider .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.categories-slider .owl-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: #f1f3ff !important;
    transition: .3s;
}

.categories-slider .owl-nav button:hover {
    background: #1b4db1 !important;
    color: #fff !important;
}

/* RESPONSIVE */

@media(max-width:767px) {
    .categories-section .category-item img {
        width: 70px;
        height: 70px;
    }

    .wrapper:not(.d-none) {
        display: flex !important;
        flex-direction: column !important;
    }

    .wrapper:not(.d-none) .product-section {
        display: flex;
        flex-direction: row !important;
    }


    .category-item {
        padding: 18px 10px;
    }


    .categories-section .category-item h6 {
        font-size: 11px;

    }

    .category-item h6 {
        font-size: 13px;
    }

    .flash-wrapper .product-card {
        display: flex !important;
        background-color: #ffffff;
        flex-direction: column !important;
        justify-content: space-around !important;
        align-items: center !important;
    }

    /* Hover icons hidden by default on mobile - shown via JS touchstart (.touch-active) */
}

@media(max-width:991px) {

    /* OWL NAV */

    .categories-slider .owl-nav {
        display: none !important;
    }

    .featured-wrapper .featured-top {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline;
        gap: 0;
    }

    .featured-wrapper .featured-top p {
        font-size: 12px;
    }

    .featured-wrapper .featured-bg {
        padding: 10px 10px;
    }

    .featured-top a {
        font-size: 12px;
    }

    .featured-wrapper .featured-top h2 {
        font-size: 16px;
        margin-top: 15px;
    }

    .featured-wrapper .container {
        padding: 0px 0px !important;
        width: 100% !important;
    }

    .featured-wrapper .featured-card {
        display: flex !important;
        flex-direction: row !important;
    }

    .featured-wrapper .featured-info {
        text-align: left !important;
    }

    .seller-bg {
        padding: 10px 0px !important;
    }

    .seller-wrapper .flash-top h2 {
        text-align: left;
        font-size: 16px;
        margin-top: 0px !important;
    }

    .seller-wrapper .flash-top a {
        font-size: 12px;
    }

    .Latest-products-section .flash-top h2 {
        text-align: left;
        font-size: 16px;
    }

    .Latest-products-section .flash-top {
        display: flex;
        align-items: center;
        margin-top: 25px;
    }

    .Latest-products-section .flash-top a {
        font-size: 12px;
    }

    .heading h2 {
        font-size: 16px;
    }

    .Best-sellings-section .heading a {
        font-size: 12px;
    }

    .arrivals-wrapper .featured-card {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        text-align: left;
        box-shadow: 0px 1px 1px #d0d4d9;
    }

    .Best-sellings-section .container {
        width: 100%;
        padding: 0px 0px !important;
    }

    .Best-sellings-section .product-section {
        border: none;
        padding: 15px;
    }

    .Best-sellings-section .products {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Best-sellings-section .featured-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .section-padding {
        margin-top: 0px !important;
    }

    .featured-brand-slider {
        margin-top: 20px;
    }

    .features {
        background: white;
        box-shadow: none !important;
        border-radius: 5px;
    }

    .women-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .women-section .product-card .product-image {
        border: 0px !important;
    }

    .women-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .heading a {
        font-size: 12px !important;
    }

    .discount {
        font-size: 12px;
    }

    .Gadgets-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .Gadgets-section .product-card .product-image {
        border: 0px !important;
    }

    .Gadgets-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .electronics-gadgets-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .electronics-gadgets-section .product-card .product-image {
        border: 0px !important;
    }

    .electronics-gadgets-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .home-kitchen-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .home-kitchen-section .product-card .product-image {
        border: 0px !important;
    }

    .home-kitchen-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .product-info h4 {
        font-size: 14px;
    }

    .price {
        font-size: 12px;
    }

    .men-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .men-section .product-card .product-image {
        border: 0px !important;
    }

    .men-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .kid-section .product-card {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .kid-section .product-card .product-image {
        border: 0px !important;
    }

    .kid-section .product-card .product-image img {
        width: 120px;
        object-fit: cover;
    }

    .about-para p {
        display: none;
    }

    .about-background .row .col-xl-3 {
        margin-bottom: 20px;
    }

    .about-para h6 {
        font-size: 14px;
        font-weight: 400;
    }

    .about-item {
        padding: 15px 5px 15px;
    }

    .background .row .col-xl-3 {
        border-right: none !important;
    }

    .background {
        padding: 25px 10px;
    }

    .background .row {
        display: flex;
        align-items: start;
    }

    .off-para p {
        font-size: 11px;
        margin-top: 10px !important;
        font-weight: 400;
    }

    .off-icon {
        width: 75px;
        height: 75px;
    }

    .foot-up {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .app-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .newsletter-box input {
        padding: 15px 10px;
        font-size: 14px;
    }

    .contact-info,
    .address-info {
        gap: 10px;
        text-align: left;
        display: flex;
        align-items: start;
    }

    .address-box {
        margin: 25px 0px;
    }

    .official-section .container {
        width: 100%;
        padding: 0px 0px !important;
    }

    .sub-card {
        padding: 30px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .wrapper:not(.d-none) {
        display: flex !important;
     }

     .wrapper:not(.d-none) .product-section {
         display: flex;
         flex-direction: column !important;
     }








}

/* .category-sidebar.active ~ .main-slider{
    width:calc(100% - 288px);
    margin-left:auto;
} */
.category-sidebar {
    display: none;
}

.category-sidebar.active {
    display: block;
}













/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
    background-color: var(--primary-color);
    width: 100%;
    left: 0;
    right: 0;
    color: #000 !important;
}



.category-wrapper {
    width: 280px;
    position: relative;
}

.category-btn {

    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}




/* ================= HERO ================= */

.hero-section {
    padding-top: 10px;
    margin-bottom: 25px;
}

.hero-wrapper {
    display: flex;
    gap: 20px;
    position: relative;

}

/* CATEGORY */

.category-sidebar {
    width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    position: absolute;
    top: 190px;
    left: 130px;
    z-index: 999;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.category-sidebar.active {
    display: block;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px;
    cursor: pointer;
    position: relative;
}

.category-item:hover {
    background: #f5f5f5;
}



/* MEGA MENU */

.mega-dropdown {
    position: absolute;
    left: 103%;
    top: 0;
    width: 972px;
    background: #fff;
    display: none;
    padding: 25px 30px;
    min-height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    z-index: 10000;
}

.category-item:hover .mega-dropdown {
    display: flex;
    gap: 8px;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-column h3 {
    margin-bottom: 6px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
}

.mega-column a {
    text-decoration: none;
    color: #333;
}

/* SLIDER */

.main-slider {
    width: 100%;
    height: 430px;
    background: linear-gradient(to right, #e8f0ff, #ffffff);
    background: linear-gradient(90deg, #fff6e8 0%, #ffe6bd 100%);
    background: linear-gradient(90deg,
            #f2fbfd 0%,
            #e7f4f7 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px 60px;
}

.slide-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.slide-content button {
    background: var(--secondary-color);
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.slide img {
    width: 320px;
}

/* ACTIVE WIDTH */

.main-slider.full-width {
    width: 100%;
}

body {
    border: 1px solid #e5e7eb !important;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .hero-wrapper {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
        position: relative;
        margin-bottom: 15px;
    }

    .mega-dropdown {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .slide img {
        width: 220px;
        height: 100%;
        margin-top: 20px;
    }

    .count-box h3 {
        width: 50px;
        height: 50px;
    }

    .slide-content h1 {
        font-size: 24px;
        display: inline-block;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .slide-content button {
        background: var(--secondary-color);
        color: #fff;
        border: none;
        padding: 10px 35px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
    }

    .text-center {
        margin-top: 20px;
    }

    .slide {
        padding: 60px 10px 60px;
    }

    .main-slider {
        width: 100%;
        height: 100%;
    }

}









/*========================
PRODUCT CARD
=========================*/



/*========================
MODAL
=========================*/

.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.quick-view-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-content {
    max-width: 750px;
    width: 100%;
    background: #fff !important;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    z-index: 2;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: #111;
}

/* LEFT COLUMN */
.quick-left {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    width: 100%;
    height: 320px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfcfc;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.zoom-lens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--secondary-color);
    background: rgba(255, 255, 255, 0.25);
    display: none;
    pointer-events: none;
}

.main-image-container:hover .zoom-lens {
    display: block;
}

.thumb-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.thumb {
    width: 65px;
    height: 65px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    object-fit: contain;
    background: #fff;
    transition: all 0.2s ease;
}

.thumb:hover {
    border-color: var(--secondary-color);
}

.thumb.active {
    border: 2px solid var(--secondary-color);
}

/* RIGHT COLUMN */
.quick-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shop-name {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-right h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.order-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.order-info b {
    color: #222;
}

.popup-price {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

/* COLOR SELECTOR */
.color-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    transition: all 0.2s ease;
}

.color:hover {
    transform: scale(1.1);
}

.color.active {
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.purple {
    background: purple;
}

.black {
    background: #000;
}

/* QUANTITY */
.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #f9f9f9;
}

.qty-box button {
    width: 32px;
    height: 32px;
    border: none;
    background: #e9e9e9;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.qty-box button:hover {
    background: #ddd;
}

.qty-box input {
    width: 45px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.total-price {
    font-size: 15px;
    font-weight: 700;
    margin: 20px 0;
    color: #333;
}

.total-price span {
    color: var(--secondary-color);
    font-size: 18px;
    margin-left: 5px;
}

/* BUTTONS */
.cart-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cart-btns a {
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.buy-btn {
    background: var(--secondary-color);
    color: #fff;
}

.buy-btn:hover {
    background: #e08100;
}

.cart-btn {
    background: #222;
    color: #fff;
}

.cart-btn:hover {
    background: #000;
}

.wish-btn {
    border: 1px solid #ddd;
    color: #333;
    width: 45px;
    flex: none !important;
    padding: 0 !important;
}

.wish-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* SHARE WIDGET */
.share-wrapper {
    position: absolute;
    right: 20px;
    top: 70px;
    z-index: 10;
}

.share-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.package,
.share-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #eee;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.package:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.share-toggle {
    background: #fff;
    border-color: #ddd;
    color: #444;
}

.share-toggle:hover {
    background: #f5f5f5;
}

.share-social-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.share-box:hover .share-social-icons {
    max-height: 200px;
    opacity: 1;
}

.share-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.share-social-icons a:hover {
    transform: scale(1.1);
}

.share-social-icons a.facebook {
    background: #1877f2;
}

.share-social-icons a.twitter {
    background: #000;
}

.share-social-icons a.linkedin {
    background: #0a66c2;
}

.share-social-icons a.whatsapp {
    background: #25d366;
}

/* RESPONSIVE MEDIA QUERIES FOR MODAL */
@media(max-width: 991px) {
    .quick-view-content {
        max-width: 700px;
        padding: 20px;
        gap: 20px;
    }

    .quick-left {
        width: 280px;
    }

    .main-image-container {
        height: 280px;
    }

    .quick-right h2 {
        font-size: 18px;
    }

    .popup-price {
        font-size: 22px;
    }
}

@media(max-width: 767px) {
    .quick-view-modal {
        padding: 10px;
    }

    .quick-view-content {
        flex-direction: column;
        max-width: 480px;
        padding: 20px 15px 15px;
        gap: 15px;
        margin: 20px auto;
    }

    .quick-left,
    .quick-right {
        width: 100% !important;
        flex: none !important;
    }

    .main-image-container {
        height: 240px;
    }

    .thumb-wrapper {
        justify-content: center;
    }

    .close-modal {
        top: 12px;
        right: 15px;
        font-size: 26px;
    }

    .quick-right h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .popup-price {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .cart-btns {
        gap: 10px;
    }

    .cart-btns a {
        padding: 10px 15px;
        font-size: 14px;
        height: auto;
    }

    /* Responsive inline share box styling to prevent overlap on mobile */
    .share-wrapper {
        position: static;
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
        width: 100%;
    }

    .share-box {
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
    }

    .share-social-icons {
        flex-direction: row;
        max-height: none;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-width 0.3s ease, opacity 0.3s ease;
    }

    .share-box:hover .share-social-icons {
        max-width: 200px;
        opacity: 1;
    }
}




/* ================= ESSENTIAL PAGES ADDITIONAL STYLES ================= */

.page-header {
    background: linear-gradient(90deg, #fff6e8 0%, #ffe6bd 100%);
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 8px;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-top: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb .active {
    color: var(--secondary-color);
}

/* Shop Sidebar */
.shop-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    color: #111;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    margin-bottom: 8px;
}

.filter-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* Shop Product Grid & Sorting */
.shop-sort-bar {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pagination-area {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}

.pagination-area a,
.pagination-area span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.pagination-area a:hover,
.pagination-area span.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Product Details Gallery & Spec Sheets */
.details-tabs {
    margin-top: 50px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btns {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Cart Overview Styles */
.cart-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    font-weight: 600;
}

.cart-table td {
    /* padding: 15px; */
    vertical-align: middle;
}

/* Desktop: Action (delete) column sits normally in the table cell */
.cart-table td:last-child {
    position: static;
    text-align: center;
    padding: 12px 15px;
    vertical-align: middle;
}

/* Delete button — clean hover: color only, no translateY bounce */
.cart-table td:last-child .btn:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: 100px;
}

.cart-qty button {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
}

.cart-qty input {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.cart-summary {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Order Tracking Status Line */
.track-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.track-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
    z-index: 1;
}

.track-progress {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    z-index: 2;
    width: 50%;
}

.track-step {
    position: relative;
    z-index: 3;
    text-align: center;
}

.track-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 16px;
    color: #666;
    transition: 0.3s;
}

.track-step.active .track-icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

/* FAQs accordion */
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-trigger {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.faq-trigger.active {
    border-bottom-color: #eee;
}

.faq-content {
    padding: 20px;
    display: none;
    color: #555;
    line-height: 1.6;
}

/* General Layout helpers */
.section-margin {
    margin: 60px auto;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    min-width: 110px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-secondary-custom {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================
   RESPONSIVE CART PAGE REDESIGN (TABLE-TO-CARD REFACTOR)
   ========================================================== */
@media (max-width: 767px) {

    .cart-table table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
        width: 100% !important;
    }

    .cart-table thead {
        display: none !important;
    }

    .cart-table tr {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 20px;
        padding: 15px;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .cart-table td {
        border: none !important;
        padding: 10px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        border-bottom: 1px dashed #f5f5f5 !important;
    }

    .cart-table td:first-child {
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid #eee !important;
        padding-bottom: 15px !important;
        margin-bottom: 10px;
    }

    .cart-table td:first-child img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #333;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .cart-table td:first-child::before {
        content: "" !important;
    }

    .cart-table td:last-child {
        position: absolute;
        top: 15px;
        right: 15px;
        border: none !important;
        width: auto !important;
        padding: 0 !important;
    }

    .cart-table td:last-child::before {
        content: "" !important;
    }

    .cart-qty {
        margin: 0 !important;
    }
}

/* ==========================================================
   PRODUCT DETAILS COMPONENT STYLES
   ========================================================== */
.gallery-container {
    position: relative;
    width: 100%;
}

.thumb-box {
    width: 70px;
    height: 70px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
    overflow: hidden;
}

.thumb-box.active {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-swatch {
    transition: 0.2s;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--primary-color) !important;
}

.bg-danger-light {
    background: rgba(220, 53, 69, 0.1);
}

.bg-success-light {
    background: rgba(40, 167, 69, 0.1);
}

.bg-primary-light {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.delivery-checker {
    background: #f8f9fa;
    border-color: #e9ecef !important;
}

.product-highlights-grid i {
    color: var(--primary-color);
}

.combo-card {
    transition: 0.2s;
    cursor: pointer;
    background: #fff;
}

.combo-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.combo-card .form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.nav-tabs .nav-link {
    border: none;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: #eee;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
    background: transparent !important;
}

.rating-breakdown .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.rating-breakdown .progress-bar {
    border-radius: 10px;
}

.review-item {
    padding-top: 10px;
}

.qa-item .question {
    font-size: 15px;
}

.qa-item .answer {
    font-size: 14px;
    line-height: 1.6;
}

.vote-count {
    font-weight: 600;
}

.mobile-sticky-purchase-bar {
    animation: slideUpSticky 0.3s ease forwards;
}

@keyframes slideUpSticky {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Tab contents styling */
.tab-content {
    min-height: 250px;
}

a {
    text-decoration: none;
}

/* Mobile sticky bar visibility is controlled by JS (removes/adds d-none class on scroll) */
@media(max-width:767px) {
    .mobile-sticky-purchase-bar:not(.d-none) {
        display: flex !important;
    }
}


.variant-section {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}




.actions-section .text-center {
    margin-top: 0px !important;
}

.actions-section {
    margin-bottom: 15px !important;
}

/* ==========================================================
   PRODUCT DETAILS COMPONENT STYLES
   ========================================================== */
.gallery-container {
    position: relative;
    width: 100%;
}

.thumb-box {
    width: 70px;
    height: 70px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
    overflow: hidden;
}

.thumb-box.active {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-swatch {
    transition: 0.2s;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--primary-color) !important;
}

.bg-danger-light {
    background: rgba(220, 53, 69, 0.1);
}

.bg-success-light {
    background: rgba(40, 167, 69, 0.1);
}

.bg-primary-light {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.delivery-checker {
    background: #f8f9fa;
    border-color: #e9ecef !important;
}

.product-highlights-grid i {
    color: var(--primary-color);
}

.combo-card {
    transition: 0.2s;
    cursor: pointer;
    background: #fff;
}

.combo-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.combo-card .form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.nav-tabs .nav-link {
    border: none;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: #eee;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
    background: transparent !important;
}

.rating-breakdown .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.rating-breakdown .progress-bar {
    border-radius: 10px;
}

.review-item {
    padding-top: 10px;
}

.qa-item .question {
    font-size: 15px;
}

.qa-item .answer {
    font-size: 14px;
    line-height: 1.6;
}

.vote-count {
    font-weight: 600;
}

.mobile-sticky-purchase-bar {
    animation: slideUpSticky 0.3s ease forwards;
}

@keyframes slideUpSticky {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Tab contents styling */
.tab-content {
    min-height: 250px;
}

/* Mobile sticky bar visibility is controlled by JS (removes/adds d-none class on scroll) */
@media(max-width:767px) {
    .mobile-sticky-purchase-bar:not(.d-none) {
        display: flex !important;
    }
}

@media(max-width:992px) {
    .variant-section {
        display: flex;
        text-align: center;
        flex-wrap: wrap;
    }

    .section-margin {
        margin: 20px auto;
    }

    .about-img img {
        height: 100% !important;
        object-fit: cover;
        width: 100%;
        margin-bottom: 30px;
    }

    #about-para h2 {
        font-size: 18px !important;
    }

    #about-para p {
        font-size: 12px !important;
    }

    #about-card {
        margin-bottom: 20px;
    }

}


.about-img img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}

#about-card {
    max-height: 200px;
}

/* ============================================================
   SHOP PAGE – COMPLETE MOBILE & DESKTOP LAYOUT
   ============================================================ */

/* ---- Filter overlay (hidden by default, fixed on both screens) ---- */
.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---- Shop sidebar: always fixed drawer, off-screen by default ---- */
.shop-sidebar {
    position: fixed !important;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 100005 !important;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}
.shop-sidebar.active {
    left: 0 !important;
}

/* ---- Mobile-only header inside drawer ---- */
.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 2px solid #eee;
}
.mobile-sidebar-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}
.close-filter-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s;
}
.close-filter-btn:hover {
    background: #f0f0f0;
}

/* ---- Desktop: shop-layout = sidebar static left + products right ---- */
.shop-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.shop-sidebar-placeholder {
    width: 270px;
    flex-shrink: 0;
}
.shop-products-area {
    flex: 1;
    min-width: 0;
}

/* On desktop, show sidebar as static/sticky aligned with content */
@media (min-width: 992px) {
    .shop-sidebar {
        position: sticky !important;
        left: auto !important;
        top: 140px !important;
        width: 270px;
        height: auto;
        max-height: calc(100vh - 160px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
        border-radius: 8px;
        transition: none;
        z-index: 90 !important;
    }
    .mobile-sidebar-header {
        display: none; /* hide close button on desktop */
    }
    .mobile-filter-btn {
        display: none !important;
    }
    .filter-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    /* On desktop, sidebar is part of the flex layout, not fixed */
    .shop-layout {
        align-items: flex-start;
    }
}

/* ---- Mobile: full-width products, filter via button ---- */
@media (max-width: 991px) {
    /* layout becomes single column */
    .shop-layout {
        display: block;
    }
    .shop-sidebar-placeholder {
        display: none;
    }

    .shop-sort-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 15px;
    }

    /* Show filter toggle button */
    .mobile-filter-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 16px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 0;
        transition: background 0.2s;
    }
    .mobile-filter-btn:hover,
    .mobile-filter-btn:active {
        background: var(--secondary-color);
    }

    /* Compact product cards for 2-column grid */
    .shop-products-area .product-card {
        width: 100% !important;
        margin: 0 !important;
    }
    .shop-products-area .product-info.p-3 {
        padding: 8px !important;
    }
    .shop-products-area .product-info h4 {
        font-size: 12px !important;
        line-height: 1.3;
    }
    .shop-products-area .product-info .price {
        font-size: 12px !important;
    }
    .shop-products-area .product-image {
        min-height: 120px;
    }
    .shop-products-area .product-image img {
        width: 90% !important;
        object-fit: contain;
    }
}

/* ---- Touch tap to show hover-icons on mobile (all pages) ---- */
/* Icons already hidden by default via base CSS (opacity:0; visibility:hidden) */
/* On touch devices, add .touch-active class via JS on tap */
.product-card.touch-active .hover-icons,
.product-card.touch-active .overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ================================================================
   ✨ MODERN UNISHOP DESIGN SYSTEM OVERRIDES
   Colors: #0F5D71 primary | #000000 accent | #E7F4F7 card bg
   ================================================================ */

/* -------- SECTION HEADING REFRESH -------- */
.flash-top h2,
.heading h2,
.featured-top h2,
.seller-wrapper .flash-top h2,
.Latest-products-section .flash-top h2,
.feature-section .flash-top h2,
.categories-section .flash-top h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.flash-top h2 span,
.heading h2 span {
    color: var(--primary-color);
}

/* -------- FEATURED DEAL CARD REFRESH -------- */
.featured-bg {
    background: linear-gradient(135deg, #f0f9fb 0%, #e4f3f7 50%, #d8edf3 100%) !important;
    border: 1px solid var(--border-color);
    border-radius: 14px;
}

.featured-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(15,93,113,0.2);
}

.featured-card:hover .featured-img img {
    transform: scale(1.1);
}

/* -------- FEATURED DISCOUNT BADGE -------- */
.featured-card .discount {
    background: linear-gradient(135deg, #ff6b00, #ff9200, #ffb347);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    box-shadow: 0 2px 8px rgba(255,146,0,0.4);
    overflow: hidden;
}

.featured-card .discount::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shiny-sweep 2.5s ease-in-out infinite;
}

/* -------- SECTION FLASH BACK REFRESH -------- */
.flash-back {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(15,93,113,0.06);
}

/* -------- BEST SELLINGS CARD REFRESH -------- */
.Best-sellings-section .product-card {
    background: var(--card-bg) !important;
    border-radius: var(--card-radius) !important;
    border: 1px solid var(--border-color) !important;
    transition: var(--transition-smooth) !important;
}

.Best-sellings-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover) !important;
}

/* -------- SELLER CARD REFRESH -------- */
.seller-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 14px !important;
    transition: var(--transition-smooth) !important;
}

.seller-card:hover {
    box-shadow: 0 10px 30px rgba(15,93,113,0.15) !important;
    border-color: rgba(15,93,113,0.3) !important;
    transform: translateY(-4px);
}

/* -------- MOBILE SIDEBAR REFRESH -------- */
.mobile-sidebar {
    background: #ffffff;
    border-right: none;
    box-shadow: 6px 0 30px rgba(15, 93, 113, 0.12);
}

.mobile-top {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-top img {
    max-height: 38px;
    filter: brightness(0) invert(1);
}

.mobile-top .close-menu {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: var(--transition-fast);
}

.mobile-top .close-menu:hover {
    background: rgba(255,255,255,0.3);
}

.mobile-menu a {
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f0f4f6;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
    padding-left: 26px;
}

.mobile-item .mobile-toggle {
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-dropdown a {
    background: var(--surface-light);
    padding-left: 32px !important;
    font-size: 14px;
    color: var(--text-secondary);
}

.mobile-dropdown a:hover {
    background: var(--card-bg) !important;
    color: var(--primary-color) !important;
    padding-left: 40px !important;
}

/* -------- MOBILE TOP HEADER -------- */
.mobile-menu-btn i {
    font-size: 20px;
    color: var(--primary-color);
}

/* -------- MAIN HEADER REFRESH -------- */
.main-header-section {
    background: #fff;
    box-shadow: 0 1px 10px rgba(15,93,113,0.06);
}

.search-box input {
    border-radius: 8px 0 0 8px;
    border: 1.5px solid #d0e8ef;
    border-right: none;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-box button {
    border-radius: 0 8px 8px 0;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* -------- ICON BOX REFRESH -------- */
.icon-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.icon-box:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(15,93,113,0.28);
}

.icon-box:hover i {
    color: #fff !important;
}

.icon-box i {
    color: var(--primary-color) !important;
    transition: color 0.2s;
}

.badge {
    background: var(--primary-color) !important;
}

/* -------- CART TOTAL PRICE COLOR -------- */
.cart-total span {
    color: var(--primary-color) !important;
}

/* -------- DROPDOWN MENU HOVER -------- */
.dropdown-menu div:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

/* -------- NAV DROPDOWN LINK HOVER -------- */
.dropdown a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
    padding-left: 20px;
}

/* -------- CATEGORY SIDEBAR REFRESH -------- */
.category-sidebar {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(15,93,113,0.07);
    border: 1px solid var(--border-color);
}

.category-item:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

/* -------- LATEST PRODUCTS SECTION -------- */
.Latest-products-section .product-card-up {
    background: linear-gradient(135deg, #f0f9fb 0%, #e4f3f7 100%) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 14px;
}

/* -------- HERO SLIDER REFRESH -------- */
.main-slider {
    border-radius: 14px;
    overflow: hidden;
}

.slide-content h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.slide-content button {
    background: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.slide-content button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,93,113,0.3);
}

/* -------- SMALL BANNER REFRESH -------- */
.small-banner {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.small-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(15,93,113,0.2);
}

/* -------- FLASH SALE SECTION HEADER BADGE -------- */
.flash-top .timer, .flash-top .section-timer {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 13px;
}

/* -------- FOOTER REFRESH -------- */
.footer-logo img {
    max-height: 44px;
    filter: brightness(0) invert(1);
}

.footer-container {
    background: linear-gradient(135deg, #0d2f39 0%, var(--primary-dark) 100%);
}

/* -------- MOBILE APP-LIKE CARD ENHANCEMENTS -------- */
@media (max-width: 767px) {
    /* Give product cards app-like feel with larger touch targets */
    .product-card {
        border-radius: 12px !important;
        box-shadow: 0 2px 12px rgba(15,93,113,0.10) !important;
        margin-bottom: 12px;
    }

    .product-info {
        padding: 10px 12px 12px !important;
    }

    .product-info h4 {
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .price {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .discount, .badge-discount {
        font-size: 10px !important;
        padding: 3px 7px !important;
    }

    /* App-like navigation bottom feel */
    .main-header-section {
        position: sticky;
        top: 0;
        z-index: 9998;
        box-shadow: 0 2px 12px rgba(15,93,113,0.10);
    }

    /* Rounded search for mobile */
    .search-box input {
        border-radius: 24px 0 0 24px;
        font-size: 14px;
    }

    .search-box button {
        border-radius: 0 24px 24px 0;
    }

    /* Better section spacing on mobile */
    .section-padding {
        padding: 14px 12px;
        margin-top: 14px;
    }

    /* 2-column grid for featured cards on mobile */
    .featured-card {
        flex-direction: row !important;
        text-align: left !important;
        padding: 12px !important;
        gap: 12px;
    }

    .featured-img {
        width: 64px !important;
        height: 64px !important;
        flex-shrink: 0;
    }

    /* Mobile flash wrapper cards */
    .flash-wrapper .product-card {
        border-radius: 12px !important;
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color) !important;
    }
}

/* -------- SMOOTH PAGE TRANSITIONS -------- */
body {
    animation: pageSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------- SECTION REVEAL ANIMATION -------- */
.section-padding,
.flash-back,
.featured-wrapper,
.seller-wrapper,
.Latest-products-section,
.Best-sellings-section {
    animation: sectionFadeUp 0.5s ease-out both;
}

@keyframes sectionFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------- SMOOTH SLIDER ARROWS -------- */
.featured-slider-area .arrow,
.product-slider-area .arrow {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* -------- LOGO CONSISTENT STYLING -------- */
.logo a img,
.main-header .logo img {
    max-height: 46px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
}

.logo a img:hover {
    opacity: 0.88;
}

/* -------- SCROLLBAR STYLING -------- */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--surface-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(15, 93, 113, 0.35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ================================================================
   SMOOTH TRANSITIONS — GLOBAL ENHANCEMENTS
   ================================================================ */

/* --- Page fade-in on load (gentle) --- */
@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
body {
    animation: pageFadeIn 0.4s ease both;
}

/* --- Reusable slide-up keyframe (used by slide content stagger) --- */
@keyframes sectionSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Smooth all anchor / button transitions --- */
a, button, input, select, textarea {
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Nav links smooth underline --- */
.nav-menu a,
.mobile-menu a,
.menu-item > a {
    position: relative;
    transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu a::after,
.menu-item > a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
.nav-menu a:hover::after,
.menu-item > a:hover::after {
    width: 100%;
}

/* --- Header sticky smooth shadow --- */
.main-header-section {
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header-section.active {
    box-shadow: 0 4px 24px rgba(15,93,113,0.14);
}

/* --- Owl Carousel smooth slide --- */
.owl-stage {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.owl-carousel .owl-item {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Owl nav arrows smooth (no layout-shifting transforms) --- */
.owl-nav button,
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    transition: background 0.25s ease,
                color      0.25s ease,
                box-shadow 0.25s ease !important;
    transform: none !important;
    will-change: background, color;
}
.owl-nav button:hover,
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(15,93,113,0.22) !important;
}

/* --- Category sidebar smooth open --- */
.category-sidebar {
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* --- Mobile sidebar smooth slide --- */
.mobile-sidebar {
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* --- Cart dropdown smooth --- */
.cart-dropdown {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.cart-wrapper:hover .cart-dropdown {
    transition-delay: 0s !important;
}

/* --- Dropdown menus smooth --- */
.dropdown,
.dropdown-menu {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* --- Quick view modal smooth --- */
.quick-view-modal {
    transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.quick-view-modal .quick-view-content,
.quick-view-modal > div {
    transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* --- Product image zoom smooth --- */
.product-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
}

/* --- Buttons bounce on hover --- */
.btn,
.buy-btn,
.cart-btn,
.checkout-btn,
.slide-content button,
.view-all-btn {
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                color      0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn:hover,
.buy-btn:hover,
.cart-btn:hover,
.checkout-btn:hover,
.slide-content button:hover,
.view-all-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(15, 93, 113, 0.28);
}
/* Override: Owl Carousel nav buttons must NOT get the translateY bounce */
.owl-nav .btn:hover,
.owl-nav button:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(15,93,113,0.22) !important;
}

/* --- Countdown timer digits smooth --- */
#days, #hours, #minutes, #seconds {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Category slider item smooth --- */
.categories-slider .item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.categories-slider .item:hover {
    transform: translateY(-4px);
}

/* --- Featured brand smooth --- */
.brand-img {
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                filter    0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-img:hover {
    transform: scale(1.08);
    filter: brightness(1.08);
}

/* --- Slide content staggered entrance --- */
.slide.active .slide-content h1 {
    animation: sectionSlideUp 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .slide-content p {
    animation: sectionSlideUp 0.6s 0.22s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .slide-content button,
.slide.active .slide-content a {
    animation: sectionSlideUp 0.6s 0.34s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .slide-image,
.slide.active .slide-img {
    animation: sectionSlideUp 0.7s 0.15s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* --- Scroll-to-top button smooth --- */
#scrollTop {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   0.28s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
#scrollTop:hover {
    transform: translateY(-4px) scale(1.1);
}

/* --- Input focus smooth glow --- */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 93, 113, 0.18);
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image lazy load fade-in --- */
img {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
img[loading="lazy"] {
    opacity: 0;
}
img[loading="lazy"].loaded,
img:not([loading]) {
    opacity: 1;
}

/* ================================================================
   REDESIGNED FOOTER — CLEAN MODERN LAYOUT
   ================================================================ */

/* ---- Newsletter Bar ---- */
.footer-newsletter-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a3d4a 100%);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fnl-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.fnl-text i {
    font-size: 22px;
    color: #f7c948;
    flex-shrink: 0;
}

.fnl-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.fnl-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 14px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    min-width: 0;
}

.fnl-form input::placeholder { color: rgba(255,255,255,0.55); }

.fnl-form button {
    border: none;
    background: #f7c948;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 22px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.fnl-form button:hover {
    background: #ffda6a;
    transform: none;
}

/* ---- Main Footer Body ---- */
.footer-main {
    background: #0f2e38;
    padding: 52px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* ---- Brand Column ---- */
.footer-logo-wrap,
.logo2-wrap {
    margin-bottom: 14px;
}

.footer-logo-wrap img,
.logo2-wrap img {
    max-height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s, transform 0.22s, border-color 0.25s;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-app-links .app-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-app-links .app-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-app-links .app-badges img {
    max-height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.22s, opacity 0.22s;
    opacity: 0.85;
}

.footer-app-links .app-badges img:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* ---- Link Columns ---- */
.footer-col-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 9px;
}

.footer-link-list li a {
    color: rgba(255,255,255,0.58);
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.22s, gap 0.22s;
}

.footer-link-list li a i {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    transition: color 0.22s;
    flex-shrink: 0;
}

.footer-link-list li a:hover {
    color: #fff;
    gap: 10px;
}

.footer-link-list li a:hover i {
    color: var(--primary-color);
}

/* ---- Contact Column ---- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.fci {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7c948;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-list li small {
    color: rgba(255,255,255,0.38);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-contact-list li a,
.footer-contact-list li span {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.22s;
}

.footer-contact-list li a:hover { color: #fff; }

/* ---- Bottom Bar ---- */
.footer-bottom {
    background: #0a1f27;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    margin: 0;
}

.footer-copy strong { color: rgba(255,255,255,0.7); }

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payment-icons img {
    height: 26px;
    width: auto;
    border-radius: 4px;
    background: #fff;
    padding: 2px 4px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-payment-icons img:hover { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .fnl-form { min-width: 100%; width: 100%; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Coupon Code Input (Product Details) ---- */
.coupon-section {
    background: linear-gradient(135deg, #f0faf8 0%, #e8f4fd 100%);
    border: 2px dashed rgba(15, 93, 113, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.coupon-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-section-title i {
    color: var(--primary-color);
    font-size: 16px;
}

.coupon-input-row {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(15,93,113,0.2);
    background: #fff;
    max-width: 380px;
}

.coupon-input-row input {
    flex: 1;
    border: none;
    outline: none;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: transparent;
    min-width: 0;
}

.coupon-input-row input::placeholder {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #aaa;
}

.coupon-apply-btn {
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.22s;
}

.coupon-apply-btn:hover { background: #0a3d4a; }

.coupon-msg {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

.coupon-msg.success { color: #16a34a; display: block; }
.coupon-msg.error   { color: #dc2626; display: block; }

.coupon-available-badges {
    margin-top: 10px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.coupon-badge {
    font-size: 11px;
    font-weight: 700;
    background: #fff;
    border: 1.5px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.coupon-badge:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================================
   PRODUCT CARD — AMAZON / FLIPKART STYLE PRICE BLOCK
   Used by: components/product-card.blade.php (all pages)
   ============================================================ */

/* Price block wrapper */
.pc-price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

/* Main selling price */
.pc-final-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* MRP with line-through */
.pc-mrp-price {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

/* "X% OFF" green pill */
.pc-discount-pct {
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* "Wholesale" teal pill (B2B) */
.pc-wholesale-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0f766e;
    background: #ccfbf1;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Absolute corner badge on the image ("X% OFF") */
.pc-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9200 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.35);
    letter-spacing: 0.03em;
}