/* ~~~~~ RESET STYLES ~~~~~ */
:root {
    --primary-color: #4f46e5;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --font-primary: "Lato", sans-serif;
    --font-display: 'Playfair Display', serif;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

a:link,
a:visited {
    text-decoration: none;
    color: inherit;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}

.overflow {
    overflow: hidden !important;
}

.contentArea {
    max-width: 1600px;
    margin: 0 auto;
}

img {
    display: block;
}

/* ~~~~~ HEADER STYLES ~~~~~ */
.header {
    height: auto;
    width: 100%;
    background-color: #fff;
}

.header-home {
    z-index: 1;
    position: fixed;
    box-shadow: 0px 0px 5px rgb(194, 194, 194);
}

.mdi:before,
.mdi-set {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: var(--gstrmdiBeforeFontsize);
    /*inherit; */
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mdi-heart-outline::before {
    content: "\F02D5";
}

.mdi-cart::before {
    content: "\F0110";
}

/* top header  */

.topHeader {
    background-color: #ff8943;
    /* orange color */
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .topHeader .navMenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 25px;
    }

    .topHeader .navMenu li {
        position: relative;
    }

        .topHeader .navMenu li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 16px;
            background-color: rgba(0, 0, 0, 0.2);
        }

    .topHeader .navMenu a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
        font-size: 1.4rem;
        transition: color 0.3s;
    }

        .topHeader .navMenu a:hover {
            color: #fff;
        }

.bottomHeader {
    background-color: #fff2e8;
    padding: 15px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .bottomHeader ul:not(.submenu, .more-submenu) {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 40px;
        margin: 0;
        padding: 0;
    }

    .bottomHeader li {
        position: relative;
    }

        /* .bottomHeader li:hover {
  transform: translateY(-2px);
} */

        .bottomHeader li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -18px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: rgba(0, 0, 0, 0.15);
        }

        .bottomHeader li a {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

    .bottomHeader img {
        width: 22px;
        height: 22px;
    }

    .bottomHeader span {
        font-size: 1.6rem;
        font-weight: 600;
        color: #222;
    }

.searchBar {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #c3c3c3;
    border-radius: 6px;
    padding: 8px 12px;
    background: #fff;
}

    .searchBar .searchIcon {
        font-size: 18px;
        color: #555;
        margin-right: 8px;
    }

    .searchBar input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 14px;
        color: #333;
        height: 25px;
    }

        .searchBar input::placeholder {
            color: #888;
        }

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

    .location .locationIcon {
        font-size: 18px;
    }

    .location .locationText {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .location .city {
        font-size: 12px;
        color: #333;
        font-weight: 600;
    }

    .location .dropdown {
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 500;
        cursor: pointer;
    }

        .location .dropdown span {
            font-size: 16px;
            color: #222;
            font-weight: 600;
        }

    .location .arrow {
        font-size: 10px;
        color: #555;
    }

.header .wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    padding: 10px 0;
}

.header .container {
    padding: 0 5%;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: auto 3fr 10fr 1fr 1fr auto auto;
    align-items: center;
    position: relative;
}

.header.blogHeader .container {
    grid-template-columns: auto 1fr;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--dark-gray);
    justify-self: center;
}

.add-cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #4f46e5;
    justify-self: center;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}

    .cart-badge.visible {
        transform: scale(1);
    }

/* LOGO */
.header .container .imageContainer {
    width: 200px;
    height: 100%;
    /* display: grid; */
    display: flex;
    align-items: center;
    gap: 8px;
    place-content: center;
}

