      * {
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
  box-sizing: border-box;
  text-decoration: none;
}

header {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.headerLeft {
  display: flex;
  align-items: center;
}

.logo {
  padding: 25px 20px;
  border-right: 1px solid black;
}

.headerAddress {
  padding: 20px 20px;
}

.headerAddress h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.headerAddress p {
  font-size: 14px;
}

.searchBox {
  flex-grow: 1;
  background-color: #f8f8f8;
  display: flex;
  border-radius: 15px;
  border: 1px solid #f4f4f4;
}
.searchBox button {
  padding: 15px;
  border: none;
  background-color: transparent;
}

.searchBox input {
  flex-grow: 1;
  border: none;

  background-color: transparent;
}
.searchBox input:focus {
  outline: none;
}

.HeaderBtn {
  display: flex;
  gap: 50px;
  margin-right: 40px;
}

.HeaderBtn button {
  font-size: 16px;
  padding: 20px;
  background: transparent;
  border: none;
}
.HeaderBtn button:last-child {
  color: white;
  border-radius: 5px;
  font-weight: bold;
  background-color: rgb(12, 131, 31);
}







.main-wrapper {
    display: flex;
    height: 100vh;
}
.sidebar {
    width: 130px;
    background: #fff;
    padding: 14px 0;
    box-shadow: 1px 0 6px rgba(0,0,0,0.04);
    overflow-y: auto;
    min-width: 110px;
}
.sidebar-title {
    font-weight: bold;
    font-size: 0.95em;
    padding: 2px 12px 16px 12px;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 13px;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.92em;
    transition: background 0.2s;
    border-radius: 8px;
}
.category-list li.active, .category-list li:hover {
    background: #f3fafd;
    font-weight: bold;
}
.category-list img {
    width: 35px;
    height: 35px;
    margin-bottom: 2px;
    object-fit: cover;
    border-radius: 6px;
    background: #eee;
}
.category-list span {
    text-align: center;
    font-size: 0.94em;
}
.content-area {
    flex: 1;
    padding: 22px 20px;
    overflow-y: auto;
}
.banner {
    width: 100%;
    height: 270px;
    background: linear-gradient(90deg, #ffe08b 60%, #fbe376 100%);
    border-radius: 17px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30,30,30,0.07);
}
.banner-text {
    padding: 32px;
    max-width: 390px;
}
.banner-text h1 {
    font-size: 2.1em;
    margin: 0 0 18px 0;
    font-weight: bold;
    color: #222;
}
.banner-btn {
    font-size: 1.2em;
    padding: 10px 36px;
    background: #39b54a;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 12px;
}
.banner-warning {
    margin-top: 18px;
    color: #222;
    font-size: 1.13em;
}
.banner-img {
    height: 80%;
    position: absolute;
    right: 56px;
    top: 19px;
    max-height: 220px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(120,110,0,0.10);
    background: #fff;
}
.product-row-advanced {
    display: flex;
    gap: 14px;
    background: #fafbfc;
    padding: 16px 0;
    overflow-x: auto;
}

.product-card-adv {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1.5px 6px rgba(30,30,30,0.07);
    padding: 16px 12px 12px 12px;
    min-width: 180px;
    width: 182px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1px solid #eee;
    margin-bottom: 2px;
    transition: box-shadow 0.2s;
}
.product-card-adv:hover {
    box-shadow: 0 2px 10px rgba(50,160,120,0.13);
    border-color: #b2ebcf;
}
.product-card-adv img {
    width: 48px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 8px;
    margin-top: 2px;
}

.time-sm {
    font-size: 0.91em;
    color: #777;
    margin-bottom: 5px;
}

.prod-title {
    font-size: 1.04em;
    font-weight: 500;
    color: #212121;
    text-align: center;
    margin-bottom: 3px;
    min-height: 36px;
    line-height: 1.15;
}

.prod-pack {
    color: #484848;
    font-size: 0.97em;
    margin-bottom: 2px;
    text-align: center;
}

.prod-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.prod-price {
    font-weight: bold;
    font-size: 1.1em;
    color: #212121;
}

.add-btn {
    padding: 3.5px 24px;
    background: #fff;
    outline: 1.5px solid #22c55e;
    border: none;
    border-radius: 7px;
    font-size: 1.06em;
    color: #22c55e;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s,color 0.15s;
}

.add-btn:hover {
    background: #22c55e;
    color: #fff;
}

footer{
  padding: 40px 0px 0px 0px;
}

.footer-mid{
  max-width: 1280px;
  margin: auto;
}

.footer-mid-row1{
  width: 100%;
  display: flex;
  gap: 40px;
}

.footer-mid-row1-left{
  flex-basis: 30%;
}
.footer-mid-row1-left{
  margin-bottom: 20px;
}

.useFullLinks{
  display: flex;
}

.useFullLinks ul{
  flex-basis: 33%;
  list-style: none;
}

.useFullLinks ul li a{
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: rgb(102, 102, 102);
}



.footer-mid-row1-right{
  flex-basis: 70%;
}

.categoriesHeadingRow{
  display: flex;
}

.categoriesHeadingRow h3{
  margin-bottom: 20px;
}


footer {
  background: #fff;
  color: #222;
  padding: 48px 0 0 0;
  font-size: 15px;
}

.footer-mid {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.footer-mid-row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 54px;
  margin-bottom: 30px;
}

.footer-mid-row1-left h3,
.categoriesHeadingRow h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 18px;
  color: #111;
}

