﻿body {
    margin: 0;
    padding: 0;
}
body,html{
    overflow-x:hidden;
    width:100%;
}
/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Arial';
    src: url('../Fonts/ARIAL.TTF') format('truetype');
}

body {
    font-family: Arial, sans-serif;
}

/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/* Logo and Main Icons */
.logo img {
    max-width: 100px;
}

.icons a {
    color: #000;
    margin-left: 15px;
    font-size: 20px;
}

.burger {
    display: none;
    cursor: pointer;
}

/* Main Navigation */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

    .nav-links > li {
        margin: 0 15px;
    }

    .nav-links a {
        text-decoration: none;
        color: #000;
        padding: 8px;
        transition: color 0.3s ease-in-out;
    }

        .nav-links a:hover {
            color: wheat;
        }

/* Dropdown Menu Styling */
.shop-dropdown {
    position: relative;
}

    .shop-dropdown:hover .dropdown {
        display: flex;
    }

/* Dropdown Content */
.dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    width: 100%; /* Full-width in mobile view */
    flex-wrap: wrap;
}

.megamenu {
    display: flex;
    width: 100%;
    padding: 14px 0px 0px 0px;
    justify-content: space-around;
}

.submenu-inner {
    margin: 0 10px;
}

.submenu-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    text-align: center;
    border-bottom: 1px solid black;
    padding-bottom: 13px;
    text-transform: uppercase;
    font-size: 15px;
    text-align: left;
    margin-left: 9px;
}

.submenu-list li {
    transition: 0.5s ease-in-out;
}

    .submenu-list li:hover {
        transition: 0.5s ease-in-out;
        transform: translateX(+30px);
    }

        .submenu-list li:hover a {
            color: #BF6A02;
        }

.submenu-list {
    list-style: none;
    padding-left: 0;
}

    .submenu-list li {
        margin-bottom: 5px;
    }

.submenu-link {
    color: #000;
    text-decoration: none;
}

    .submenu-link:hover {
        color: #555;
    }

/* Media Queries for Responsiveness */

/* Large screens (Desktop) */
@media (min-width: 1024px) {
    .nav-links {
        justify-content: space-between;
    }

    .dropdown {
        width: 750px;
        left: 50%;
        transform: translateX(-50%);
    }

    .submenu-inner {
        width: 25%;
    }

    .icons a {
        font-size: 20px;
    }
}

/* Medium screens (Tablet) */
@media (max-width: 1024px) {
    .dropdown {
        width: 100%;
    }

    .submenu-inner {
        width: 50%; /* Two columns for tablets */
    }
}

/* Small screens (Mobile) */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none; /* Hide the nav-links in mobile, will use overlay */
        flex-direction: column;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 999;
        transition: left 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .menu-overlay.active {
            left: 0;
        }

    .menu-links {
        list-style: none;
        padding-left: 0;
    }

        .menu-links li {
            margin: 20px 0;
        }

        .menu-links a {
            color: white;
            text-decoration: none;
            font-size: 24px;
        }

    /* Dropdown in mobile view */
    .shop-dropdown .dropdown {
        position: static;
        flex-direction: column;
        display: none;
    }

    .shop-dropdown.active .dropdown {
        display: block;
    }

    .submenu-inner {
        width: 100%; /* Full width for mobile */
    }

    .submenu-title {
        font-size: 18px;
        color: #fff;
    }

    .submenu-link {
        color: #ccc;
    }

        .submenu-link:hover {
            color: #fff;
        }

    /* Close button for mobile menu */
    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: white;
        font-size: 30px;
    }
}

header {
    background-color: #2b201c;
    padding: 0px 0px;
    color: white;
}


    header .nav-links i, .menu-links i {
        font-size: 15px;
        margin-left: 4px;
    }

    header .material-icons i {
        font-size: 18px;
    }

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-family: 'Cursive', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

    .nav-links li {
        /*margin-left: 20px;*/
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        position: relative;
        font-family: Arial;
        font-size: 20px;
        font-weight: 400;
        line-height: 23px;
        text-align: left;
    }

.shop-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0px 0 10px 0px;
    border-radius: 5px;
    min-width: 150px;
    z-index: 99;
}

.shop-dropdown:hover .dropdown {
    margin-top: 3px;
    display: block;
}

