* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', 'Hind Siliguri', sans-serif;
    background: #f3f7f2;
    color: #15251c
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0
}

.container {
    width: min(1980px, 98%);
    margin: auto
}

.topbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

.nav {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 14px
}

.category-btn {
    background: #098b52;
    color: #fff;
    padding: 13px 17px;
    border-radius: 5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

.search-box {
    flex: 1;
    display: flex;
    height: 42px;
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    overflow: hidden
}

.search-box input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0 15px;
    outline: 0
}

.search-box button {
    width: 54px;
    background: #e76324;
    color: #fff
}

.quick-menu {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 13px;
    font-weight: 800;
    color: #395a4b;
    white-space: nowrap
}

.quick-menu a.active,
.quick-menu a:hover {
    color: #f05a24
}

.cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #edf8f2;
    position: relative
}

.cart-btn b {
    position: absolute;
    top: -4px;
    right: -3px;
    background: #f05a24;
    color: #fff;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px
}

.page-wrap {
    padding: 5px 0 12px
}

.top-layout {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 22px
}

.sidebar {
    background: #fff;
    border-radius: 7px;
    height: max-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    overflow: hidden
}

.sidebar h4 {
    padding: 18px;
    border-bottom: 1px solid #eef1ef;
    font-size: 14px
}

.sidebar ul {
    list-style: none;
    padding: 10px 0
}

.sidebar li {
    padding: 13px 18px;
    color: #3a5d4d;
    font-size: 14px;
    transition: .25s
}

.sidebar li:hover {
    background: #effaf4;
    color: #098b52
}

.hero {
    min-height: 284px;
    border-radius: 9px;
    overflow: hidden;
    background: radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .9), transparent 28%), linear-gradient(90deg, #e6ffe9 0%, #fbfff5 50%, #d8f5df 100%);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    padding: 38px;
    position: relative
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70px;
    background: linear-gradient(90deg, rgba(15, 134, 75, .12), rgba(255, 155, 43, .15))
}

.hero h1 {
    font-size: 38px;
    color: #0b8b52;
    line-height: 1.1
}

.hero h1 span {
    color: #f05a24
}

.hero h2 {
    font-size: 24px;
    margin: 8px 0;
    color: #193426
}

.hero p {
    max-width: 500px;
    color: #567062;
    line-height: 1.6
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.app-buttons button {
    background: #111;
    color: #fff;
    border-radius: 5px;
    padding: 9px 13px;
    font-size: 13px
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    min-height: 210px;
    position: relative;
    z-index: 2
}

.truck {
    font-size: 70px;
    animation: float 3s infinite ease-in-out
}

.person {
    font-size: 105px
}

.phone {
    width: 138px;
    height: 210px;
    background: #fff;
    border: 8px solid #183b33;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    padding: 10px
}

.phone-top {
    width: 38px;
    height: 5px;
    border-radius: 8px;
    background: #193b35;
    margin: auto
}

.phone-screen {
    height: 170px;
    background: #f5fff5;
    border-radius: 14px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.check {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #19b36b;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px
}

.cart-icon {
    font-size: 34px
}

.phone-screen button {
    background: #f05a24;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700
}

.whatsapp {
    display: inline-flex;
    margin: 16px 0 20px;
    padding: 9px 14px;
    background: #eafff2;
    border: 1px solid #92dfb1;
    color: #098b52;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-head h3 {
    font-size: 21px
}

.section-head a {
    color: #e76324;
    font-weight: 800;
    font-size: 13px
}

.full-head,
.full-products {
    width: 100%
}

.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.product {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    position: relative;
    transition: .25s;
    overflow: hidden
}

.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1)
}

.product img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 7px;
    background: #f6f6f6
}

.product h4 {
    font-size: 13px;
    margin: 10px 0 6px;
    min-height: 34px
}

.product p {
    color: #111;
    font-weight: 800;
    font-size: 14px
}

