 :root {
     --top: #3a221d;
     --topnav: rgba(39, 13, 13, 0.8);
     /* --foot: #492c25; */
     --foot: #4e342e;
     --back: #bcaaa4;
     --tex-color: #efebe9;
 }

 * {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
 }

 .logo {
     background-color: white;
     display: flex;
     justify-content: space-around;
 }

 .logo img {
     margin: 0px 30px;

 }

 .logo button {
     margin-bottom: 30px;
 }

 .cart-icon {
     position: relative;
     font-size: 28px;
     cursor: pointer;
 }

.right-side .btncart{

 margin: 5px;
}

.right-side .btncart p,
.right-side .btncart h2{
    padding: 0px 15px;

}
.btncart .btn-group{
    margin: 10px 0px; 
     text-align: center;
}
.btncart .btn-group button{
    background-color: var(--foot);
    color: white;
    padding: 10px 30px;
    margin: 0px 5px;
    font-size: 20px;
    border-radius: 8px;
}
.btncart .btn-group button:first-child{
    width: 70%;
}
 .big-box {
     display: flex;
     overflow: auto;
 }

 .big-box::-webkit-scrollbar{
     width: 0;
 }

 .box-img img {
     width: 340px;
     height: 300px;
     margin: 5px;
 }

 .descrip {
     margin: 0px 10px;
     padding:  10px;
     text-align: center;
 }
.descrip h2{
    margin: 10px;
    text-align: center;
}
 .descrip p{
     margin: 5px 20px;
     text-align: center;
 }


@media (min-width: 768px){
 
 .twoside{
    display: flex;
 }
 .twoside section {
    width: 50%;
 }
.descrip {
     margin: 10px 10px;
     padding:  10px;
     text-align: initial;
    overflow-y: scroll;
     height: 450px;
     border: 1px solid grey;
     
 }
}


 .top img {
     width: 100%;
 }

 .product h2 {
     text-align: center;
     padding: 10px 0px 15px 15px;
 }

 .container {
     width: 100%;
     height: 100%;
     align-items: center;
     justify-content: center;
     display: grid;
     grid-template-columns: 1fr 1fr;
     padding: 20px;

 }

 @media (min-width: 600px) {
     .container {
         display: grid;
         grid-template-columns: 1fr 1fr 1fr 1fr;
     }
 }

 .box {
     border-radius: 3px;
     width: 170px;
     height: 270px;
     text-align: center;
     margin: 10px;
     /* overflow: hidden; */

 }

 .box a {
     text-decoration: none;
     color: black;
 }

 .img {
     width: 180px;
     height: 200px;
 }

 .box img {
     width: 100%;
     height: 200px;
     overflow: hidden;
     border-radius: 8px;
 }



 .box p {
     margin: 5px 0px;
     /* padding: 10px 5px; */
     font-weight: 600;
     font-size: 15px;
 }

 .box button {
     background-color: var(--foot);
     color: white;
     border: none;
     padding: 5px 20px;
     border-radius: 8px;
     cursor: pointer;
 }

 .product-gallery {
     max-width: 360px;
     margin: auto;
 }

 .main-image img {
     width: 100%;
     border-radius: 10px;
 }

 .thumbnails {
     display: flex;
     overflow-x: auto;
     /* Scroll enable */
     gap: 10px;
     margin-top: 10px;
 }

 .thumbnails img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     cursor: pointer;
     border-radius: 5px;
 }

 .logo button {
     padding: 6px 10px;
     border: none;
     background: var(--top);
     color: var(--tex-color);
     cursor: pointer;
     border-radius: 5px;
     margin: 2px;
 }

 /* button {
     padding: 3px 10px;
     border: none;
     border: 1px solid var(--foot);
     background-color: #6b3e32;
     cursor: pointer;
     border-radius: 5px;
     margin: 4px;
 } */


 .product {
     width: 100%;
     padding: 10px 0px;


 }

 .product h3 {
     padding: 15px;
     text-align: left;
 }


 .logo button {
     padding: 6px 10px;
     border: none;
     background: var(--top);
     color: white;
     cursor: pointer;
     border-radius: 5px;
     margin: 2px;
 }

   .thumbnails .box{
         width: 100%;
    }
   .thumbnails .box img{
          width: 175px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px; 
    }



 .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;
 }

 #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);
 }

 .qty {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .customerinfo {
     padding: 0px 10px;
 }

 .customerinfo input {
     width: 240px;
     padding: 3px;
     margin: 3px;
 }

 .customerinfo h3 {
    padding-bottom: 5px;
 }

 .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;
 }

.wish-icon{
       position: fixed;
     bottom: 170px;
     right: 18px;
     padding: 9px 9px 7px 9px;
     border-radius: 25px;
     background-color: rgb(92, 33, 33);
    
}
.wish-icon a{
    color: white;
position:relative;
 font-size: 29px;
 text-decoration:none;
}
.wish-icon a span{
    position:absolute;
            top:-10px;
            right:-12px;
            background:red;
            color: white;
            border-radius:50%;
            padding:2px 6px;
            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;
 }




 .footer {
     background-color: var(--foot);
     color: var(--tex-color);
 }

 .footer-container {
     max-width: 1200px;
 }

 .footer-logo {
     padding: 10px;
 }

 .footer-logo img {
     border-radius: 5px;
     box-shadow: 2px 2px 2px 2px rgb(97, 69, 69);
     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;
     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;
     }
 }