.dropdown li {
    /*padding: 10px;*/
    text-align: left;
}

    .dropdown li a {
        color: black;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.icons a {
    color: white;
    margin-left: 10px;
}

.burger {
    display: none;
    cursor: pointer;
}

.material-icons {
    font-size: 24px;
    padding: 10px 6px;
}

.icons .cartitem{
    position: absolute;
    left: 16px;
    font-size: 12px;
    /* background: white; */
    color: black;
    top: -11px;
    background: white;
    padding: 0px 5px;
    border-radius: 11px;
}
.icons .wishitem {
    position: absolute;
    left: 16px;
    font-size: 12px;
    /* background: white; */
    color: black;
    top: -11px;
    background: white;
    padding: 0px 5px;
    border-radius: 11px;
}
.icons a{
    position:relative;
}
/* Media Query for Mobile */
/* Styling for the hidden menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 250px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 16%;
}

    .menu-links li {
        margin: 20px 0;
    }

    .menu-links a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

/* Close button styling */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

/* Burger icon styling */
.burger {
    cursor: pointer;
    display: none;
}

/* When the menu is open, slide in */
.menu-overlay.active {
    left: 0;
}

/* Show burger icon in mobile view */
@media (max-width: 768px) {
    .icons {
        border-top: 1px solid white;
        padding: 8px 0px 0px 0px;
        margin-top: 8px;
    }

    .burger {
        display: block;
        position: absolute;
        top: 30px;
        right: 0;
    }

    .nav-links {
        display: none;
    }

    .navbar .logo img {
        width: 75%;
    }
}

@media only screen and (min-width:768px) {
    .menu-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #2b201c;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
    }

        .nav-links li {
            margin: 20px 0;
        }

        .nav-links.active {
            display: flex;
        }

    .burger {
        display: block;
    }

    /*.icons {
        display: none;
    }*/
}

h3 {
    font-family: "Mrs Saint Delafield", cursive;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-align: left;
    margin: 0px;
    line-height: 61px;
    color: #C1713D5C;
}

h2 {
    font-family: Arial;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-align: left;
    margin: 0px;
    text-transform: uppercase;
}

p {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.4px;
    letter-spacing: 0.05em;
    text-align: justify;
}

.categories {
    margin: 36px 0px 0px 0px;
}

    .categories .categ {
        position: relative;
    }

        .categories .categ .title {
            text-align: center;
            background: white;
            padding: 0px 17px;
            border-radius: 3px;
        }

    .categories .categ {
        overflow: hidden;
    }

    .categories img {
        min-height: 430px;
        max-height: 430px;
    }

    .categories .title {
        text-align: center;
        cursor: pointer;
        font-weight: normal;
    }

        .categories .title h4 {
            font-family: Arial;
            font-size: 20px;
            line-height: 27.05px;
            letter-spacing: 0.05em;
            margin: 21px 0px;
            font-weight: 600;
        }

.whyus .knowmore input {
    background: #000000;
    color: white;
    padding: 9px 14px 9px 17px;
    font-family: Arial;
    font-size: 17px;
    font-weight: 400;
    line-height: 18.4px;
    letter-spacing: 0.05em;
    text-align: justify;
    border-radius: 5px;
    letter-spacing: 2px;
}

.whyus .whyimage img {
    max-height: 476px;
    border-radius: 15px;
    object-fit: cover;
    min-height: 300px;
}

.fadeleft {
    position: relative; /* Ensure it's relative for proper animation */
    transition: transform 0.5s ease;
}

    .fadeleft:hover {
        transform: translateX(-100px); /* Moves the element 100px to the left */
    }

    .fadeleft:active {
        transform: translateX(-100px); /* Moves the element 100px to the left */
    }


.fadetop {
    position: relative; /* Ensure it's relative for proper animation */
    transition: transform 0.5s ease;
}

.trendingproduct img:hover {
    filter: grayscale(100%);
}

.fadetop:hover {
    transform: translateY(-35px); /* Moves the element 100px to the left */
}

.fadetop img {
    transition: filter 0.3s ease-in-out;
}

.fadetop:hover img {
    filter: grayscale(100%);
}

.fadetop:active {
    transform: translateY(-35px); /* Moves the element 100px to the left */
}

.faderight {
    position: relative; /* Ensure it's relative for proper animation */
    transition: transform 0.5s ease;
}

    .faderight:hover {
        transform: translateX(+100px); /* Moves the element 100px to the left */
    }

    .faderight:active {
        transform: translateX(+100px); /* Moves the element 100px to the left */
    }

.shopnow input {
    background: #000000;
    color: white;
    padding: 9px 14px 9px 17px;
    font-family: Arial;
    font-size: 17px;
    font-weight: 400;
    line-height: 18.4px;
    letter-spacing: 0.05em;
    text-align: justify;
    border-radius: 5px;
    letter-spacing: 2px;
}