.CompanyTitle {
    white-space: nowrap;
    font-size: 14px;
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

@media (max-width: 1280px) {
    .header .container .imageContainer {
        width: 170px;
    }
}

@media (max-width: 600px) {
    .header .container .imageContainer {
        width: 150px;
    }
}

.header .container .imageContainer .logo {
    width: 100%;
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

/* SEARCH */
.header .container .searchContainer {
    justify-self: end;
    align-self: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 2px;
    position: relative;
    display: grid;
    place-content: center;
}

@media (max-width: 420px) {
    .header .container .searchContainer {
        margin-right: 15px;
    }
}

.header .container .searchContainer .iconContainer .searchIcon {
    width: 15px;
    height: 15px;
}

.header .container .searchContainer.close .iconContainer .searchIcon {
    display: none;
}

.header .container .searchContainer.close .iconContainer {
    width: 19px;
    height: 3px;
}

    .header .container .searchContainer.close .iconContainer::before,
    .header .container .searchContainer.close .iconContainer::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 3px;
        background-color: #ea4335;
        border-radius: 1px;
        transition: all 0.6s ease-out;
    }

    .header .container .searchContainer.close .iconContainer::before {
        transform: rotate(45deg);
    }

    .header .container .searchContainer.close .iconContainer::after {
        transform: rotate(-45deg);
    }

/* NAVIGATION */
.header .container .navList {
    align-self: center;
    margin: 0 50px;
    transition: all 0.3s ease-in-out;
}

.header.blogHeader .container .navList {
    margin: 0;
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .header.blogHeader .container .navList .listHeading {
        position: relative;
        font-family: "Josefin Sans", sans-serif;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
    }

        .header.blogHeader .container .navList .listHeading::before {
            content: "";
            position: absolute;
            left: -22px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background-color: rgb(0 0 0 / 37%);
        }

        .header.blogHeader .container .navList .listHeading span {
            display: block;
        }

@media (max-width: 1280px) {
    .header .container .navList {
        margin: 0 30px;
    }
}

@media (max-width: 1140px) {
    .header .container .navList {
        all: unset;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000;
        width: 0;
        height: 100vh;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: width 0.5s ease;
    }
}

@media (max-width: 1140px) {
    .header .container .navList.active {
        opacity: 1;
        visibility: visible;
        width: 45%;
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .header .container .navList.active {
        width: 50%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .header .container .navList.active {
        width: 60%;
    }
}

@media (max-width: 450px) {
    .header .container .navList.active {
        width: 80%;
    }
}

@media (max-width: 420px) {
    .header .container .navList.active {
        width: 100%;
    }
}

.navListImageContainer {
    display: none;
}

@media (max-width: 1140px) {
    .navListImageContainer {
        display: block;
        width: 170px;
        height: 100px;
        display: grid;
        place-content: center;
        padding-left: 40px;
        transform: translateX(-150px);
        transition: transform 1s;
    }

        .navListImageContainer img {
            width: 100%;
            height: auto;
        }

        .navListImageContainer.active {
            transform: translateX(0px);
        }
}

.header .container .navList .list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.header.blogHeader .container .navList .list {
    justify-content: flex-end;
    gap: 50px;
}

@media (max-width: 1140px) {
    .header .container .navList .list {
        display: block;
    }
}

.header .container .navList .list .items {
    position: relative;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}

    .header .container .navList .list .items:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -22px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background-color: rgb(0 0 0 / 37%);
    }

@media (max-width: 1140px) {
    .header .container .navList .list .items {
        color: #fff;
        padding: 20px 40px;
        text-indent: -100%;
        white-space: nowrap;
    }
}

@media (max-width: 1140px) {
    .header .container .navList .list .items:not(:last-child) {
        border-bottom: 1px solid #282828;
    }
}

.navButtonContainer {
    display: none;
}

@media (max-width: 420px) {
    .navButtonContainer {
        display: block;
        padding: 0 40px;
        margin-top: 30px;
    }

        .navButtonContainer .loginBtn {
            width: 100%;
            padding: 10px 0;
            background-color: #fff;
            color: #000;
            border: none;
            border-radius: 4px;
            font-size: 1.6rem;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: 500;
        }
}

/* LOGIN BUTTON */
.header .container .buttonContainer {
    align-items: center;
}

@media (max-width: 1140px) {
    .header .container .buttonContainer {
        margin: 0 20px;
    }
}

@media (max-width: 600px) {
    .header .container .buttonContainer {
        margin: 0 15px;
    }
}

@media (max-width: 420px) {
    .header .container .buttonContainer {
        display: none;
    }
}

.header .container .buttonContainer .loginBtn {
    padding: 10px 30px;
    background-color: #0e1422;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 1280px) {
    .header .container .buttonContainer .loginBtn {
        padding: 10px 25px;
    }
}

@media (max-width: 600px) {
    .header .container .buttonContainer .loginBtn {
        padding: 8px 20px;
    }
}

.header .container .buttonContainer .loginBtn:hover {
    background-color: #1a2133;
}

/* ~~~~~ HAMBURGER MENU ~~~~~ */
.hamburger {
    display: none;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 1140px) {
    .hamburger {
        display: grid;
        place-content: center;
    }
}

.hamburger .open {
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    transition: all 0.6s ease-out;
    position: relative;
    z-index: 2;
}

    .hamburger .open::after,
    .hamburger .open::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #000;
        border-radius: 1px;
        transition: all 0.6s ease-out;
    }

    .hamburger .open::before {
        transform: translateY(-7px);
    }

    .hamburger .open::after {
        transform: translateY(7px);
    }

.hamburger.close .open {
    background-color: transparent;
    box-shadow: none;
}

    .hamburger.close .open::after,
    .hamburger.close .open::before {
        background-color: #ea4335;
        width: 22px;
        height: 3px;
    }

    .hamburger.close .open::before {
        transform: rotate(45deg);
    }

    .hamburger.close .open::after {
        transform: rotate(-45deg);
    }

/* searchPannel */
.searchPannel {
    width: 470px;
    padding: 24px;
    background-color: #fff;
    border-radius: 12px;
    position: absolute;
    top: 64px;
    left: 50%;
    border: 1px solid #ff67013d;
    box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100px) translateX(-50%);
    z-index: -1;
    transition: 1s;
}

@media (max-width: 1140px) {
    .searchPannel {
        transform: translateY(-100px);
        left: calc(100% - 300px);
    }
}

@media (max-width: 650px) {
    .searchPannel {
        width: 400px;
        left: calc(100% - 250px);
    }
}

@media (max-width: 450px) {
    .searchPannel {
        width: 350px;
        left: calc(100% - 200px);
    }
}

@media (max-width: 420px) {
    .searchPannel {
        left: calc(100% - 300px);
    }
}

@media (max-width: 380px) {
    .searchPannel {
        width: 340px;
        left: calc(100% - 290px);
    }
}

@media (max-width: 354px) {
    .searchPannel {
        width: 335px;
        left: calc(100% - 285px);
    }
}

@media (max-width: 350px) {
    .searchPannel {
        width: 320px;
        left: calc(100% - 270px);
    }
}

@media (max-width: 340px) {
    .searchPannel {
        width: 310px;
        left: calc(100% - 260px);
    }
}

@media (max-width: 330px) {
    .searchPannel {
        width: 300px;
        left: calc(100% - 250px);
    }
}

.searchPannel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
    z-index: 999;
}

