@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;

}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding: 2rem 7%;

}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3.rem;
    font-size: 4rem;
    margin-bottom: 20px;
}

.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 10px;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 6rem;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover{
    color: var(--main-color);
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top: 115%;
    right:7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);
}

.header .search-form label:hover{
    color: var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top: 100%;
    right: -200%;
    height: calc(100vh - 9.5rem);
    width:35rem;
    background: #fff;
    padding: 0 1.5rem;
}

.header .cart-items-container.active{
    right:0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover{
    color: var(--main-color);
}

.header .cart-items-container .cart-item img{
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content price{
    font-size: 1.5rem;
    color: var(--main-color); 
}

.header .cart-items-container .btn{
    width: 100%;
    text-align:center;
}

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/cover4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.home .content p{
    font-size:2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}

.about .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    border-radius: 10px;
}

.about .row .image{
    flex: 1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 45rem;
    padding:2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.menu .box-container .box{
    padding: 5rem;
    text-align: center;
    border: var(--border);
    border-radius: 10px;
}

.menu .box-container .box img{
    height: 10rem;
    border-radius: 10px;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding: .5rem 0;
}

.menu .box-container .box span{
    color: #fff;
    font-size: 1.5rem;
    text-decoration: line-through;
}

.menu .box-container .box:hover{
    background:#fff;
}

.menu .box-container .box:hover > *{
    color: var(--black);
}

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.products .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 2rem;
    border-radius: 10px;
}

/* .products .box-container .box:hover{
    background: #fff;
}

.products .box-container .box .product-name .price:hover > *{
    color: var(--black);
} */

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border: var(--border);
    color:#fff;
    margin: .3rem;
    border-radius: 10px;
}

.products .box-container .box .icons a:hover{
    background: var(--main-color);
}

.products .box-container .box .image{
    padding:2.5rem 0;
}

.products .box-container .box .image img{
    height: 25rem;
    border-radius: 10px;    
}

.products .box-container .box .content h3{
    color: #fff;
}

.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color: #fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}

.review .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
}

.review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color: var(--main-color);
}


.contact .row{
    display: flex;
    background: var(--black);
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 10px;
}

.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact .row .form{
    flex:1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 10px;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size:3.5rem;
    color: #fff;
    border-radius: 10px;
}


.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--bg);
    border: var(--border);
    border-radius: 10px;
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
    border-radius: 10px;
}

.contact .row form .inputBox input,
.contact .row form .inputBox textarea {
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
    border: none;
    resize: none; /* Optional: prevents resizing if not needed */
    outline: none;
}


.popup-card {
        display: none;
        position: fixed;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -20%);
        background-color: white;
        padding: 2rem;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
        border-radius: 10px;
        text-align: center;
        border-radius: 10px;
    }

      .popup-card h3 {
        margin-bottom: 10px;
    }

    .popup-card button {
        margin-top: 10px;
        padding: 0.5rem 1rem;
        /* background: #27ae60; */
        background: #fdab01 ;
        /* background: #e60000;  */
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }


.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
    border-radius: 10px;
}

.blogs .box-container .box{
    border: var(--border);
    border-radius: 10px;
}

.blogs .box-container .box .image{
    height: 25rem;
    overflow:hidden;
    width: 100%;
}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width:100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}

.blogs .box-container .box .content{
    padding:2rem;
}

.blogs .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5rem;
    color:#fff;
}

.blogs .box-container .box .content .title:hover{
    color: var(--main-color);
}

.blogs .box-container .box .content span{
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}


.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding:1rem 0;
}

.footer{
    background: var(--black);
    text-align: center;
}

.footer .share{
    padding: 1rem 0;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;;
}

.footer .share a:hover{
    background-color:var(--main-color);
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap:1rem;
}

/* .fotter .links a{
    padding:.7rem 2rem;
    color:#fff;
    border: var(--border);
    font-size: 2rem;
} */

.footer .links a:hover{
    background: var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit span{
    color: var(--main-color);
}

.add-to-cart{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 10px;
}

.add-to-cart:hover{
    letter-spacing: .2rem;
}


.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    margin-right: 10px; /* Adjust margin to space out the image */
}

/* Style for the cart item container */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Style for the product image */
.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

/* Style for the name and price spans */
.cart-item span {
    font-size: 14px;
    color: #333;
}

/* Style for the remove button */
.cart-item button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Change button color on hover */
.cart-item button:hover {
    background-color: #e60000;
}

/* Disable the remove button if necessary */
.cart-item button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.cart-total {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style for the total price value */
#total-price {
    color: #e60000; /* Red color to emphasize the total */
    font-size: 22px;
    font-weight: bold;
}

/* Style for the cart icon container */

/* Style for the cart count badge */
.cart-count {
    position: absolute;
    /* top: 30px;
    right: 90px; */
    top: -8px;
    right: -10px;
    background-color: #e60000; /* Red color for the badge */
    color: white;
    /* font-size: 14px; */
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    /* width: 20px;
    height: 20px; */
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5px; /* To add some spacing inside the badge */
}

/* Ensure the cart icon is properly sized */
#cart-btn {
    font-size: 24px; /* Adjust the size of the shopping cart icon */
    cursor: pointer;
    position: relative;
}


/* Style for the wishlist count badge */
.wishlist-count {
    position: absolute;
    /* top: -1px;
    right: -15px; */
    top: -8px;
    right: -10px;
    background-color: #e60000; /* Red color for the badge */
    color: white;
    /* font-size: 14px; */
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    /* width: 20px;
    height: 20px; */
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5px; /* To add some spacing inside the badge */
}

/* Ensure the heart icon is properly sized */
#heart-btn {
    font-size: 24px; /* Adjust the size of the heart icon */
    cursor: pointer;
    position: relative;
}


/* Modal overlay */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.add-to-wishlist {
    transition: color 0.3s ease;
    cursor: pointer;
}


.wishlist-box {
    position: fixed;
    top: 70px;
    right: 50px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    display: none;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.wishlist-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.wishlist-item img {
    width: 50px;
    height: 50px;
}
.add-to-cart-btn {
    background: green;
    color: white;
    padding: 4px 8px;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

 







/*media queries*/
@media (max-width:991px){
    
    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    section{
        padding: 2rem;
    }

    
}

@media (max-width:768px){

    #menu-btn{
        display:inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right:2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

     .cart-items-container {
        padding: 15px;
    } 

    .cart-total {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    #total-price {
        font-size: 20px;
    }

    .cart-items-container .btn {
        font-size: 14px;
    }

     .cart-count, .wishlist-count {
        top: -6px;
        right: -8px;
        font-size: 11px;
        width: 16px;
        height: 16px;
    }

}

@media (max-width:576px){
    .cart-count, .wishlist-count {
        top: -5px;
        right: -6px;
        font-size: 10px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width:450px){
    
    html{
        font-size: 50%;
    }
}

@media (max-width:400px){
    .cart-count, .wishlist-count {
        top: -4px;
        right: -5px;
        font-size: 9px;
        width: 14px;
        height: 14px;
    }
}