.offers {
    /*background-image: url(../Images/trending/offers.png);
    background-attachment: inherit;
    padding: 86px 0px 30px 0px;
    background-repeat: no-repeat;
    margin: auto;
    background-size: contain;
    width: 100%;*/
    transition: 0.7s ease-in-out;
    overflow: hidden;
}

.offers, .offer_images {
    position: relative;
}

    .offers .offers_details {
        position: absolute;
        left: 10px;
        top: 83px;
    }

    .offers .container-fluid {
        transition: 0.7s ease-in-out;
    }

        .offers .container-fluid:hover {
            transform: scale(1.1);
            transition: 0.7s ease-in-out;
        }
    /* .offers .offers_details{
        position:absolute;
    }*/
    .offers h4, .offers p {
        color: white;
        text-align: center;
    }

    .offers h4 {
        font-family: Libre Bodoni;
        font-size: 48px;
        font-style: italic;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: 0.06em;
        text-align: center;
    }

    .offers h5 {
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        line-height: 69.64px;
        letter-spacing: 0.06em;
        text-align: center;
        font-size: 48px;
        color: white;
    }

    .offers span {
        font-family: Libre Bodoni;
        font-size: 40px;
        font-style: italic;
        font-weight: 600;
        line-height: 60px;
        letter-spacing: 0.06em;
        text-align: center;
        color: white;
    }

    .offers .offershop input {
        font-family: Arial;
        font-size: 18px;
        font-weight: 500;
        line-height: 22.54px;
        letter-spacing: 0.05em;
        text-align: center;
        margin-top: 26px;
        padding: 8px 10px;
        border-radius: 4px;
        border: none;
        background: white;
    }

.newproduct .products {
    position: relative;
}

.products .title h4 {
    position: absolute;
    top: 31px;
    right: 26px;
    font-family: Arial;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.03px;
    letter-spacing: 0.06em;
    background: black;
    color: white;
    padding: 13px 9px;
    border-radius: 26px;
    height: 43px;
    cursor: pointer;
}

    .products .title h4:hover {
        background: #C1713D;
    }

.newproduct .products, .newarrival .newarrive {
    overflow: hidden;
    margin-top: 22px;
}

    .newproduct .products img, .categories .categ img, .newarrival .newarrive img {
        transition: transform 0.6s ease; /* Smooth transition for the zoom effect */
    }

        .newproduct .products img:hover, .categories .categ img:hover, .newarrival .newarrive img:hover {
            transform: scale(1.2); /* Scale the image on hover */
        }


.quality h4 {
    font-family: Poppins;
    font-size: 21px;
    font-weight: 700;
    line-height: 37.5px;
    text-align: left;
}

.quality {
    background: #C5C0BD47;
    padding: 40px 0px 30px 0px;
}

footer {
    background: #000000;
    padding: 54px 0px;
}

    footer li, footer p {
        color: white;
        list-style: none;
        margin: 21px 1px;
        font-size:16px;
    }

    footer h4 {
        color: white;
        text-transform: uppercase;
        font-size: 21px;
        text-align:start;
    }

    footer li a {
        color: white;
        text-decoration: none;
    }

    footer ul {
        padding-left: 0px;
    }

    footer input {
        padding: 3px 9px;
        border-radius: 1px;
        background: transparent;
        border: 1px solid white;
    }

.newproduct input:hover {
    background: #C1713D;
    border: 1px solid white;
}

.newproduct input {
    border: 1px solid white;
}

.newarrival input, .whyus .knowmore input, .trendingproduct .shopnow input {
    border: 1px solid black;
}


    .newarrival input:hover, .whyus .knowmore input:hover, .trendingproduct .shopnow input:hover {
        background: #C1713D;
        border: 1px solid #C1713D;
    }

/*Slider*/



/*Slider*/

.shop_image img {
    filter: brightness(0.7);
}