@media (max-width: 1140px) {
    .searchPannel.active {
        transform: translateY(0);
    }
}

.searchPannel .searchForm {
    position: relative;
}

    .searchPannel .searchForm .searchInput {
        all: unset;
        box-sizing: border-box;
        width: 100%;
        height: 35px;
        padding: 0 40px 0 20px;
        background-color: #e8f4ff8a;
        font-size: 1.6rem;
        color: #7f7f7f;
        border: 1px solid #ff67016b;
        border-radius: 30px;
    }

        .searchPannel .searchForm .searchInput &::placeholder {
            color: #b8b8b8;
            font-size: 1.4rem;
            font-weight: 400;
        }

.SearchBtn {
    all: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 35px;
    height: 35px;
    background-color: #ff822e;
    border-radius: 50%;
    display: grid;
    place-content: center;
}

    .SearchBtn img {
        width: 15px;
        height: 15px;
    }

/* ~ ~ ~ ~ Footer ~ ~ ~ ~ */
.footer {
    margin-top: auto;
    position: relative;
    overflow-x: clip;
    background-color: #002d55;
    color: #fff;
    z-index: 0;
}

    .footer .wrapper {
        padding: 50px 0;
    }

@media (max-width: 768px) {
    .footer .wrapper {
        padding: 30px 0;
    }
}

