* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    /* --top: #3e2723; */
    --top: #3a221d;
    --topnav: rgba(39, 13, 13, 0.8);
    --foot: #4e342e;
    --back: #d6cfcd;
    --tex-color: #efebe9;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: white;
}
.sale-ribbon{
    width: 100%;
    overflow: hidden;
    background-color:  var(--foot);
    color: white;
    padding: 3px;
   font-weight: bold;
    white-space: nowrap;
}
.sale-track{
  display: inline-block;
        animation: scrollsale 13s linear infinite;
        font-weight: bold;
}
  @keyframes scrollsale{
from{ transform:translateX(0); }
to{ transform:translateX(-50%); }
} 

nav {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: var(--top);
    position: relative;
    height: 70px;
    z-index: 999;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    list-style-type: none;
}

  nav ul li a {
    text-decoration: none;
    color: var(--tex-color);
}  

.menu-icon {
    display: none;
}

.menu-icon i {
    color: var(--foot);
    font-size: 30px;
}
@media (min-width: 768px) {
  nav ul li a {
    text-decoration: none;
    color: var(--top);
    font-weight: bold;
}  
}
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background-color: var(--topnav);
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 30px;
        padding-top: 0;
    }
    

    .menu-icon {
        display: block;
    }

    #menuList {

        transition: all 0.5s;
    }

    #menuList li {
        padding: 11px;
    }

}


h2 {
    text-align: center;
    padding: 20px;
    color: var(--top);
}


.hero {
    position: relative;
    width: 100%;

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;        /* keeps aspect ratio */
    display: block;
    object-fit: fill;   /* fills horizontally */
}