.useFullLinks {
  display: flex;
  gap: 48px;
}

.useFullLinks ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.useFullLinks ul li {
  margin-bottom: 10px;
}

.useFullLinks ul li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.useFullLinks ul li a:hover {
  color: #43a047;
  text-decoration: underline;
}

.categoriesHeadingRow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.categoriesHeadingRow a {
  color: #388e3c;
  font-size: 15px;
  text-decoration: none;
}

.categoriesHeadingRow a:hover {
  text-decoration: underline;
}

.footer-mid-row1-right {
  min-width: 250px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.categories-list ul {
  list-style: none;
  padding-left: 0;
}

.categories-list ul li {
  margin-bottom: 8px;
  color: #222;
  font-size: 15px;
}



.footer-bottom {
  background: #fafafa;
  margin-top: 38px;
  padding: 18px 0 0 0;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-bottom span {
  color: #444;
}

.footer-apps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-apps .app-store {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.ICON{
  border-radius: 50%;
}

.footer-social .social-icon {
  background: #fff;
  color: #222;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  border: 1px solid #ddd;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social .social-icon:hover {
  border-color: #328839;
  color: #328839;
}



@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        min-width: 95px;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        height: auto;
    }
    .category-list {
        display: flex;
        flex-direction: row;
    }
    .category-list li {
        margin-right: 14px;
        margin-bottom: 0;
    }
    .content-area {
        padding: 10px 5px;
    }
    .banner-img {
        position: static;
        max-height: 100px;
        height: 50px;
        margin-left: 8px;
    }
    .banner {
        flex-direction: column;
        height: auto;
    }
}





@media only screen and (min-width: 200px) and (max-width: 575px) {
  header {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 15px;
  }
  .headerLeft {
    justify-content: center;
  }
  .logo {
    padding: 10px;
  }
  .headerAddress {
    padding: 10px;
  }
  .headerAddress p {
    font-size: 12px;
  }
  .headerAddress h3 {
    font-size: 15px;
  }
  .searchBox button {
    padding: 10px;
  }

  .HeaderBtn {
    position: fixed;
    width: 100%;
    background-color: white;
    margin-right: 0px;
    justify-content: center;
    bottom: 0px;
  }

  .bannerSection {
    display: none;
  }
  .orderBanner {
    padding: 10px;
    flex-direction: column;
  }

  .categoryItems{
    flex-basis: 25%;
  }

  .productSection{
    padding: 0px 10px;
  }
  .productItems{
    flex-basis: 49%;
  }

  .footer{
    padding-top: 0px;
  }
  .footer-mid-row1{
    flex-direction: column;
    padding: 10px;
  }
}