.footer .container {
    padding: 0 5%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

@media (max-width: 380px) {
    .footer-logo {
        width: 130px;
    }
}

.footer-brand p {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #fff;
}

.footer-brand .icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

    .footer-socials .social-icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .footer-socials a:hover .social-icon {
        transform: scale(1.1);
    }

/* Footer Links */
.footer-links h4 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: #ddd;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: #f7941d;
            }

/* Map Styling */
.footer-map {
    display: none;
}

.footer-map img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: repeat(2, auto);
        gap: 20px;
    }

    .footer-map img {
        max-width: 100%;
    }
}

/* Hero banner */

.heroBanner {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url("../images/hero-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

    .heroBanner .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        /* dark overlay for text contrast */
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .heroBanner .wrapper {
        padding: 150px 0 50px;
        display: grid;
        justify-content: center;
    }

    .heroBanner .heroContent {
        text-align: center;
        color: #fff;
        max-width: 900px;
        padding: 0 20px;
    }

    .heroBanner .heroTitle {
        font-family: "Josefin Sans", sans-serif;
        font-size: 5rem;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .heroBanner .heroSubtitle {
        font-family: "Lato", sans-serif;
        font-size: 1.8rem;
        line-height: 1.6;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .heroBanner .heroTitle {
        font-size: 3.5rem;
    }

    .heroBanner .heroSubtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .heroBanner .heroTitle {
        font-size: 2.8rem;
    }

    .heroBanner .heroSubtitle {
        font-size: 1.4rem;
    }
}

.Logo {
    height: 25px;
    width: 25px;
    margin-top: 4px;
    border-radius: 50%;
}

.dvUserName {
    display: inline-block;
    vertical-align: top;
    color: var(--gstrWSColor);
    font-size: 15px;
    font-weight: 400;
    padding: 5px;
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-menu:hover > .profile-submenu {
    display: block;
}

.profile-submenu {
    border-radius: 3px;
    display: none;
    position: absolute;
    top: 75%;
    right: 20px;
    list-style: none;
    background: white;
    padding: 3px 0;
    min-width: 130px;
    box-shadow: 0px 0px 5px gray;
    z-index: 1;
    font-size: 1.5rem;
}

    .profile-submenu span {
        padding: 3px 10px;
        width: 85%;
        display: block;
    }

        .profile-submenu span:hover {
            background-color: rgb(235, 234, 234);
        }

.csUserSetting {
    display: none;
    align-items: center;
}

.csUserAccount {
    display: inline-block;
    vertical-align: top;
}

    .csUserAccount::before {
        color: var(--gstrUserAcc);
        font-size: 23pt;
        margin-left: 7px;
        margin-top: 4px;
    }

.dvUserName {
    display: inline-block;
    vertical-align: top;
    color: var(--gstrWSColor);
    font-size: 15px;
    font-weight: 400;
    padding: 5px;
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dvSort {
    padding: 5px 10px;
    background-color: #212121;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.7rem;
    float: right;
    margin-top: 80px;
    margin-right: 70px;
}

.dvFilter {
    padding: 5px 20px;
    background-color: #212121;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.7rem;
    float: right;
    margin-top: 80px;
    margin-right: 20px;
}

.FilterBtn {
    background-color: #212121;
    color: #fff;
    border: none;
    font-size: 1.9rem;
}

button {
    cursor: pointer;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-family: var(--font-display);
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        color: var(--dark-gray);
    }

    .section-header p {
        max-width: 600px;
        margin: 0 auto;
        color: var(--medium-gray);
    }

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0px -5px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 -6px -10px -6px rgba(0, 0, 0, 0.1);
    }

.card-image {
    position: relative;
}

    .card-image img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        display: block;
    }

.card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
}

.card-content {
    padding: 1.5rem;
}

    .card-content h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--dark-gray);
        margin-bottom: 0.5rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
    }

    .card-content p {
        color: var(--medium-gray);
        margin-bottom: 1rem;
    }

    .card-content .add-to-cart-btn {
        width: 47%;
        /* background-color: var(--primary-color); */
        background-color: #ffffff;
        /* color: var(--white); */
        font-weight: 600;
        padding: 0.45rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: #acacac 1px solid;
        font-size: 1.3rem;
        color: #3e34ff;
    }

        .card-content .add-to-cart-btn:hover {
            background-color: #eceaff;
        }

        .card-content .add-to-cart-btn:disabled {
            background-color: #444444;
            cursor: not-allowed;
        }

    .card-content .add-to-wishlist-btn {
        width: 47%;
        /* background-color: var(--primary-color); */
        background-color: #ffffff;
        /* color: var(--white); */
        font-weight: 600;
        padding: 0.45rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: #acacac 1px solid;
        font-size: 1.3rem;
        color: red;
    }

        .card-content .add-to-wishlist-btn:hover {
            background-color: #ffeaea;
        }

        .card-content .add-to-wishlist-btn:disabled {
            background-color: #444444;
            cursor: not-allowed;
        }

    .card-content a {
        color: var(--medium-gray);
        margin-bottom: 1rem;
    }

        .card-content a:hover {
            color: #4338ca;
            text-decoration: underline;
        }


