@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
    margin: 0;
    font-family: "Carlito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
li{
    font-family: "Carlito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgb(255, 153, 51);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.left-data {
    flex: 0 0 auto; /* Make sure left-data doesn't stretch */
}
.mid-right-container {
    display: flex;
    align-items: center; /* Align items vertically */
    margin-left: auto; /* Pushes mid-right-container to the right */
}
.left-data, .mid-data, .right-data {
    display: flex;
    align-items: center;
}
.header-img {
    max-width: 150px;
    height: auto;
}
.search-div {
    position: relative;
    display: flex;
    align-items: center;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.get-consultation {
    padding: 5px 10px;
    background-color: #fff;
    color: rgb(75, 0, 130);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}
.cause_login, .profile, .cart {
    display: flex;
    align-items: center;
}
.cause_login, .profile-link, .cart a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    padding: 5px 10px;
    transition: background-color 0.3s;
}
.profile {
    position: relative;
}
.cart {
    position: relative;
    display: flex;
    align-items: center;
}
.cart .fa-cart-shopping {
    font-size: 24px;
    color: #fff
}
.amt {
    position: absolute;
    top: -1px;
    right: 11px;
    background-color: rgb(75, 0, 130);
    color: white;
    border-radius: 50%;
    height: 37%;
    padding: 1px 8px;
    font-size: 10px;
}
.cart-amt{
    position: absolute;
    top: -9px;
    left: 5px;

}
.header-data {
    /* background-color: #007bff; */
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    background-color: #fff;
    box-shadow: 5px 5px 5px 5px gray
}

.main-menu > li {
    position: relative;
    padding: 10px 3px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
}

.main-menu > li:hover .submenu,
.main-menu > li:focus .submenu {
    display: block;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
    padding: 10px 0px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.submenu li {
    padding: 10px 20px;
    color: #000;
    white-space: nowrap;
}

.submenu li:hover {
    background: rgb(255, 153, 51);
    color: white;
}
.submenu li a:hover {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgb(137 118 100);
}
.profile {
    margin-right: 2%;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.dropdown{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1
}
.dropdown ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.profile i{
    color: white
}
.profile span{
    color: white;
    margin-left: -7%;
    font-size: 12px;
    font-weight: bold
}
.dropdown ul li {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

.dropdown ul li a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown ul li:hover {
    background-color: #f1f1f1;
}

.profile:hover .dropdown {
    display: block;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 4px 0;
}
li a{
   text-decoration: none;
}
.cause_login{
    font-size: 15px
}
@media (max-width: 768px) {
    .head {
        flex-direction: column;
        align-items: baseline;
    }
    .left-data {
        margin-bottom: 10px; 
    }
    .mid-right-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: -11%;
    }
    .header-img{
        margin-left: 61%;
    }
}
@media (max-width: 646px) {
    .mid-right-container {
        margin-top: -15%;
    }
}
@media (max-width: 540px) {
    .mid-right-container {
        position: absolute;
        top: 77px;
        left: 260px;
    }
}
@media (max-width: 480px) {
    .mid-right-container {
        left: 220px;
    }
    .header-img {
        margin-left: 6%;
    }
}
@media (max-width: 441px) {
    .mid-right-container {
        top: 63px;
        left: 161px;
    }
    .header-img {
        margin-left: 6%;
    }
}
@media (max-width: 378px) {
    .mid-right-container {
        top: 63px;
        left: 141px;
    }
    .header-img {
        margin-left: 1%;
    }
}
@media (max-width: 358px) {
    .mid-right-container {
        top: 63px;
        left: 130px;
    }
}
@media (max-width: 768px) {
    .profile, .cart {
        /* margin-top: 10px; */
    }

    .header-img {
        max-width: 120px;
    }

    .get-consultation {
        font-size: 14px;
        padding: 5px;
    }

    .cause_login {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .get-consultation {
        font-size: 12px;
        padding: 4px;
    }

    .cause_login {
        font-size: 12px;
    }

    .cart i {
        font-size: 18px;
    }
}
@media(max-width: 787px){
    .main-menu > li{
        font-size: 12px;
    }
}
@media(max-width: 773px){
    .get-consultation{
        font-size: 12px
    }
    .cause_login{
        font-size: 12px
    }
}
@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 80%;
        background-color: #fff;
    }

    .main-menu > li {
        width: 100%;
        text-align: left;
        padding: 10px;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
    }

    .main-menu > li:hover .submenu,
    .main-menu > li:focus .submenu {
        display: block;
    }

    .submenu li {
        padding: 10px;
    }

    .hamburger {
        display: flex;
    }

    .main-menu.show {
        display: flex;
    }
}
.language-options {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 119px;
}

.lang-option {
    display: block;
    cursor: pointer;
    margin-bottom: 5px;
}

#google_translate_element {
    padding: 10px 20px;
    background-color: rgb(255, 153, 51);
    color: #fff;
    border: none;
    cursor: pointer;
}
@media(max-width: 397px){
    #google_translate_element {
        padding: 0px 0px;
    }
}
@media(max-width: 355px){
    .right-data{
        margin-left: -3%
    }
}

/********************************footer*********************************/
.footer-body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.footer {
    background-color: rgb(255, 153, 51);
    color: #fff;
    padding: 20px 0;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-column {
    flex: 1;
    margin: 10px;
    max-width: 250px;
}

.footer-column h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.footer-column form input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-column form button {
    padding: 10px;
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-column p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    max-height: 100px;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background-color: rgb(240, 212, 122);
    padding: 12px;
    width: 15px;
}

.footer-column-text {
    background: #d5b893;
    padding: 15px;
    border-radius: 5px;
}

.border {
    border: 2px solid white;
    width: 97%;
    border-style: dashed;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-column ul li {
        font-size: 14px;
    }
    
    .footer-column p,
    .footer-links a {
        font-size: 12px;
    }
}

/************************************Slider***********************************/


.slider {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
}

.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-arrows i {
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/********************************Product Image slider********************************/
.product-images {
    display: flex;
    overflow-x: hidden; /* Hide the horizontal scrollbar */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS */
    margin-top: 2%;
}

.product-image {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
}

.product-image:hover {
    cursor: grab; /* Show grab cursor on hover */
}

/* Product Image */
.product-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