/*slider*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



main {
    position: relative;
    width: 100%;
    max-height: 700px;
    min-height: 703px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin-top: -17px;
}

.item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

    .item:nth-child(1),
    .item:nth-child(2) {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
    }

    .item:nth-child(3) {
        left: 50%;
        width: 316px;
        height: 394px;
        border: 4px solid white;
    }

    .item:nth-child(4) {
        left: calc(60% + 220px);
        top: 57% !important;
        width: 275px;
        border: 2px solid white;
    }

    .item:nth-child(5) {
        left: calc(50% + 440px);
    }

    .item:nth-child(6) {
        left: calc(50% + 660px);
        opacity: 0;
    }

.content {
    width: min(30vw, 400px);
    position: absolute;
    top: 50%;
    left: 9rem;
    transform: translateY(-50%);
    font: 400 0.85rem Helvetica, sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

    .content .title {
        font-family: 'Arial Black', sans-serif;
        text-transform: capitalize;
    }

    .content .description {
        line-height: 1.7;
        margin: 1rem 0 1.5rem;
        font-size: 0.8rem;
    }

    .content button {
        width: fit-content;
        background-color: white;
        color: black;
        border: 2px solid white;
        border-radius: 11px;
        padding: 13px 35px;
        cursor: pointer;
        font-weight: bold;
        letter-spacing: 1px;
    }

.item:nth-of-type(2) .content {
    display: block;
    animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
}

    .nav .btn {
        background-color: rgba(255, 255, 255, 0.5);
        color: rgba(0, 0, 0, 0.7);
        border: 2px solid white;
        margin: 0 0.25rem;
        padding: 0.75rem;
        border-radius: 50%;
        cursor: pointer;
    }

        .nav .btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

/* Media Queries */
@media (min-width: 650px) and (max-width: 900px) {
    .content .title {
        font-size: 1rem;
    }

    .content .description {
        font-size: 0.7rem;
    }

    .content button {
        font-size: 0.7rem;
    }

    .item {
        width: 160px;
        height: 270px;
    }

        .item:nth-child(3) {
            left: 50%;
        }

        .item:nth-child(4) {
            left: calc(50% + 170px);
        }

        .item:nth-child(5) {
            left: calc(50% + 340px);
        }

        .item:nth-child(6) {
            left: calc(50% + 510px);
            opacity: 0;
        }
}

@media (max-width: 650px) {
    .proceed{
        border:none !important;
    }
    .item:nth-child(4) {
        top: 60% !important;
    }

    .offer_images img {
        height: 530px;
        object-fit: cover;
        border-bottom-left-radius: 155px;
        border-bottom-right-radius: 155px;
    }

    .offers h4 {
        font-size: 40px;
    }

    .item:nth-child(3) {
        top: 40%;
    }

    .content {
        display: none !important;
    }

        .content .title {
            font-size: 0.9rem;
        }

        .content .description {
            font-size: 0.65rem;
        }

        .content button {
            font-size: 0.7rem;
        }

    .item {
        width: 130px;
        height: 220px;
    }

        .item:nth-child(3) {
            left: 16%;
        }

        .item:nth-child(4) {
            left: calc(27% + 140px);
        }

        .item:nth-child(5) {
            left: calc(27% + 280px);
        }

        .item:nth-child(6) {
            left: calc(27% + 420px);
            opacity: 0;
        }
}

.slider .title {
    font-family: Abril Fatface;
    font-size: 59px;
    font-weight: 400;
    line-height: 86.34px;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0px;
}

.nav .btn {
    color: white;
}
/*slider*/

.newarrive {
    position: relative;
}

    .newarrive .title {
        position: absolute;
        bottom: 0px;
        width: 100%;
        /* background: background: var(--Icon-Warning-Tertiary, #BF6A02); */
        background: var(--Icon-Warning-Tertiary, #7b4605);
        padding: 10px;
    }

        .newarrive .title h4 {
            color: white;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 16px;
        }

        .newarrive .title p {
            color: white;
            font-weight: normal;
            letter-spacing: 1px;
            margin: 0;
        }

    .newarrive i {
        color: white;
        font-size: 18px;
    }

.products .card_image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.newarrive img {
    max-height: 300px;
    min-height: 346px;
    object-fit: cover;
}
.newproduct img {
    max-height: 450px;
    min-height: 450px;
    object-fit: cover;
}
.CountCartId2 {
    /* background-color: #726969f7; */
    padding: 0px 5.8px;
    /* width: 12px; */
    /* height: 12px; */
    border-radius: 22px;
    color: #fff9f9;
    position: absolute;
    font-weight: 700;
    font-size: 11px !important;
    top: -7%;
    right: -15%;
}
.cartnumber {
    background-color: #ff0000;
    padding: 0.2px 4.1px;
    width: 15px;
    height: 15px;
    border-radius: 22px;
    color: white;
    position: absolute;
    font-size: 13px;
    top: -11%;
    right: -4%;
}
@media (min-width: 992px) {
    .cartnumber {
        background-color: #ff0000;
        padding: 0.2px 4.1px;
        width: 15px;
        height: 15px;
        border-radius: 22px;
        color: white;
        position: absolute;
        font-size: 13px;
        top: 22% !important;
        right: -4%;
    }
}
.OnlineStatus {
    background-color: #42f109;
    padding: 0.2px 4.1px;
    width: 9px;
    height: 9px;
    border-radius: 22px;
    color: white;
    position: absolute;
    font-size: 9px;
    top: 1%;
    /*right: 12%;*/
    display: none;
}