.gallery-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modal & Cart Panel Styles */
.overlay-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

    .overlay-backdrop.visible {
        opacity: 1;
        pointer-events: auto;
    }

.modal-content {
    position: fixed;
    z-index: 2000;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 450px;
    padding: 3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

    .modal-content.visible {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

.modal-header {
    display: grid;
    grid-template-columns: auto 0;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--medium-gray);
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

    .modal-tabs button {
        flex: 1;
        padding: 0.75rem;
        font-size: 1.7rem;
        font-weight: 600;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--medium-gray);
        border-bottom: 3px solid transparent;
        transition: color 0.3s, border-color 0.3s;
    }

        .modal-tabs button.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .form-group input {
        width: 100%;
        padding: 1.2rem;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1.7rem;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
        }

.modal-content form .primary-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 1.7rem;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    background-color: white;
}

    .cart-panel.visible {
        transform: translateX(0);
        pointer-events: auto;
    }

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-header h2 {
        font-family: var(--font-display);
    }

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--medium-gray);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .cart-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
    }

.cart-item-details {
    flex-grow: 1;
}

    .cart-item-details h4 {
        font-size: 1.7rem;
        font-weight: 600;
    }

    .cart-item-details p {
        color: var(--medium-gray);
        font-size: 0.9rem;
    }

.remove-from-cart-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
}

.cart-empty-message {
    text-align: center;
    color: var(--medium-gray);
    padding-top: 4rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 2rem;
}

