*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family: "Urbanist", sans-serif;
}
.main-nav{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.barnav{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position:fixed;
  z-index: 99999;
  top:0px;
  background-color: white;
  box-shadow: 0px 0px 3px gray;
}
.barnavsub{
  display: flex;
  justify-content: center;
  align-content: center;
  width: max-content;
  gap: 60px;
}
.barnav .logo{
  width: 200px;
  object-fit: fill;
}
.menu{
  width: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.menu img{
  width: 100%;
}
.menubar{
  display: flex;
  gap:20px;
  position: relative;
}

 /* Overlay */
    #checkoutModal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: flex-end;
      z-index: 999999;

      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease;
    }

    /* Show overlay */
    #checkoutModal.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Cart panel */
    #checkoutModal>div {
      width: 380px;
      max-width: 100%;
      height: 100%;
      background: #fff;
      padding: 20px;
      transform: translateX(100%);
      transition: transform 0.4s ease;

    }

    /* Slide in */
    #checkoutModal.show>div {
      transform: translateX(0);
    }

    #mainImage {
      width: 390px;
      height: 340px;
    }

    /* Cart product */

    #cart-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }

    .cart-detail1 {
      display: flex;
      justify-content: space-between;
      font-size: 20px;
    }

    .cart-detail3 {
      margin-top: 15px;
      display: flex;
      padding-left: 90px;
      gap: 15px;
      align-items: center;

    }

    .cart-buy {
      width: 100%;
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }

        #cartCount {
  display: none;
}

    #addcart {
      flex: 1;
    }

    .buy-it {
      flex: 1;
    }

    .cart-detail2 {
      margin-top: 15px;
    }

    .cartproduct-detail {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      align-items: center;
    }

    .final-price {
      display: flex;
      gap: 5px;
      padding: 10px;
      font-weight: bold;
    }

    .increase {
      width: 15px;
      height: 15px;
    }

    #dis-coupon {
      width: 100%;
      margin-top: 10px;
      display: none;
      justify-content: space-between;
    }

    .est-total {
      display: flex;
      justify-content: space-between;
      padding: 10px 0px;
    }

    #checkout-btn {
      background-color: black;
      color: white;
      width: 100%;
      padding: 15px 0px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
    }

    .move-checkout {
      font-size: 14px;
      color: gray;
      margin-bottom: 10px;
    }

    #dis-coupon-input {
      padding: 10px 15px;
      font-size: 16px;
      border: none;
      border: 1px solid gray;
      border-radius: 10px;
    }

    #dis-apply {
      padding: 15px 25px;
      border: none;
      background-color: black;
      color: white;
      border-radius: 30px;
    }

    .cart-section {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      height: 100%;
      margin-bottom: 30px;
    }

    #dis-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border: none;
      border: 1px solid rgb(161, 161, 161);
      background: none;
      border-left: none;
      border-right: none;
    }

    .cart-detail-part1 {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .cart-price-detail {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .delete-icon {
      width: 20px;
      height: 20px;
    }

    #delete-btn {
      background-color: black;
      padding: 8px 10px;
      border-radius: 50%;

    }


    .no-cart {
      width: 16px;
      height: 16px;
    }

    .empty-shop-btn {
      display: inline-block;
      padding: 12px 24px;
      background: black;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s;
    }

    .empty-shop-btn:hover {
      background: orange;
      color: black;
    }


@media screen and (min-width:320px) and (max-width:768px){
 .barnavsub{
  display: none;
  justify-content: center;
  align-content: center;
  width: max-content;
 }
 .barnav{
  width: 93%;
  padding: 10px 30px;
  justify-content: space-between;
  border-radius: 18px;
  top: 20px;
 }
 .barnav .logo{
  width: 100px;
 }
 .menu{
  background-color: transparent;
  border: none;
 }
}

/* Navigation Buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav.prev { left: 12px; }
.nav.next { right: 12px; }

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #ff8c4a;
}


/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .carousel-slide img{
    min-height: 50vh;
  }
}


@media screen and (min-width:320px) and (max-width:768px){

  .promo-carousel {
    padding-top: 6rem;
  }
  .menu-track{
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding: 30px;
  }
  .menu-card img{
    height: 220px;
  }
  .menu-card{
    min-width: 100%;
  }
}
/* Category Head section start */
.category-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}
.category-head{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.category-head p{
  padding: 0px 200px;
  text-align: center;
}
/* .category-head h1{
}
.category-head h1 span{
    color: white;
} */
.category-bar{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.category-bar-left{
    display: flex;
    gap: 20px;
    padding: 20px;
}
.category-title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid grey;
}
.category-title button{
    background: none;
    border: none;
}
.search-bar{
    padding: 20px;
}
.search-bar input{
    padding: 10px;
    width: 250px;
    border-radius: 10px;
    border: 1px solid gray;
}
/* Product grid section */

.product-grid-parent{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.product-grid{
    width: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid grey;
    padding: 20px;
    border-radius: 10px;
}
.img img{
    width:100%;
    border-radius: 10px;
}
.product-name{
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 10px;
    margin-top: 15px;
    border-radius: 10px;
}
    
    .product-name  a {
      text-decoration: none;
    }

.product-name h1{
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    color: white;
}
.product-name p{
    color: grey;
}
.product-price p span{
    font-weight: bold;
}
.product-name button{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  height: 70px;
  width: 70px;
  gap: 2px;
  text-align: left;
  padding: 10px;
  border: none;
  background-color: #ff6b2c;
  color: white;
  border-radius: 50%;
}
@media screen and (min-width:320px) and (max-width:768px){
    .category-bar-left{
        display: none;
    }
    .category-bar{
        align-items: center;
        justify-content: center;
    }
    .search-bar{
        text-align:center;
    }

    .product-grid-parent{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-grid{
        width: 90%;
    }
}
/* ===== FOOTER WRAPPER ===== */
.foo{
  padding:20px;
  background-color: #ff6b2c;
}

.footer {
  background: #fff;
  border-radius: 30px;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== NEWSLETTER ===== */
.footer-top {
  padding: 50px 20px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.651); */
}

hr{
  margin: 0px 30px;
}

.newsletter {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.news-left h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.news-left p {
  opacity: 0.8;
  font-size: 15px;
}

.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-form input {
  padding: 14px 16px;
  width: 260px;
  border-radius: 8px;
  border: 1px solid black;
  outline: none;
}

.news-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  background: #ff7a2f;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.news-form button:hover {
  background: #ff8c4a;
}

/* ===== FOOTER CONTENT ===== */
.footer-main {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 5px;
}
.f-logo-main{
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}
.f-logo{
  width: 30px;
  height: 30px;
  border-radius: 10% 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s ease all;
 
}
.f-logo img{
  width: 20px;
  filter: grayscale(100%);
  filter: invert(100%);
}
.f-logo:hover{
  transform: scale(1.2);
   box-shadow: 0px 0px 10px #ff6b2c;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 14px;
}

/* ===== FOOTER LINKS ===== */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ff7a2f;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  /* border-top: 1px solid rgba(0, 0, 0, 0.644); */
  padding: 18px 20px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px;
  }
}

@media (max-width: 600px) {
  .newsletter {
    flex-direction: column;
    align-items: start;
  }

  .news-form input {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
}

/* sudem */
.subdem{
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: #fff;
  box-shadow: 0px 0px 3px gray;
  color: black;
  width: 290px;
  min-height: 110vh;
  text-align: left;
  display: none;
  justify-content: start;
  align-items: start;
  padding-top: 30px;
  padding-left: 20px;
  gap: 30px;
  flex-direction: column;
}

.subdem a{
  font-size: 20px;
}
/* Best Seller page */

.product{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

/* MOBILE */
@media(max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .welcome {
    flex-direction: column;
    text-align: center;
  }

  .sidebar {
    display: none;
  }
}

.bs{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}

.prod{
    background:snow;
    width:250px;
    border-radius: 10px;
    color:black;
    position: relative;
    border: 1px solid black;
     overflow: hidden;
}
.prod .new{
  width: 10%;
  position: absolute;
  top: -1px;
  left: -2px;
  display: none;
 
}
.heart{
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius:50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: whitesmoke;
  top: 190px;
  right: 10px;
}
.heart img{
  width: 70%;
}

.gm{
    position: absolute;
    top: 195px;
    left: 10px;
    padding: 3px 7px;
    border-radius: 6px 20px 20px 20px;
    font-size: 12px;
    font-weight: 700;
    background-color:#ff7a2f;
    color: white;
}

.prod .product-img{
    width:100%;
    /* transition: transform 0.45s ease, filter 0.45s ease; */
}

.prod .proc{
    width: 70px;
}

.prod section{
    padding-left: 12px;
    padding-bottom: 12px;
}

.prod section .atc{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width:94%;
    background: black;
    color:white;
    padding: 10px 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* HOVER (DESKTOP) */
.prod:hover .product-img {
    /* transform: scale(1.18);
    filter: brightness(1.05); */
}

/* TAP (MOBILE) */
.prod:active .product-img {
    /* transform: scale(1.22); */
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  /* border-radius: 8/px; */
  overflow: hidden;
  width: 94%;
  margin-bottom: 10px;
}
.qty button{
        width: 32px;
      height: 32px;
      font-size: 18px;
      border-radius: 50%;
       border:none;

}


.qty-btn {
  width: 30%;
  height: 36px;
  border: none;
  background: #f5f5f5;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}
.qty-input {
  width: 40%;
  height: 36px;
  border: none;
  text-align: center;
  background-color: transparent;
  color:gray;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .qty-btn {
    width: 30%;
    height: 32px;
  }
  .qty-input {
    width: 40%;
    height: 32px;
  }
}
.privacy-main{
  /* margin-left: 20px; */
  display: flex;
  gap: 20px;
  background: #ff6b2c;
  padding: 20px;
}
.privacy-main .qwe{
  border: 10px solid white;
  background: #fff;
  border-radius: 20px;
  background: fff;
}
.table-fix-parent{
  width: 500px;
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;

}
.table-fix{
  position:sticky;
  right: 10px;
  bottom: 0px;
  top: 100px;
  min-height: 100vh;
  
}
.content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.privacy-heading{
  text-align: center;
  padding: 0px 50px;
}
.privacy-para{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-para h2{
  color: #ff6b2c;
  padding-top: 10px;
} 
.privacy-para ul {
  display: grid;
  grid-template-columns: auto auto;
  padding-left: 20px;
}