/* =========================================
   GOOGLE FONTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =========================================
   GLOBAL CSS
========================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

img{
    max-width: 100%;
    display: block;
}


/* =========================================
   ROOT COLORS
========================================= */

:root{

    --primary-color: #C8A96B;
    --secondary-color: #111111;
    --white-color: #ffffff;
    --light-bg: #f8f5f0;
    --border-color: #e5e5e5;
    --text-color: #555555;

}


/* =========================================
   TOP BAR
========================================= */

.top-bar{
    background: #111;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.topbar-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span{
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right a{
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.top-right a:hover{
    color: var(--primary-color);
}


/* =========================================
   MAIN HEADER
========================================= */

.main-header{
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}


/* =========================================
   LOGO
========================================= */

.logo img{
    width: 180px;
}


/* =========================================
   DESKTOP MENU
========================================= */

.desktop-menu ul{
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-menu ul li{
    position: relative;
}

.desktop-menu ul li a{
    color: #111;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.desktop-menu ul li a:hover{
    color: var(--primary-color);
}


/* =========================================
   DROPDOWN MENU
========================================= */

.submenu{
    position: absolute;
    top: 120%;
    left: 0;
    width: 220px;
    background: #fff;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown-menu-custom:hover .submenu{
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.submenu li{
    padding: 10px 20px;
}

.submenu li a{
    display: block;
    color: #111;
}


/* =========================================
   HEADER RIGHT
========================================= */

.header-right{
    display: flex;
    align-items: center;
    gap: 25px;
}


/* =========================================
   SEARCH BOX
========================================= */

.search-box form{
    width: 280px;
    position: relative;
}

.search-box input{
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0 50px 0 20px;
    outline: none;
    font-size: 14px;
}

.search-box button{
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111;
}


/* =========================================
   HEADER ICONS
========================================= */

.header-icons{
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icons a{
    position: relative;
    color: #111;
    font-size: 22px;
    transition: 0.3s;
}

.header-icons a:hover{
    color: var(--primary-color);
}

.icon-count span{
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-toggle{
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #111;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 25px;
    transition: 0.4s;
    overflow-y: auto;
}

.mobile-menu.active{
    left: 0;
}

.mobile-menu-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-header h4{
    margin: 0;
    font-size: 22px;
}

.mobile-menu-header button{
    background: transparent;
    border: none;
    font-size: 28px;
}

.mobile-menu ul li{
    margin-bottom: 18px;
}

.mobile-menu ul li a{
    color: #111;
    font-size: 16px;
    font-weight: 500;
}

.mobile-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-overlay.active{
    opacity: 1;
    visibility: visible;
}


/* =========================================
   FOOTER
========================================= */

.main-footer{
    background: #111;
    color: #fff;
    padding-top: 80px;
}

.footer-wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo img{
    width: 180px;
    margin-bottom: 20px;
}

.footer-column p{
    color: #ccc;
    line-height: 28px;
}

.footer-column h4{
    font-size: 22px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.footer-column ul li{
    margin-bottom: 14px;
}

.footer-column ul li a{
    color: #ccc;
    transition: 0.3s;
}

.footer-column ul li a:hover{
    color: var(--primary-color);
    padding-left: 5px;
}


/* =========================================
   FOOTER SOCIALS
========================================= */

.footer-socials{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a{
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover{
    background: var(--primary-color);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-form{
    margin-top: 20px;
    position: relative;
}

.newsletter-form input{
    width: 100%;
    height: 52px;
    border: none;
    outline: none;
    padding: 0 20px;
    border-radius: 6px;
}

.newsletter-form button{
    width: 100%;
    height: 50px;
    margin-top: 12px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-form button:hover{
    background: #b18f53;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
    margin: 0;
    color: #ccc;
}

.payment-icons{
    display: flex;
    gap: 15px;
}

.payment-icons i{
    font-size: 30px;
    color: #fff;
}


/* =========================================
   RESPONSIVE CSS
========================================= */

@media(max-width:1200px){

    .desktop-menu{
        display: none;
    }

    .mobile-toggle{
        display: block;
    }

}

@media(max-width:992px){

    .footer-wrapper{
        grid-template-columns: repeat(2,1fr);
    }

    .search-box{
        display: none;
    }

}

@media(max-width:768px){

    .topbar-wrapper{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-wrapper{
        padding: 15px 0;
    }

    .logo img{
        width: 140px;
    }

    .header-icons{
        gap: 14px;
    }

    .header-icons a{
        font-size: 18px;
    }

    .footer-wrapper{
        grid-template-columns: 1fr;
    }

    .footer-bottom-wrapper{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

@media(max-width:576px){

    .top-right{
        flex-direction: column;
        gap: 8px;
    }

    .mobile-menu{
        width: 280px;
    }

}

/*index page csss*/