.checkout-btn {
    width: 90%;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #22c55e;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

.clsDisplayNone {
    display: none;
}

.nav {
    list-style: none;
    display: flex;
    gap: 5px;
}

    .nav li {
        position: relative;
    }

    .nav a {
        text-decoration: none;
        padding: 8p 12px;
        display: block;
    }

.submenu {
    border-radius: 5px;
    display: none;
    position: absolute;
    list-style: none;
    background: white;
    min-width: 150px;
    box-shadow: 0px 0px 5px gray;
    z-index: 11;
}

    .submenu li a {
        padding: 6px 12px;
        white-space: nowrap;
    }

.sub-menu-item:hover {
    font-weight: 600;
}

.menu-item {
    z-index: 11;
}

    .menu-item:hover > .submenu {
        display: block;
    }

.sub-menu-item:hover > .submenu {
    display: block;
}

.menu-item:hover > .more-submenu {
    display: block;
}

.sub-menu-item:hover > .more-submenu {
    display: block;
}

/* li:hover {
  background-color: rgb(235, 234, 234);
} */

.more-submenu {
    border-radius: 3px;
    display: none;
    position: absolute;
    top: -3px;
    left: 100.5%;
    list-style: none;
    background: white;
    padding: 3px 0;
    min-width: 150px;
    box-shadow: 0px 0px 5px gray;
    z-index: 111;
}

/* Filter Class */
.dvFilterPanel {
    padding: 5px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.3rem;
    float: right;
    margin-top: 120px;
    margin-right: 125px;
}

.filter-panel {
    width: 250px;
    border: 1px solid #ddd;
    position: absolute;
    z-index: 1;
    background-color: white;
    box-shadow: 0px 1px 5px gray;
    border: none;
}

.filter-section {
    border-bottom: 1px solid #eee;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    cursor: pointer;
    font-weight: bold;
}

    .filter-header:hover {
        background-color: #f9f9f9;
    }

.filter-content {
    padding: 10px;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.filter-section.active .filter-content {
    display: block;
}

.toggle-icon {
    font-weight: bold;
    font-size: 18px;
}

input[type="range"] {
    width: 100%;
}

input[type="checkbox"] {
    margin-right: 5px;
}

.style-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.search-box {
    position: relative;
    margin-top: 5px;
}

    .search-box input {
        width: 85%;
        padding: 6px 30px 6px 8px;
    }

    .search-box::after {
        content: '🔍';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.show-more {
    color: blue;
    cursor: pointer;
    margin-top: 8px;
    font-size: 14px;
}

.orientation-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .orientation-icons div {
        width: 45px;
        height: 45px;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ccc;
    }

.login-seller-link {
    display: block;
    /* Make it a block element for spacing */
    text-align: center;
    /* Align to the right */
    margin-top: 5px;
    /* Adjust to place it closer to the input */
    font-size: 1.5rem;
    color: #ff0000;
    /* Indigo color for the link */
    text-decoration: none;
    /* No underline by default */
    transition: color 0.2s ease;
}

    .login-seller-link:hover {
        color: #818181;
        /* Darker indigo on hover */
        text-decoration: underline;
        /* Underline on hover */
    }

.locationInput {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: #000000a6;
    z-index: 11;
}

.locContainer {
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
}

.locHeader {
    padding: 10px 20px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
}

.locMain {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0px 20px 10px 20px;
    align-items: center;
}

    .locMain input {
        height: 35px;
        border-radius: 10px;
        border: 1px solid;
        padding: 10px;
    }

    .locMain button {
        height: 30px;
        background-color: #ff8943;
        border-radius: 18px;
        padding: 5px;
        border: 1px solid;
    }

.pincode-section {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    align-items: center;
}

.locateMe-section {
    width: 100%;
    display: grid;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

    .primary-btn:hover {
        background-color: #4338ca;
    }

.error-message {
    color: #ef4444; /* Red for errors */
    background-color: #fef2f2; /* Light red background */
    border: 1px solid #fca5a5; /* Red border */
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    display: none; /* Hidden by default */
}

/* carousal image */
/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  } */

/* body {
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } */

.carousel-container {
    position: relative;
    /* width: 80%;
    max-width: 900px; */
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    align-items: center;
    justify-content: center;
    min-width: 100%;
}

.carousel-item {
    display: flex;
    align-items: center;
    color: white;
    border-radius: 12px;
    height: 360px;
    background-size: cover;
    min-width: 100%;
}

/* .carousel-ite   img {
    width: 1027px;
    height: auto;
    border-radius: 10px;
    margin-right: 30px;
  }
   */
/* .carousel-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .carousel-text h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .carousel-text p {
    color: #f0f0f0;
    font-size: 1rem;
  } */

/* Navigation buttons */
button.prev, button.next {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    background: rgba(255, 255, 255, 0.7);
    color: #0078ff;
    border: none;
    border-radius: 12%;
    width: 25px;
    opacity: 0.6;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: 1s;
    z-index: 10;
}

    button.prev:hover, button.next:hover {
        background: white;
        opacity: 1;
    }

button.prev {
    left: -5px;
}

button.next {
    right: -5px;
}

/* Dots / Indicators */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

    .dot.active {
        background-color: white;
        transform: scale(1.3);
    }

.categoryHeader {
    /* background-color: #fff2e8;
    padding: 15px 60px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
}

    .categoryHeader ul:not(.submenu, .more-submenu) {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 15px;
        /* gap: 40px;*/
        margin: 0;
        padding: 0;
    }

    .categoryHeader li {
        position: relative;
    }

        /* .categoryHeader li:hover {
    transform: translateY(-2px);
  } */

        .categoryHeader li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -18px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: rgba(0, 0, 0, 0.15);
        }

        .categoryHeader li a {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

    .categoryHeader img {
        width: 22px;
        height: 22px;
    }

    .categoryHeader span {
        font-size: 1.4rem;
        font-weight: 600;
        color: #222;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /* width: 40px; */
    }
