*{
    padding: 0;
    margin: 0;
    transition: 0.2s;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
html{
    scroll-behavior: smooth;
}


.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    position: fixed;
    z-index: 1;
}
.nav .in{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px;
    width: 90%;
    background: rgba(255, 255, 255, 0.151);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.nav .conts{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.nav .conts .actions{
    display: flex;
    align-items: center;
}

.nav .conts .search{
    display: flex;
    align-items: center;
}
.nav .conts img{
    width: 200px;

}

.nav .conts .search .searchIcon, .nav .conts .actions .cart, .nav .conts .actions button{
    padding: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    background: #339966;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}


/* login */

.nav .conts .actions button{
    border: none;
    outline: none;
    padding: 20px 80px;
    border-radius: 60px;
}


.nav .conts .actions .cart{
    background: #990000;
}

.nav .conts .search .searchIcon:hover{
    background: #1e5c3d;
    scale: 1.09;
    transition: ease 0.5s all;
}

.nav .conts .search .searchIcon.searchii{
    /* Hide on Big screen */
    display: none;
}


.nav .conts .search .searchIcon.cancel{
    margin-left: -22px;
}



.nav .conts .search input{
    width: 300px;
    border: 0;
    outline: none;
    background: white;
    border-radius: 10px;
    padding: 10px 10px;
    border: 1px rgba(0, 0, 0, 0.322) solid;
}
.nav .conts .search input:focus{
    border: black 1.2px solid;
}

.heroSection{
    background-image: url("../images/hero.jpg");
    background-size: cover;
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    height: auto;
    padding-bottom: 30px;
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    text-align: center;
}

.title img{
    width: 100px;
}
.title h2{
    font-weight: bolder;
    font-size: 5rem;
    color: white;
}

.title p.ptit{
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.651);
}


   .nav .in .conts.mobileMenu .icon{
        display: none;
    }



.browseMarkets{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff1e;

}

.browseMarkets .brows form{
    padding: 30px;
    display: flex;
    margin-top: 20px;
    background: #33996610;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.browseMarkets .brows form .form-group{
    margin: 0px 30px;

}

.browseMarkets .brows form .form-group label{
    font-size: 13px;
    color: rgba(0, 0, 0, 0.452);
}
.browseMarkets .brows form .form-group select{
    background: white;
    border: 1px solid #1e5c3d44;
    border-radius: 10px;
    width: 200px;
    padding: 8px 15px;
    color: rgba(0, 0, 0, 0.76);

}
.browseMarkets .head h2{
    font-size: 2rem;
    padding: 10px;
    text-transform: uppercase;
    color: #339966;
    text-align: center;
}

.heroSection .browseBTN{
    padding: 15px 50px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #339966;
    color: white;
}

.heroSection .browseBTN:hover{
    scale: 0.98;
    background: white;
    color: #339966;
    transition: 0.5s;
    border: #1e5c3d solid 2px;
}

/* position */
/* PRODUCT CARD */
.products{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;          /* scrollable horizontally */
  scroll-snap-type: x mandatory; /* enable horizontal snapping */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    overflow-x: scroll;
    width: 100%;
    margin-bottom: 30px; 
}
.productCard{
    scroll-snap-align: start;  /* snap each card to the start */
    flex: 0 0 auto;            /* prevent shrinking */
    width: 400px;
    min-height: 260px;
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-direction: column;
    border-radius: 10px;
}
.productCard .image{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    
    justify-content: center;
    align-items: center;
    background: #33996650;
}

.productCard img{
    width: 100px;
}

.productCard img.bg{
    width: 200px;
}

.productCard .mini{
    width: 200px;
    display: flex;
    align-items: center;
    /* margin-bottom: -200px; */
    min-height: 30px;
    /* min-height: 300px; */
}
.productCard .mini img{
    width: 60px;
    margin: 2.5px;
    border: #ffffff 1px solid;
    border-radius: 5px;
}
.productCard .desc{
    margin-top: -6px;
    width: 200px;
    background: #339966;
    padding: 10px;
}

.productCard .desc h3{
    font-size: 1.2rem;
    color: white;
}

.productCard .desc p{
    font-size: 13px;
    padding: 0px 0px;
    color: white;
}

.productCard .desc .price p{
    font-size: 10px;
    padding: 0;
    margin-top: 10px;
}

.productCard .desc .price h3{
    font-size: 1.3rem;
}

.desc p.categories{
    background: #1e5c3d;
    padding: 5px;
    width: fit-content;
    border-radius: 5px;
    font-size: 10px;
    margin-right: 3px;
}
.desc .ann{
    display: flex;
    justify-content: space-between;
}

.desc .ann .count{
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.desc .ann .addToCart{
    display: flex;
}


.desc .ann .count button, .desc .addToCart button{
    margin-top: 5px;
    width: 100%;
    padding: 8px 10px;
    margin: 1px;
    background: #47cc8a;
    outline: none;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
}

.desc .addToCart button{
    margin-top: 10px;
    border-radius: 10px;
    width: 100%;
    background: #990000;
}

.desc .ann .count button.act.a{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.desc .ann .count button.act.b{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.desc .ann .count button.act:hover{
    background: #1e5c3d;
    transition: 0.3s;
}

.desc .tags{
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.productCard .desc p.description{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.747);
}

/* Market Card */
.marketCard{
    backdrop-filter: blur(6px);
    width: auto;
    background: #faf74b2a;
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    margin-right: 10px;
}
.marketCard img{
    width: 60px;
    border-radius: 13px;
}
.marketCard .name{
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding-left: 10px;
    color: white;
}
.marketCard .name h3{
    font-size: 15px;
}

.marketCard .name p{
    font-size: 13px;
    color: #82f0b9;
}

.marketSlider{
    display: flex;
}





.productCard .image{
    border-radius: 0;
    background: transparent;
}
.productCard{
    flex-direction: column;
    width: 190px;
}
.productCard img.bg{
    width: 190px;
}


.productCard .mini img{
    width: 180px;
    text-align: center;
    margin: 3%;
}

.productCard .desc{
    width: 170px;
}

.headd{
    padding: 30px;
    background:  linear-gradient(to bottom, #33996617, #33996600);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.headd h3{
    font-size: 3rem;
    font-weight: bold;
    color: black;
}



.howitWorks {
  padding: 60px 20px;
  background:  linear-gradient( to bottom, #f9f9f9 #f9f9f900);
  text-align: center;
  border-radius: 12px;
}

.howitWorks .head h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.howitWorks .head h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #1e5c3d;
  margin: 8px auto 0;
  border-radius: 3px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
      display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step .number {

  background: #339966;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}



.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
  margin-top: 40px;
}

.footer p {
  margin: 0;
}
.footer .p{
    margin-bottom: 15px;
}

.footer a{
    border-radius: 5px;
    text-decoration: none;
    color: white;
    padding: 10px;
    background: #339966;
}
@media screen and (max-width:1000px) {

    .nav .in{
        flex-direction: column;
        padding: 15px;
        width: 90%;
    }

    .nav .in .conts{
        flex-direction: column;
        margin: 10px 0px;
    }

     .nav .in .conts.mobileMenu{
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .nav .in .conts.mobileMenu .icon{
        display: block;
        padding: 15px;
        background: #339966;
        color: white;
        border-radius: 10px;
    }

    .nav .in .actions{
        margin-top: 50px;
    }

    .nav .in .conts .search, .nav .in .actions{
        display: none;
    }

    .nav .conts .search .searchIcon.searchii{
    /* Hide on Big screen */
    display: block;
}


.title{
    align-items: flex-start;
    width: 90%;
    padding-top: 230px;
    
}

.title img{
    width: 60px;
}
.title h2{
    font-weight: bolder;
    font-size: 2rem;
    color: white;
}

.title p.ptit{
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: #3399663f;
    width: 90%;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.651);
}


.heroSection{
    align-items: flex-start;
    height: auto;
    padding-bottom: 30px;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95;
}


.browseMarkets{
    width: 85%;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff1e;

}

.browseMarkets .head h2{
    font-size: 1rem;
    padding: 5px;
    text-transform: uppercase;
    color: #339966;
    text-align: center;
}

.browseMarkets .brows form{
    width: 95%;
    padding: 10px;
    display: flex;
    margin-top: 20px;
    background: #33996610;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}

.browseMarkets .brows form .form-group select{
    background: white;
    border: 1px solid #1e5c3d44;
    border-radius: 10px;
    width: 300px;
    padding: 10px 15px;
    color: rgba(0, 0, 0, 0.76);

}

.products:first-child {
    margin-left: 100px;
}

.productCard .image{
    border-radius: 0;
}
.productCard{
    flex-direction: column;
    width: 80%;
}
.productCard img.bg{
    width: 86%;
}

.productCard .mini{
    width: 100%;
}

.productCard .mini img{
    width: 85%;
    text-align: center;
    margin: 3%;
}

.productCard .desc{
    width: 80%;
}

/* Market Card */
.marketCard{
    width: 300px;
}

.marketCard p{
    background: transparent;
}


.headd h3{
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

}