.add-cart {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #0a8b52;
    color: #fff;
    width: 38px;
    height: 32px;
    border-radius: 20px;
    font-size: 11px;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s
}

.product:hover .add-cart {
    opacity: 1;
    transform: translateY(0)
}

.shop-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 18px 0;
    color: #e76324;
    justify-content: flex-end;
    font-size: 13px
}

.shop-btn {
    margin-right: auto;
    background: #098b52;
    color: #fff;
    padding: 11px 20px;
    border-radius: 4px;
    font-weight: 700
}

.banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0
}

.banner {
    min-height: 350px;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden
}

.banner h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px
}

.banner button {
    background: #0c8c55;
    color: #fff;
    padding: 9px 14px;
    border-radius: 4px
}

.banner span {
    font-size: 76px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, .15))
}

.orange {
    background: linear-gradient(135deg, #ffb236, #f47b25)
}

.green {
    background: linear-gradient(135deg, #2bb673, #159058)
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px
}

.subscribe,
.dashboard-card {
    background: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05)
}

.subscribe h4,
.dashboard-card h4 {
    margin-bottom: 14px;
    color: #51685e
}

.subscribe div {
    display: flex;
    gap: 10px
}

.subscribe input {
    flex: 1;
    height: 42px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 0 14px
}

.subscribe button {
    background: #f05a24;
    color: #fff;
    padding: 0 18px;
    border-radius: 4px
}

.icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.icons span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f6f4;
    display: grid;
    place-items: center;
    color: #0a8b52;
    font-weight: 800
}

/* footer{position:fixed;bottom:0;left:0;width:100%;background:#087448;color:#fff;z-index:25}
.footer-inner{height:54px;display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}.footer-inner span{border-radius:30px;background:rgba(255,255,255,.16);padding:7px 12px;font-size:12px;font-weight:800} */
.mini-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.mini-header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.mini-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f05a24;
    font-size: 25px;
    font-weight: 900;
}

.logo-circle {
    width: 58px;
    height: 58px;
    border: 2px solid #f05a24;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #098b52;
    font-size: 34px;
    font-weight: 900;
}

