/* Top Nav */
.top-nav {
    background-color: #ffffff;
    /* border-bottom: 1px solid lightgray; */
    font-family: "Winky Sans", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

.top-nav p {
    margin: 0 !important;
}

.top-nav .welcome {
    font-weight: lighter;
    font-size: 15px;
    color: #6a6a6a;
}

.top-nav .contact-options a {
    font-weight: 450;
    font-size: 15px;
    color: #373737;
    text-decoration: none;
    transition: 0.15s ease-in;
}

.top-nav .contact-options a:hover {
    color: midnightblue;
}

/* Adding Animation on the call icon */
@keyframes colorChange {
    0% {
        color: red;
    }

    50% {
        color: green;
    }

    100% {
        color: orange;
    }
}

.contact-options .customer-care {
    text-decoration: none;
    /* Optional: Removes underline */
    font-weight: bold;
    /* Optional: Makes text bold */
    animation: colorChange 1s infinite;
}

/* ==========================> Main Navbar <========================== */

.main-nav{
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.main-nav:not(.navbar-brand) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

nav.navbar {
    height: 12vh;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #0d0d60;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: cyan !important;
}

.navbar-brand {
    font-weight: 700;
    color: #ffffff !important;
    font-size: 40px !important;
    /* text-transform: uppercase; */
    font-weight: lighter;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.dom-mark {
    text-transform: lowercase;
    font-size: 13px;
}

nav .navbar-nav {
    justify-content: center;
}

/* Third Column */
.other-options a.cart {
    text-decoration: none;
    color: #ffffff;
    position: relative;
}

.other-options a.cart sup {
    position: absolute;
    background-color: red;
    padding: 8px 5px;
    margin-left: 3px;
    border-radius: 50%;
}

.other-options input[type=search] {
    outline: none;
    border: none;
    border-radius: 15px;
    padding: 5px 10px 5px 10px;
    width: 250px;
}

/* Navbar Menu Button */
.navbar-toggler {
    border: 1px solid white !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media(max-width:991px) {
    nav .navbar-nav {
        justify-content: start;
    }

    nav .offcanvas-body {
        display: flex;
        flex-direction: column-reverse;
        row-gap: 10px;
        justify-content: center;
    }
}


/* breadcrumb */
.breadcrumb a{
    text-decoration: none;
    color: black;
}

/* ==========================> Contact Us Page <========================== */
.contact-us-page form input,
.contact-us-page form textarea,
.contact-us-page form select{
    outline: none;
    width: 100%;
    padding: 8px;
    border: 1px solid lightgray;
    border-radius: 20px;
}
.contact-us-page form input::placeholder,
.contact-us-page form textarea::placeholder{
    font-size: 14px;
}
.contact-us-page form textarea{
    height: 90px;
}
.contact-us-page form button{
    color: white;
    background-color: #55a4ab;
    outline: none;
    border: none;
    /* border: 1px solid lightgray; */
    padding: 15px;
    font-weight: 700;
    font-size: 19px;
    width: 50%;
    border-radius: 25px;
    transition: 0.1s ease-in;
}
.contact-us-page form button:hover{
    box-shadow: 0 0 5px grey;
}
.contact-us-page form sup{
    color: red;
}
.contact-us-page .address-section p{
    font-size: 15px;
}
.contact-us-page .address-section p a{
    color: #55a4ab;
}


/* ==========================> FAQs Page <========================== */
.faqs-page p.faq-ans{
    font-size: 16px;
    color: grey;
    margin-left: 10px;
}


/* ==========================> Products Page <========================== */
.shop-container {
    display: flex;
    gap: 30px;
}

.filter-category{
    display: none;
    background-color: #ffffff;
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;

}
.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 5vh; 
    height: 100vh; 
    overflow-y: auto; 
    /* padding: 10px; */
    /* border-right: 1px solid lightgray; */
}

.products-container {
    flex: 1;
}

.categories-box {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid lightgrey;
}

.categories-box h3,
.price-filter h3 {
    margin-bottom: 15px;
    font-size: 18px;
}
.categories-box ul{
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
.categories-box ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid lightgray;
}
.categories-box ul li:last-child{
    border-bottom: none;
}

.categories-box a{
    color: #55a4ab;
    text-decoration: none;
    transition: 0.1s ease-in;
}
.categories-box a:hover{
    color: #0d0d60;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


@media (max-width: 992px){
    .shop-container{
        flex-direction: column;
    }
}


/* Products Card */
.products-card{
    width: 100%;
}

/* Product List */

.cardd {
    /* height: 300px; */
    height: auto;
    width: 290px;
    /* background-color: skyblue; */
    text-align: center;
    cursor: pointer;
    transition: .2s ease-in-out;
    border-right: 1px solid lightgray;
    border-left: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}
.cardd:hover{
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.cardd .cardd-img img {
    height: 220px;
    width: 200px;
    object-fit: contain;
}

.cardd .cardd-img {
    background-color: whitesmoke;
}
.cardd .cardd-body{
    text-align: start;
    padding: 10px 10px;
}
.cardd-body .cardd-title{
    font-weight: 650;
    color: #55a4ab;
}
.cardd-body .cardd-category{
    font-weight: 350;
    font-size: 13px;
}

.cat-product {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}



/* ==========================> Footer Section <========================== */
.subscription{
    background-color: #55a4ab;
    padding: 15px 0;
    margin-top: 20px;
}
.subscribe-input input{
    outline: none;
    border: none;
    border-radius: 20px;
    height: 40px!important;
    width: 100%!important;
    padding-right: 75px;
    padding-left: 25px!important;
    font-weight: lighter;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #373737;
}
.subscribe-input input::placeholder{
    margin-left: 10px;
    font-size: 15px;
}
.subscribe-input{
    position: relative;
}
.subscribe-input .sign-btn{
    position: absolute;
    right: 0;
}
.subscribe-input .sign-btn .signup{
    border: none;
    outline: none;
    background-color: #373737;
    color: #ffffff;
    padding: 8px 25px 8px 25px;
    border-radius: 0 20px 20px 0;
}

/* Main Footer */
.main-foot{
    background-color: #a6daf0;
    /* color: #ffffff; */
}
.foot-inquiry .call-info p{
    font-family: sans-serif;
    font-size: 14px;
}
.foot-inquiry .call-info a{
    font-family: sans-serif;
    font-size: 22px;
    text-decoration: none;
}

.main-foot .social-icons a{
    text-decoration: none;
    color: black;
    transition: 0.1s ease-in;
    padding: 10px 15px;
    border-radius: 50%;
}
.main-foot .social-icons a:hover{
    color: #ffffff;
    background-color: grey;
    box-shadow: 0 0 5px grey;
}

.main-foot .support-center a{
    text-decoration: none;
    color: #373737;
    transition: 0.1s ease-in;
}
.main-foot .support-center a:hover{
    text-decoration: underline;
    color: #6a6a6a;
}

/* Copyright Footer */
.copy-foot{
    background-color: rgb(230, 230, 230);
}


/* Scroll to Top Button */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    
    color: #373737; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 0px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 30px; /* Increase font size */
}
  
#myBtn:hover {
    color: #555; /* Add a dark-grey background on hover */
}
@media (max-width:427px){
    .navbar-brand {
        font-weight: 600;
        font-size: 22px !important;
    }
}