/* Mobile */
@media screen and (max-width: 767px) {
    .hero {
    position: relative;
    width: 100%;
 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

}







@media only screen and (min-width:768px) {
    .container-mid {
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .big {
        border: 2px solid black;
        margin: 10px;
        width: 400px;
    }
}

.container-mid {
    margin: 5px 10px;
    justify-content: center;
    align-items: center;

}

.product a {
    text-decoration: none;
}

.product :hover {
    transform: scale(1.1);

}

.big {
    border: 1px solid rgb(66, 40, 40);
    margin: 10px;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
}
.purple{
    background-color: rgb(99, 65, 97);
}
.blue{
    background-color: rgb(39, 39, 61);
}
.yellow{
    background-color: rgb(53, 47, 17);
}
.big-box {
    margin: 5px;

}

.small-box {
    margin: 5px;


}

.small-box img {
    width: 135px;


}

.big-box {
    position: relative;
    background-color: #7432324b;
    font-family: sans-serif;
    color: var(--tex-color);
    opacity: 0;
    transform: scale(0.4);
    animation: omgReveal 2s ease forwards;
    margin: 5px 5px 5px 10px;
}

@keyframes omgReveal {
    0% { opacity: 0; transform: scale(0.4); }
    60% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

 .cart {
     position: fixed;
     right: -350px;
     top: 0;
     max-width: 320px;
     max-height: 80vh;
     background: white;
     box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
     border-radius: 5px;
     padding: 15px;
     margin: 60px 30px;
     transition: 0.3s;
     overflow: hidden;
     z-index: 999;
 }


 #cartItems {
    display: flex;
    flex-direction: column;
     max-height: 350px;
     overflow-y: auto;
     padding-right: 5px;
 }

 /* each product box */
#cartItems > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* product image */
#cartItems img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

/* product name + qty */
#cartItems > div > div:nth-child(2) {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* buttons row */
.plus {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

/* all buttons */
.plus button {
    width: 22px;
    height: 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

/* minus button */
.plus button:nth-child(1) {
    background: #ddd;
    color: #222;
}

/* plus button */
.plus button:nth-child(2) {
    background: #ddd;
    color: #222;
}

/* remove button */
.plus button:nth-child(3) {
    background: red;
    color: white;
}

/* hover */
.plus button:hover {
    opacity: 0.85;
}


  .total-item h3{
   padding-top: 10px;
   padding-bottom: 5px;
  }
.cart.active{
    right: 0;
}


 .cart-header {
    color: var(--foot);
    font-size: 20px;
     display: flex;
     justify-content: space-between;
 }

 .cart-header button {
     font-size: 23px;
     font-weight: bold;
     color: var(--foot);
     background-color: rgb(211, 204, 204);
     padding: 2px 8px;
     margin: 9px;
     border-radius: 6px;
     border: 0px solid grey;
 }

 .cart-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #eee;
     padding: 10px;
     margin-top: 10px;
     border-radius: 5px;
 }

 .cart-item {
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 10px 0;
 }

 .cart-item img {
     width: 60px;
     height: 60px;
     object-fit: cover;
 }

 .remove {
     background: var(--top);
 }


 .customerinfo {
     padding: 10px;
 }

 .customerinfo input {
     width: 240px;
     padding: 3px;
     margin: 3px;
 }

 .customerinfo h3 {
     padding: 3px;
 }

.customerinfo button {
    background-color: var(--foot);
    color: white;
    font-weight: bold;
    border-radius: 5px;
     margin: 15px 0px 8px 0px;
     padding: 8px;
 }
.customerinfo button:hover{
    background-color: #49261c;
}

 .cart-icon {
     position: fixed;
     bottom: 100px;
     right: 20px;
     border-radius: 42px;
     padding: 6px 6px 0px 6px;
     background-color: rgb(92, 33, 33);
 }

 #cartCount {
     position: absolute;

     top: -4px;
     right: -3px;

     background: red;
     color: white;

     width: 19px;
     height: 19px;

     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;

     font-size: 12px;
     font-weight: bold;
 }


 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 20px;
 }

 .whatsapp-float img {
     width: 55px;
     height: 55px;
 }

 .whatsapp img {
     border-radius: 122px;
 }


 .review-section{
padding:60px 20px;
text-align:center;
color: var(--tex-color);
background-color: var(--foot);
}
.review-title{
    color: var(--tex-color);
font-size:30px;
margin-bottom:30px;
}

.carousel{
position:relative;
max-width:900px;
margin:auto;
overflow:hidden;
}
.review-section .track{
display:flex;
transition:transform 0.5s ease;
}

.review{
min-width:100%;
padding:20px;
box-sizing:border-box;
}
.review .card{
background:rgba(255,255,255,0.05);
border-radius:15px;
padding:25px;
backdrop-filter: blur(10px);
}

.review  .top{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.review .top img{
width:50px;
height:50px;
border-radius:50%;
object-fit:cover;
}

.name{ font-weight:bold; }
.country{ font-size:12px; color:#aaa; }

.stars{
color:#facc15;
margin:10px 0;
}

.review-section .btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background: var(--foot);
border:none;
color: var(--foot);
font-size:20px;
padding:10px 15px;
cursor:pointer;
border-radius:50%;
}

.prev{ left:10px; }
.next{ right:10px; }

.review-section  .dots{
margin-top:20px;
}

.review-section .dot{
height:10px;
width:10px;
margin:5px;
display:inline-block;
border-radius:50%;
background: rgb(100, 65, 65);
cursor:pointer;
}

.review-section .active{
background:#fff;
}

@media(max-width:768px){
     .review-section{
padding:40px 20px;
}
.review-title{
font-size:25px;
margin-bottom:30px;
}
.review-section .btn{ display:none; }
}

@media (max-width:768){
       .map-box iframe {
            width: 100%;
            height: 350px;
            border: 0;
            border-radius: 5px;
        }
}
    .map-section {
            text-align: center;
            padding: 30px 15px;
            color: white;
        }

        .map-section h2 {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .map-box {
            max-width: 100%;
            margin: auto;
        }

        .map-box iframe {
            width: 100%;
            height: 450px;
            border: 0;
            border-radius: 5px;
        }
.about{
    padding: 15px;
    color: var(--foot);
    text-align: center;
    border-radius: 8px;
}
.about h2{
     color: var(--foot);
    padding: 8px;
}
.footer {
    background-color: var(--foot);
    color: var(--tex-color);
}

.footer-container {
    max-width: 1200px;
}
.footer-logo{
     padding: 10px;  
}
.footer-logo img {
    border-radius: 5px;
    width: 160px;
    display: block;
    margin: 0 auto 10px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 15px;
    text-align: center;
}
.footer-contact a{
    color: var(--tex-color);
    text-decoration: none;
    
}

.social-icons {
    display: flex;
    justify-content: center;
margin-bottom: 10px;
    gap: 15px;
}

.social-icons a {
    color: var(--tex-color);
    font-size: 22px; 
    box-shadow: 2px 2px 2px #a58989;
    border-radius: 12px;
}

.accordion {
    background: var(--top);
    color: var(--tex-color);
    cursor: pointer;
    padding: 13px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 15px;
    margin-top: 2px;
}

.panel {

    display: none;
    background: var(--foot);
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.panel a {
    display: block;
    color: var(--tex-color);
    padding: 6px 0;
    text-decoration: none;
    font-size: 14px;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 15px;
    font-size: 13px;
    color: var(--top);
    background-color: var(--tex-color);
}

@media (min-width: 600px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: left;
    }

    .footer-logo img {
        margin: 20;
        padding-top: 20px;
    }

    .footer-contact {
        margin: 30px;
    }

    .footer-accordion {
        margin: 30px;
    }
}