.mini-menu,
.mini-right {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.mini-menu a,
.mini-right a,
.mini-right span {
    padding: 0 18px;
    border-left: 1px solid #e5e5e5;
}

.mini-menu a:hover,
.mini-right a:hover {
    color: #f05a24;
}


/* Footer */
.footer {
    /* position:fixed; */
    bottom: 0;
    left: 0;
    width: 100%;
    background: #087448;
    color: #fff;
    /* z-index:25 */
}

.footer-inner {
    background: linear-gradient(135deg, #08663f, #098b52, #075f3b);
    border-radius: 18px;
    padding: 24px 28px 18px;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
    overflow: hidden;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.footer-brand,
.footer-delivery {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    padding: 0 22px;
    min-height: 58px;
    border-right: 1px solid rgba(255, 255, 255, .35);
}

.pay-card {
    background: #fff;
    color: #ffffff;
    min-width: 135px;
    height: 58px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    padding-top: 17px;
    font-size: 16px;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media(max-width:900px) {
    .mini-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }

    .mini-menu,
    .mini-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .mini-menu a,
    .mini-right a,
    .mini-right span {
        border-left: 0;
        padding: 4px 8px;
    }
}

@media(max-width:600px) {

    .footer-brand,
    .footer-delivery {
        border-right: 0;
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }

    .pay-card {
        min-width: 95px;
        height: 48px;
        font-size: 15px;
    }

    .footer-bottom {
        gap: 12px;
        font-size: 13px;
        text-align: center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@media(max-width:1100px) {
    .quick-menu {
        display: none
    }

    .products {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:992px) {
    .top-layout {
        grid-template-columns: 1fr
    }

    .sidebar {
        display: none
    }

    .sidebar.active {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center
    }

    .hero p {
        margin: auto
    }

    .app-buttons {
        justify-content: center
    }

    .products {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .nav {
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap
    }

    .category-btn {
        width: 100%;
        justify-content: center
    }

    .search-box {
        order: 3;
        flex-basis: 100%
    }

    .hero {
        padding: 28px 18px
    }

    .hero h1 {
        font-size: 30px
    }

    .hero h2 {
        font-size: 19px
    }

    .products {
        grid-template-columns: repeat(2, 1fr)
    }

    .banners,
    .bottom-grid {
        grid-template-columns: 1fr
    }

    .banner h3 {
        font-size: 24px
    }
}

@media(max-width:480px) {
    .products {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .product {
        padding: 9px
    }

    .product img {
        height: 105px
    }

    .person {
        display: none
    }

    .truck {
        font-size: 54px
    }

    .footer-inner {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap
    }
}

.category-grid {
    grid-template-columns: repeat(4, 1fr)
}

.grid {
    display: grid;
    gap: 18px
}

    .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    padding: 18px
}
.cat {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800
}

.cat span {
    font-size: 42px
}
@media(max-width:560px) {
     .category-grid {
        grid-template-columns: 1fr 1fr
    }

}

/* Top Mini Header */
.mini-header{
  background:#fff;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.mini-header-inner{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.mini-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#f05a24;
  font-size:24px;
  font-weight:900;
  white-space:nowrap;
}

.logo-circle{
  width:54px;
  height:54px;
  border:2px solid #f05a24;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#098b52;
  font-size:31px;
  font-weight:900;
}

.mini-menu,
.mini-right{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:#333;
  white-space:nowrap;
}

.mini-menu a,
.mini-right a,
.mini-right span{
  padding:8px 14px;
  border-left:1px solid #eee;
}

.mini-menu a:hover,
.mini-right a:hover{
  color:#f05a24;
}


/* Main Menu Header */
.topbar{
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 4px 16px rgba(0,0,0,.07);
}

.nav{
  min-height:62px;
  display:flex;
  align-items:center;
  gap:12px;
}

.category-btn{
  background:linear-gradient(135deg,#098b52,#0bb66b);
  color:#fff;
  padding:13px 18px;
  border-radius:8px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  box-shadow:0 6px 14px rgba(9,139,82,.18);
}

.search-box{
  flex:1;
  height:46px;
  display:flex;
  align-items:center;
  background:#f7faf8;
  border:1px solid #dce8e2;
  overflow:hidden;
  transition:.25s;
}

.search-box:focus-within{
  border-color:#098b52;
  box-shadow:0 0 0 4px rgba(9,139,82,.09);
  background:#fff;
}

.search-box input{
  flex:1;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  padding:0 18px;
  font-size:14px;
}

.search-box button{
  width:58px;
  height:100%;
  background:#f05a24;
  color:#fff;
  font-size:18px;
}

.quick-menu{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:800;
  color:#395a4b;
  white-space:nowrap;
}

.quick-menu a{
  padding:10px 9px;
  border-radius:6px;
  transition:.25s;
}

.quick-menu a.active,
.quick-menu a:hover{
  color:#f05a24;
  background:#fff3ed;
}

.cart-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#edf8f2;
  position:relative;
  font-size:18px;
  flex:0 0 auto;
}

.cart-btn b{
  position:absolute;
  top:-4px;
  right:-3px;
  background:#f05a24;
  color:#fff;
  width:19px;
  height:19px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:11px;
}


/* Responsive */
@media(max-width:1100px){
  .mini-header-inner{
    flex-wrap:wrap;
    justify-content:center;
    padding:10px 0;
    gap:10px;
  }

  .mini-logo{
    width:100%;
    justify-content:center;
  }

  .mini-menu,
  .mini-right{
    flex-wrap:wrap;
    justify-content:center;
    row-gap:6px;
  }

  .mini-menu a,
  .mini-right a,
  .mini-right span{
    border-left:0;
    background:#f7faf8;
    border-radius:30px;
    padding:7px 12px;
  }

  .nav{
    flex-wrap:wrap;
    padding:10px 0;
  }

  .category-btn{
    order:1;
  }

  .cart-btn{
    order:2;
    margin-left:auto;
  }

  .search-box{
    order:3;
    flex-basis:100%;
  }

  .quick-menu{
    order:4;
    width:100%;
    overflow-x:auto;
    padding-bottom:4px;
  }

  .quick-menu::-webkit-scrollbar{
    height:0;
  }

  .quick-menu a{
    background:#f7faf8;
    padding:9px 14px;
  }
}

@media(max-width:600px){
  .container{
    width:min(100% - 20px,1980px);
  }

  .mini-header-inner{
    min-height:auto;
  }

  .mini-logo{
    font-size:21px;
  }

  .logo-circle{
    width:46px;
    height:46px;
    font-size:27px;
  }

  .mini-menu,
  .mini-right{
    font-size:12px;
  }

  .nav{
    gap:10px;
  }

  .category-btn{
    width:calc(100% - 56px);
    justify-content:center;
    padding:12px;
  }

  .cart-btn{
    width:46px;
    height:46px;
  }

  .search-box{
    height:44px;
  }

  .quick-menu{
    gap:8px;
  }

  .quick-menu a{
    font-size:12px;
    padding:8px 12px;
  }
}


/*==============================*/
.footer{
  background:linear-gradient(#003c1b, #1fa55b, #1fa55b, #1fa55b);
  color:#fff;
  padding:45px 0 24px;
  margin-top:40px;
}

.footer-wrap{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(232,200,154,.18);
  border-radius:22px;
  padding:28px;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.ft-main{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:28px;
}

.ft-col h3{
  font-size:26px;
  color:#fff;
  margin-bottom:12px;
}

.ft-col h4{
  font-size:17px;
  color:#fff;
  margin-bottom:14px;
}

.ft-about p{
  color:#fff;
  font-size:14px;
  line-height:1.7;
  max-width:360px;
}

.ft-contact{
  display:grid;
  gap:8px;
  margin-top:16px;
  color:#fff;
  font-size:14px;
}

.ft-col a{
  display:block;
  color:#fff;
  font-size:14px;
  margin-bottom:10px;
  transition:.25s;
}

.ft-col a:hover{
  color:#fff;
  transform:translateX(4px);
}

.ft-social{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.ft-social a{
  background:#df3501;
  color:#fcf9f5;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  margin:0;
}

.ssl-box{
  background:#fff;
  border-radius:14px;
  padding:12px;
  margin-bottom:14px;
}

.ssl-box img{
  width:100%;
  display:block;
  object-fit:contain;
}

.pay-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.pay-list span{
  background:#df3501;
  color:#fcf9f5;
  padding:7px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:800;
}

.delivery-badge{
  display:inline-flex;
  margin-top:14px;
  background:rgba(232,200,154,.12);
  border:1px solid rgba(232,200,154,.22);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
}

.ft-bottom{
  border-top:1px solid rgba(255, 255, 255, 0.2);
  margin-top:26px;
  padding-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
  color:#ffffff;
  font-size:13px;
}

.ft-bottom div{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.ft-bottom a{
  color:#ffffff;
}

.ft-bottom a:hover{
  color:#fff;
}

@media(max-width:992px){
  .ft-main{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .footer{
    padding:28px 0 18px;
  }

  .footer-wrap{
    padding:20px;
    border-radius:16px;
  }

  .ft-main{
    grid-template-columns:1fr;
    gap:22px;
  }

  .ft-col h3{
    font-size:22px;
  }

  .ft-bottom{
    text-align:center;
    justify-content:center;
  }

  .ft-bottom div{
    justify-content:center;
    gap:10px;
  }
}