@font-face {
  font-family: 'Rekalgera';
  src: url('../fonts/rekalgera-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* === Base Colors (HEX) === */
  --pakistan-green: #1D3B1F;
  --pistachio: #51DB49;
  --dark-green: #14351D;
  --white: #FFFFFF;
  --gray:#E8E8E8;
  --gray2:#545454;
  --black: #000000;

  --brunswick-green: #2B4331;

  /* === Gradients === */
  --gradient-top: linear-gradient(0deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-right: linear-gradient(90deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-bottom: linear-gradient(180deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-left: linear-gradient(270deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-top-right: linear-gradient(45deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-bottom-right: linear-gradient(135deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-top-left: linear-gradient(225deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-bottom-left: linear-gradient(315deg, #13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
  --gradient-radial: radial-gradient(#13331C, #1D3B1F, #B8D584, #152C22, #2B4331);
}

html, body{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body{
    font-family: 'Inter';
}

ul{
    list-style: none;
}
.container{
    width:90%;
    margin:auto
}

a{
    text-decoration: none;
    color: none;
}

.header{
    height: 100px;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}



.header .logo{
    height: 55px;
    width: 120px;
    background: url('../assets/logo.svg');
    background-position: center;
    object-fit: contain;
}

.header .nav{
    display: flex;
    gap: 20px;
    height: 40px;
    align-items: center;
    align-content: center;
}

.nav .nav-item{
    font-family: inter;
    font-weight: 400;
    cursor: pointer;
    color: var(--dark-green);
}

.nav .nav-item:hover{
    text-decoration: underline;
    color: var(--pistachio);
}

.nav .nav-item.active{
    background: var(--pistachio);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--white);
}

.header .cart-icon{
    width:35px;
    height: 35px;
    background: url('../assets/cart.svg');
    object-fit: contain;
    background-size: 80%;
    background-repeat: no-repeat;
}


/* Hero section styles */
.hero {
    /* Add your hero section styles here */
    width:calc(100% -100px);
    min-height:calc(520px - 200px);
    background: var(--pistachio);
    border-radius: 50px;
    padding: 90px 70px;
    background: var(--pistachio) url('../assets/hero.png');
    background-repeat: no-repeat;
    background-position: center right;
}

.banner {
    /* Add your hero section styles here */
    width:calc(100% -100px);
    min-height:calc(520px - 200px);
    background: var(--pistachio);
    border-radius: 50px;
    padding: 90px 70px;
    background-repeat: no-repeat;
    background-position: center right;
}

.glow_bg {
    /* Add glowing background effect styles here */
}

.hero_bg {
    /* Add hero background styles here */
}

.hero_inner {
    /* Styles for inner hero content */
    max-width: 600px;
}

.hero_title {
    font-family: 'Rekalgera', 'Inter', sans-serif;
    font-size: 4.2rem;
   /* font-weight: bold; */
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1em;
}

.hero .btn {
    width: 120px;
    display: flex;
    align-items: center;
    background: var(--dark-green);
    border-radius: 30px;
    padding: 12px 28px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(81, 219, 73, 0.15);
    transition: background 0.2s;
}

.hero .btn:hover {
    background: var(--pakistan-green);
}

.hero .text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-right: 10px;
}

.hero .btn .next_icon {
    width: 20px;
    height: 20px;
    background: url('../assets/next.svg') no-repeat center center;
    background-size: contain;
}

.category_list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr); /* Default: small screens */
    padding: 50px 0px;
    justify-content: center;
}



.category_list .item{
    height: 88px;
    background: #13331C;
    border-radius: 10px;
    align-items: center;
    align-content: center;
    color: var(--white);
    text-align: center;
}
.category_list .item .text{}
.category_list .item.perisable{}
.category_list .item.drink{}
.category_list .item.grains{}
.category_list .item.assorted{}
.category_list .item.spices{}
.category_list .item.groceries{}



.title_box{}

.title_box .title{
    font-size: 48px;
    color: var(--pistachio);
    font-family: inter;
    font-weight: 800;
}
.title_box .subtitle{
    color: var(--gray2);
    font-size: 20px;
}

.horizontal_scroll {
    margin: 20px 0px 50px;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: thin; /* For Firefox */
    padding: 30px 0;
}

.horizontal_scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal_scroll::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

.product_box {
    /* Styles for the product box container */
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
    height: fit-content;
}
.shop{
    display: flex;
    gap: 20px;
    padding-top: 100px;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .shop {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .category_filter_wrapper {
        display: none;
        width: 100%;
        max-width: none;
    }
    
    .category_filter_wrapper.mobile-active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1050;
        background: white;
        overflow-y: auto;
        padding: 20px;
        border-radius: 0;
        margin: 0;
    }
    
    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .mobile-filter-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .mobile-filter-close:hover {
        background-color: #f8f9fa;
    }
    
    .product_image {
        height: 200px;
        width: 100%;
        max-width: 250px;
    }
    
    .product_image img {
        height: 100%;
        width: 100%;
    }
    
    .shop_list.grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
   /* .hero_title {
        font-size: 1.5rem;
        line-height: 1.3;
    } */
}

@media (max-width: 576px) {
    .shop_list.grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product_image {
        height: 180px;
        width: 100%;
    }
    
    .product_image img {
        height: 100%;
        width: 100%;
    }
    
    .category_filter_wrapper.mobile-active {
        padding: 15px;
        width: auto;
    }
    
    .mobile-filter-header h5 {
        font-size: 18px;
    }
    
    .product_name {
        font-size: 1rem;
        min-height: 2.4rem;
    }
    
    .product_price {
        font-size: 1.1rem;
    }
}
        

/* Responsive category filter styles */
.category_filter_wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
    margin-bottom: 20px;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category_filter_wrapper .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #1c934c;
    padding-bottom: 10px;
}

.category_filter_wrapper .item {
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 14px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.category_filter_wrapper .item:hover {
    background-color: #e8f5e8;
    border-color: #1c934c;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(28, 147, 76, 0.2);
}

.category_filter_wrapper .item.active {
    background-color: #1c934c;
    color: white;
    border-color: #1c934c;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(28, 147, 76, 0.3);
}
        

.shop_list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    
}

/* Product image improvements */
.product_image {
    border-radius: 10px;
    height: 280px;
    width: 250px;
    background: var(--gray);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.product_image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product_image img:hover {
    transform: scale(1.05);
}

.product_name {
    /* Styles for the product name */
    font-size: 18.4px;
    font-weight: 600;
    color: var(--black);
}

.product_price {
    /* Styles for the product price */
    color: rgba(0, 0, 0, 0.5);
    font-family: inter;
    margin-bottom: 30px;
    font-weight: 600;
}
.product_box .btn{
    width: 150px;
    padding: 10px;
    background: var(--dark-green);
    color: var(--pistachio);
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
}

.features_list {
    display: grid;
    gap: 10px;
    margin: 50px 0;
    grid-template-columns: repeat(3, 1fr); /* Medium screens */
    gap: 20px;
    
}

.features_list .title{
    text-align: left;
    font-size: 24px;
    font-weight: 600;
}
.features_list .subtitle{
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray)
}
.features_list .icon{
    width: 50px;
    height: 50px;
    background: #51DB49;
    margin-bottom: 20px;
}
.features_list .item .icon.bus{
    background: url("../assets/bus.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain 90%;
}
.features_list .item .icon.lock{
    background: url("../assets/lock.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain 90%;
}
.features_list .item .icon.verify{
    background: url("../assets/verified.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain 90%;
}
.features_list .item .icon.clock{
    background: url("../assets/clock.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain 90%;
}
.features_list .item .icon.percent{
    background: url("../assets/percent.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain 90%;
}
.features_list .item .icon.chat{
    background: url("../assets/chat.svg");
    background-repeat: no-repeat;
    background-position: center;
    
    background-size: 90%;
}

.features_list .item{
    height: calc(222px - 100px);
    background: #13331C;
    border-radius: 10px;
    align-items: center;
    align-content: center;
    color: var(--white);
    text-align: center;
    padding: 50px 20px;
}



.testimonials{
    height: auto;
    border: var(--pistachio) 1px solid;
    background: url("../assets/quote.svg");
    background-size: 100px;
    background-position: right 30px;
    background-repeat: no-repeat;
    padding: 50px 30px;
    border-radius: 30px;
}
.testimonials .inner{
    width: 300px;
    height: 100%;
    border-radius: 5px;
}


.testimonials .testimony{
    font-family: inter;
    font-weight: 500;
    color: var(--gray2);
    font-size: 16px;
    margin-bottom: 50px;
}
.testimonials .user{
    font-size: 26px;
    color:var(--black);
    font-weight: 600;
}
.stars{
    display: flex;
    gap:5px;
    height:20px;
    width: 90px;
}
.star{
    background: url("../assets/star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    
}


.whatsapp_section{
    width: calc(100% - 100px);
    min-height: 520px;
    background: var(--white) url("../assets/bg_hero.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(9, 9, 9, 0.15);
    padding: 50px 50px;
}
.whatsapp_section .title{
    font-family: 'Rekalgera';
    color: var(--pistachio);
    font-size: 56px;
    line-height: 65px;
}

.whatsapp_section .title2{
    font-size: 36px;
    color:var(--gray2);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "inter";
}
.inner_side{
    max-width: 600px;
}

.whatsapp_section .text2{
    font-size: 20px;
    color:var(--gray2);
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "inter";
    line-height: 30px;
}


.stay_updated{
    padding: 50px 0px;
    max-width: 761px;
    margin:auto;
}

.stay_updated .inner_text{
    max-width: 575px;
    margin: 0px auto 50px;
}

.subscribe_field{
    height: 70px;

}
.stay_updated .title{
    font-family: "Rekalgera";
    font-size: 64px;
    text-align: center;
}

.stay_updated .subtitle{
    font-family: "inter";
    font-size: 20px;
    text-align: center;
}
.stay_updated .subscribe_field{
    height: 42px;
    display: flex;
    gap:10px;
    padding: 10px;
    background: var(--gray);
    border-radius: 30px;
}
.stay_updated .subscribe_field .btn{
    background: var(--pistachio);
    height: 40px;
    width: 150px;
    border-radius: 20px;
    align-items: center;
    align-content: center;
    text-align: center;
    cursor: pointer;
}
.stay_updated .subscribe_field input{
    width: calc(100% - 160px);
    height: 45px;
    padding-left: 30px;
    background: transparent;
    outline: none;
    border: none;
}
.footer{
    width: calc(100% - 200px);
    min-height: 450px;
    background: var(--dark-green);
    padding: 1px 100px;
}

.footer_contents{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr); /* Default: small screens */
    justify-content: center;
}
.footer_grid{
    margin-top: 50px;
    padding: 20px;
}

.glow_logo{
    width: 150px;
    height: 80px;
    background: url("../assets/logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.copyright{
    color: white;
    font-size: 14px;
    margin-top: 20px;
}
.copyright.flex{
    display: flex;
    gap: 15px;
}
.cardicons{
    height: 18px;
    width:120px;
    background: url("../assets/cardicons.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}



.visa{}

.mastercard{}

.express{}

.paypal{}

.footer_h2{
    font-size: 20px;
    font-weight: 600px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter';
}

.footer_p{
    font-size: 16px;
    font-weight: 600px;
    color: #ccc;
    margin-bottom: 20px;
    font-family: 'Inter';
}

.socials{
    display: flex;
    gap:5px;
}

.socials .icon{
    width: 20px;
    height: 20px;
    background: #ccc;
    
}
.socials .icon.instagram{
    background: url("../assets/instagram.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.socials .icon.facebook{
    background: url("../assets/facebook.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.socials .icon.tiktok{
    background: url("../assets/tiktok.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.socials .icon.whatsapp{
    background: url("../assets/whatsapp.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.aboutus{
    margin-top: 50px;
}
.aboutus .title, .contact_header .title, .faq_header .title{
    font-family:'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 64px;
    font-weight: 800;
}
.aboutus .subtitle, .contact_header .subtitle, .faq_header .subtitle{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1E1E1E;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.aboutus .paragraph{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1E1E1E;
    line-height: 20px;
}
@media (max-width: 991px) {
    .layout1, .layout2{
        flex-wrap: wrap;
    }
}
.layout1, .layout2{
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.layout2{
    flex-direction: row-reverse;
}
.layout1 .img, .layout2 .img{

    max-width: 550px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.layout1 .img{
    background: url('../assets/14945b2acb95d7c03b5ad247570bb2f340e45554.jpg');
}

.layout2 .img{
    background: url('../assets/cbd121f7a442b6c8767fb2afe0d5defeddf9314f.jpg');
}

.layout1 .details, .layout2 .details{
    align-items: center;
    align-content: center;
}

.layout1 .title, .layout2 .title{
    font-family: 'Rekalgera';
    font-size: 40px;
}

.layout1 .description, .layout2 .description{
    font-family: 'Inter';
    font-size: 16px;
    color: #1E1E1E;
    line-height: 20px;
}
.contact_page{
    display: flex;
    gap: 20px;
}
.contact_page .contact-form{
    width: calc(100% - 300px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: #ddd 0px 8px 10px;
}
.contact_page .contact-info{
    background: white;
    width: 300px;
    padding: 20px;
    border-radius: 20px;
    color: var(--gray2);
    box-shadow: #ddd 0px 8px 8px;
}
.contact_page .contact-info ul a{
    text-decoration: none;
    color: var(--gray2);
}
.contact_page .contact-info ul{
    padding: 0;
    color: var(--gray2);
    font-size: 15px;
}
.contact_page .contact-info ul li{
    background: #e8e8e8;
    padding: 20px 20px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 13px;
}
.form_row{
    margin-top: 30px;
}
.contact_page .flex{
    display: flex;
    gap:20px;
    justify-content: stretch;
}
.contact_page .flex .form_row{
    width:50%
}
.contact_page label{
    font-family: "Inter", sans-serif;
}
.contact_page input{
    width: 100%;
    height: 40px;
    margin-top: 10px;
    border: solid #DDD 1px;
    border-radius: 5px;
    padding: 5px 10px;
}
.contact_page textarea{
    width: 100%;
    height: 150px;
    margin-top: 10px;
    border: solid #DDD 1px;
    border-radius: 5px;
    padding: 5px 10px;
}

button.btn{
    height: 50px;
    padding:10px 20px;
    background: var(--pistachio) !important;
    color: #13331C;
    font-family: 'inter';
    align-content: center;
    border:none;
    border-radius: 30px;
    width: 200px
}

@media (max-width: 600px) {
    .faq_header {
        margin-top: 20px;
        font-size: 44px !important; 
    }
}

@media (min-width: 1024px) {
    .category_list {
        grid-template-columns: repeat(6, 1fr); /* Large screens */
    }
    
    
}
@media (min-width:600px) {
    .category_list {
        justify-content: center;
    }
   
}
@media (max-width: 1024px) {
     .features_list {
        grid-template-columns: repeat(2, 1fr); /* Medium screens */
    }
    .footer_contents{
        grid-template-columns: repeat(2, 1fr); /* Default: small screens */
    }
}
@media (max-width: 600px) {
     .features_list {
        grid-template-columns: repeat(1, 1fr); /* Medium screens */
    }

    .header{
        min-height: 100px;
        height: auto;
        width: 100%;
        background: var(--white);
        display: block;
        align-items: center;
        position: relative;
        padding: 50px 0;
    }

    .header .logo{
        height: 55px;
        width: 120px;
        margin: auto;
    }

    .header .nav{
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .header .cart-icon{
        position: absolute;
        right: 20px;
        top: 20px;
    }



    .hero{
        min-height:calc(150px);
    }
    .hero .btn {
        margin: auto;
    }
    .hero_title{
        font-size: 3em;
        text-align: center;
        text-shadow: #13331C44 1px 2px 2px;
    }
    .whatsapp_section{
        background: none;
        background-size: 200px;
        min-height: 200px;
    }
    .whatsapp_section .title{
        font-size: 40px;
        line-height: 40px;
        text-align: center;
        text-shadow: #13331C32 0px 2px 2px;
    }
    .whatsapp_section .title2{
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        margin-top: 20px;
        text-shadow: #13331C32 0px 2px 2px;
    }
    .whatsapp_section .text2{
        font-size: 16px;
        line-height: 20px;
        text-align: center;

    }

    .whatsapp_section .title2{
    }
    .footer_contents{
        
        grid-template-columns: repeat(1, 1fr); /* Default: small screens */
        

    }
    
}