
@font-face {
    font-family: 'vazir';
    src: url('../fonts/Vazir-Regular.ttf') format('truetype');
    src: url('../fonts/Vazir-Regular-FD.ttf') format('truetype');
    src: url('../fonts/Vazir-Regular.eot') format('embedded-opentype'),
    url('../fonts/Vazir-Regular-FD.eot') format('embedded-opentype'),
    url('../fonts/Vazir-Regular-FD.woff2') format('woff2'),
     url('../fonts/Vazir-Regular.woff2') format('woff2'),
     url('../fonts/Vazir-Regular-FD.woff') format('woff'),
      url('../fonts/Vazir-Regular.woff') format('woff');
      font-display: block;
}
@font-face {
  font-family: 'bacalisties';
  src: url('../fonts/Bacalisties.ttf') format('truetype');
    font-display: block;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'vazir';
    user-select: none;
}
:root{
    --black : #000;
    --white : #fff;
    --beige : rgb(209, 169, 128);
    --blue : #011936;
}
a{
    text-decoration: none;
}
.text-center{
    text-align:center;
}
.d-flex{
  display: flex;
}
.flex-column{
  flex-direction: column;
}
.d-none{
  display: none;
}
.justify-start{
  justify-content: start;
}
.justify-end{
  justify-content: end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.align-items-center{
  align-items: center;
}
.flex-row-center{
    display:flex;
    align-items:center;
}
.flex-col-center{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.col-6{
    width:50%;
}
.hidden{
  display: none !important;
}
.w-100{
  width: 100%;
}
.white-none{
  white-space: nowrap;
}
.over-none{
  overflow: hidden;
}
.mt-1{
  margin-top: 1rem;
}
.mt-2{
  margin-top: 2rem !important;
}
.mt-3{
  margin-top: 3rem !important;
}
.mt-4{
  margin-top: 4rem !important;
}
.mb-1{
  margin-bottom: 1rem;
}
.mb-2{
  margin-bottom: 2rem !important;
}
.mb-5{
  margin-bottom: 5rem !important;
}
.my-1{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-2{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mx-1{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mr-1{
  margin-right: 1rem;
}
.py-05{
    padding-top:0.5rem !important;
    padding-bottom:0.5rem !important;
}
.py-15{
    padding-top:1.5rem !important;
    padding-bottom:1.5rem !important;
}
.font-15{
  font-size: 15px;
}
.font-17{
  font-size: 17px !important;
}
.green{
  color: #2e7b32;
}
.red{
  color: #f04055;
}
.light-blue{
  color: #009879;
}
.dr-left{
    direction:ltr;
}
.blue-button{
  background-color: #0050b1;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  outline: none;
  border: 1px solid #0050b1;
  cursor: pointer;
}
.green-button{
  background-color: #10833a;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  outline: none;
  border: 1px solid #10833a;
  cursor: pointer;
}
.red-button{
  background-color: #f04055;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  outline: none;
  border: 1px solid #f04055;
  cursor: pointer;
}
.just-three-line{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-results-container {
    position: absolute;
    top: 100%;
    left: 22.2%;
    right: 3rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-left: 10px;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.search-result-price {
    font-size: 13px;
    color: var(--blue);
}

.search-result-price.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.search-result-empty {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-result-loading {
    padding: 15px;
    text-align: center;
    color: #666;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.panel-input{
  height: 3rem;
  width: 100%;
  border: 1px solid #d8eaff;
  border-radius: 0.5rem;
  outline: none;
  padding: 0 1rem;
  font-size: 16px;
  margin-top: 0.5rem;
}
.panel-input-login{
    margin-top: 1rem !important;
}
.panel-input-textarea{
  max-width: 100%;
  width: 100%;
  border: 1px solid #d8eaff;
  border-radius: 0.5rem;
  box-shadow: rgba(166, 150, 255, 0.15) 0px 2px 8px;
  outline: none;
  padding: 0 1rem;
  font-size: 16px;
  margin-top: 0.5rem;
}
.choices , .choices__inner{
  border-radius: 0.5rem !important;
  border: 1px solid #d8eaff !important;
}
.no-border-button{
  width: 100%;
  display: flex;
  align-items: center;
  outline: none;
  background-color: var(--white);
  border: none;
  height: 100%;
  cursor: pointer;
}
li:hover button.no-border-button{
  background-color: #f0f0f1;
}
.admin-page-head{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-container{
  overflow-x: auto;
  width: 100%;
  padding-bottom: 1rem;
}
.panel-table{
  box-shadow: 0 0 10px rgba(0, 152, 121, 0.1);
  border-collapse: collapse;
  border-radius: 0.7rem 0.7rem 0 0;
  max-width: 100%;
  white-space: nowrap;
}
.panel-table thead tr{
  height: 4rem;
  background-color: #009879;
  color: #ffffff;
  font-size: 18px;
}
.panel-table thead tr th:first-child{
  border-radius: 0 0.7rem 0 0;
}
.panel-table thead tr th:last-child{
  border-radius: 0.7rem 0 0 0;
}
.panel-table td{
  text-align: center;
  padding: 1rem 0.5rem;
}
.panel-table tbody tr:nth-of-type(even){
  background-color: #f3f3f3;
}
.panel-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}
.panel-table button , .panel-table a{
  height: 100%;
  width: 6rem;
  font-size: 15px;
}
.off-price{
  text-decoration: line-through;
  color: #7e7e7e !important;
  font-size: 15px !important;
  line-height: 150%;
  font-weight: 400 !important;
}
.custom-input-text{
  border: 1px solid var(--beige);
  box-shadow: rgba(209, 169, 128, 0.15) 0px 2px 8px;
  border-radius: 0.5rem;
  width: 100%;
  height: 2rem;
  padding: 0 1rem;
}
.custom-input-text:focus{
  outline: 0;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 3rem;
}
.menu-icon{
  display: none;
  cursor: pointer;
}
.menu-inner{
    display: flex;
    align-items: center;
}
.menu-inner a{
    margin-left: 4rem;
    color: var(--black);
    transition: all 0.5s;
    display: flex;
    align-items: center;
}
.menu-inner a img{
  height: 1.2rem;
  margin-left: 0.3rem;
}
.menu-inner a:last-child{
    margin-left: 0;
}
.menu-inner a:hover{
  color: var(--beige);
  position: relative;
  bottom: 2px;
}
.mobile-menu-container{
  width: 100%;
  height: 100%;
  background-color: var(--white);
  color: var(--white);
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: url('../images/banners/c3fd997c3354278b478fd561315b6494.jpg');
  background-size: cover;
  background-position: bottom;
  animation: show 1s;
}
@keyframes show {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.mobile-menu-top{
  z-index: 1003;
  width: 100%;
  height: 20%;
  border-radius: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
.close{
  z-index: 1003;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  border-radius: 50%;
  height: 2.6rem;
  width: 2.6rem;
  background-color: var(--white);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.close img{
  height: 1.3rem;
}
.mobile-menu-items{
  z-index: 1003;
  margin-top: 20%;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.mobile-menu-item{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  color: var(--blue);
  margin-bottom: 1.5rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}
.mobile-menu-item:last-child{
  margin-bottom: 0;
}
.logo-container a{
    display: flex;
    align-items: center;
    font-family: 'bacalisties';
    font-size: 45px;
    color: var(--black);
}
.logo-container h1{
    font-family: 'bacalisties';
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-top: 3.5rem;
}
.wellcome-line{
    width: 100%;
    height: 2.5rem;
    border-top: 1px solid rgb(231, 231, 231);
    border-bottom : 1px solid rgb(231, 231, 231);
    display: flex;
    align-items: center;
    margin-top: 0.4rem;
    overflow: hidden;
    position: relative;
}
.wellcome-line-inner{
    display: flex;
    align-items: center;
    padding: 0 3rem;
    white-space: nowrap;
    position: absolute;
    animation: scroll-right 80s  infinite;
    will-change: transform;
}
.wellcome-line-inner div{
    display: flex;
    align-items: center;
}
.wellcome-line-inner span{
    margin: 0 4rem;
    display: flex;
}
@keyframes scroll-right {
    0%{
        right: 0;
    }
    100%{
        right: 100%;
        transform: translateX(100%);
    }
}
.search-container{
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 3rem;
  position:relative;
}
.search-inner{
  width: 80%;
  position: relative;
}
.search-inner input{
  height: 3rem;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  width: 100%;
  border: none;
  padding: 0.5rem 1.5rem 0.5rem 4rem;
  font-size: 1.1rem;
  color: rgb(41, 41, 41);
  text-align: right;
}
.search-inner input:focus{
  outline: 0;
}
.search-inner input::placeholder{
  color: #8a8a8a;
}
.search-inner button{
  position: absolute;
  left: 0.8rem;
  top: calc(50% - 1rem);
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  cursor: pointer;
}
.search-inner button img{
  height: 30px;
}
.search-login{
  width: 17%;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 0.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-login a{
    color:var(--white);
}
.search-login.active{
  font-size: 13px;
}
.search-login.active form{
    width:100%;
    height:100%;
}
.search-login.active img{
  margin-left: 0.7rem;
  border-radius: 50%;
  height: 2.3rem;
  width: 2.3rem;
}
.logout-btn{
    background:none;
    color:var(--white);
    border:none;
    outline:none;
    width:100%;
    height:100%;
    cursor:pointer;
}
.coffee-banner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.coffee-banner-swiper{
  width: 100%;
  padding-top: 1rem;
  padding-bottom:2rem;
}
.coffee-banner-slide{
  position: relative;
  border-radius: 1rem;
  height: 15rem;
  margin-top: 1.5rem;
}

.coffee-banner-slide:first-child{
  margin-right: auto;
}
.coffee-banner-slide img{
  width: 100%;
  height: 100%;
  border-radius: 1rem;
 object-fit:cover;
}
.center-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  width: 50%;
}
.socials a{
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 1.3rem;
  color: var(--blue);
}
.main-title img{
  height: 2rem;
  margin-left: 0.5rem;
}
.first-procuts-swiper {
    width: 90%;
    height: 350px;
  }
  .swiper-slide{
    position: relative;
  }
  .swiper-pagination-bullet-active{
    background-color: var(--blue);
  }
  .products-slider{
    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
    padding-top: 2rem;
    margin-bottom: 3rem;
  }
  .products-slide , .products-slide-inner , .products-slide-inner img{
    border-radius: 1rem;
    width: 100%;
    height: 100%;
  }
  .products-slide-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    height: 310px;
  }
  .products-item{
    position: absolute;
    width: 80%;
    right: 10%;
    left: 10%;
    height: 84%;
    top: 8%;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .products-item p{
    color: var(--blue);
  }
  .products-item img{
    height: 55%;
    width: auto;
    margin: 1rem 0;
  }
  .products-item span{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 0.7rem;
    transition: all 0.3s;
  }
  .products-slide:hover .products-item span{
    background-color: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
  }
  .leaderboard-cards{
    width: 100%;
    padding: 1rem 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8rem;
  }
  .leaderboard-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 65%;
    position: relative;
    padding: 1rem 0;
  }
  .leaderboard-item{
    width: 30%;
    height: 14rem;
    background-color: var(--white);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--beige);
    box-shadow: rgba(17, 17, 26, 0.04) 0px 1px 0px, rgba(17, 17, 26, 0.09) 0px 0px 8px;
    padding: 0 1.1rem 1.3rem 1.1rem;
  }
  .leaderboard-item-number{
    position: absolute;
    width: 70px;
    height: 70px;
    top: -35px;
    left: calc(50% - 35px);
    background-color: var(--white);
    border-radius: 50%;
   }
  .leaderboard-item:nth-child(2){
    height: 17rem;
  }
  .leaderboard-item p{
    color: var(--blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .leaderboard-item span{
    text-align: center;
    font-size: 0.9rem;
  }
  .leaderboard-item-img{
    position: absolute;
    bottom: -2.5rem;
    left: calc(50% - 2.5rem);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    border: 2px solid var(--beige);
    padding: 0.7rem;
    background-color: var(--white);
    border-radius: 50%;
  }
  .leaderboard-item-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .leaderboard-item a{
    width: 60%;
    height: 2.4rem;
    position: absolute;
    bottom: -6rem;    
    left: calc(50% - 30%);
    background-color: var(--beige);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3rem;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transition: all 0.5s;
  }
  .leaderboard-item a:hover{
    background-color: #011936;
  }
  .categories{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .catrgories-inner{
    width: 57%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .category-item{
    width: 48%;
    height: 10rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    overflow: hidden;
    margin-bottom: 1.7rem;
  }
  .category-item:hover .category-text span{
    transform: translateX(-1.7rem);
    transition: transform 1.5s;
  }
  .category-item:hover .category-img::before{
    transform: translatey(-1rem);
    transition: transform 1s;
  }
  .category-text{
    display: flex;
    flex-direction: column;
    color: var(--blue);
  }
  .category-text span{
    border-radius: 50%;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #011936;
    margin-top: 1rem;
  }
  .category-img{
    position: relative;
  }
  .category-img img{
    height: 7rem;
    
  }
  .category-img::before{
    content: " ";
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    position: absolute;
    left: -4rem;
    bottom: -6.5rem;
    background-color: #f1f1f1;
    z-index: -1;
  }
  .chooseus{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 4rem 0 6rem 0;
  }
  .chooseus-inner{
    width: 65%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .chooseus-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 31%;
    text-align: center;
  }
  .chooseus-item img{
    margin-bottom: 1.5rem;
  }
  .packing{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .packing-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
  }
.packing-intro{
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
}
.packing-intro-img{
  position: absolute;
  top: 0;
  left: 0;
  right: -1.5rem;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packing-intro-img img{
  height: 24rem;
  z-index: -1;
  opacity: 0.2;
}
.packing-intro-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
}
.packing-intro-text p{
  line-height: 2.5rem;
  margin-bottom: 2rem;
  width: 70%;
  font-size: 1rem;
  color: var(--blue);
}
.packing-intro-text a{
  width: 8rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--white);
  border-radius: 2rem;
  border: 1px solid #d1a980;
  position: relative;
  overflow: hidden;
  color: var(--black);
}
.packing-intro-text a img{
  z-index: 2;
}
.packing-intro-text a::before{
  content: " ";
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: -1.5rem;
  top: calc(50% - 2.5rem);
  background-color: #d1a980;
  z-index: 1;
}
.packing-intro-text a:hover{
  transform: translateX(-0.7rem);
  transition: transform 1.5s;
}
.packing-swipper-container{
  width: 48%;
  display: flex;
  justify-content: flex-end;
}
.packingSwiper{
  width: 270px;
  height: 360px;
}
.packingSwiperslide{
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.packingSwiperslide img{
    box-sizing:cover;
}
.faq{
  display: flex;
  justify-content: center;
  width: 100%;
}
.faq-accordion {
  width: 100%;
  width: 50%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-accordion-item {
  border-bottom: 1px solid #eee;
}

.faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-accordion-header:hover {
  background: #f9f9f9;
}

.faq-accordion-question {
  font-size: 1rem;
  
}

.faq-accordion-icon {
  font-size: 24px;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 50%;
  background: #d1a980;
  color: var(--white);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.17rem;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(90deg);
  background: #ff5252;
  color: var(--white);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  background: #fafafa;
  color: #444;
  transition: all 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding: 15px 20px 25px;
}
.profile-bottom-fix{
position: fixed;
  bottom: 1rem;
  left: 1rem;
  height: 3rem;
  border-radius: 0.5rem;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  background-color:var(--blue);
  padding: 0 1rem;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cart-bottom-fix{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.cart-bottom-fix a{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-bottom-fix a span{
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  top: -0.9rem;
  right: -0.25rem;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
}
footer{
  margin-top: 7rem;
  padding-bottom: 6rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.footer-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo{
  margin-bottom: 1rem;
}
.footer-menu{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-menu a{
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--black);
}
.footer-coffee{
  height: 30rem;
}
.footer-content .socials{
  width: 100%;
}
.footer-content .socials a{
  margin-left: 2rem;
}
.fixed-nav{
  position: fixed;
  bottom: 0.3rem;
  right: 2.5%;
  left: 0;
  background-color: rgb(255, 255, 255);
  width: 95%;
  height: 5rem;
  border-radius: 1rem;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(1, 25, 54, 0.25) 0px 5px 15px;
}
.fixed-nav-inner{
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.fixed-nav-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 25%;
  height: 85%;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}
.fixed-nav-item img{
  height: 2.5rem;
}
.cart-bottom-fix-mobile{
    position:relative;
}

.cart-bottom-fix-mobile .cart-count{
    position:absolute;
    top:0;
    right:1rem;
    width:1.5rem;
    height:1.5rem;
    border-radius:50%;
    background-color:#efefef;
    display:flex;
    justify-content:center;
    align-items:center;
}

/*
products.html
*/
.filter-item-body {
    display: none;
    padding: 10px 0;
    width:100%;
}

.filter-item-container.open .filter-item-body {
    display: block;
}

.filter-item-body-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5px;
    cursor: pointer;
    transition: all 0.2s;
    width:100%;

}

.filter-item-body-inner:hover {
    background-color: #f5f5f5;
    border-radius:0.5rem;
}

.filter-item-body-inner.active {
    background-color: #e8f5e9;
    color: #2e7d32;
}
.products-filter-item.active {
    background: #4CAF50;
    color: white;
}
.products-all{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 0 3rem;
}
.right-filters{
  width: 17%;
}
.filter-item-container{
  background-color: var(--white);
  box-shadow: rgba(1, 25, 54, 0.12) 0px 1px 3px, rgba(1, 25, 54, 0.24) 0px 1px 2px;
  max-height: 3rem;
  border-radius: 0.6rem;
  padding: 0 0.8rem;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin-bottom: 1.5rem;
  font-size: 15px;
  transition: max-height 0.6s ease;
  overflow: hidden;
}
.filter-item-head{
  width: 100%;
  display: block;
  height: 3rem;
}
.filter-item-head div{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  cursor: pointer;
}
.filter-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
}
.filter-item-container.open .filter-arrow {
  transform: rotate(180deg);
}

.filter-item-body-inner div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
  width:100%;
}

.filter-item-body-inner p{
  font-size: 13px;
}
.filter-item-body-inner span{
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: var(--beige);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.left-products{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.products-filter{
  width: 100%;
  display: flex;
  align-items: center;
}
.products-filter div{
  display: flex;
  align-items: center;
}
.products-filter h4{
  margin-left: 1rem;
  margin-right: 0.2rem;
  color: var(--blue);
}
.products-filter a{
  margin-left: 2rem;
  color: var(--beige);
  padding: 0.3rem 0.5rem;
  transition: all 0.5s;
}
.products-filter-item.active{
  background-color: var(--beige);
  color: var(--white);
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
}
.products-container{
  width: 100%;
  padding: 3rem 0;
}
.products-inner{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 24px;
}
.product-item{
  border-radius: 1rem;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 0.5rem;
  box-shadow: rgba(1, 25, 54, 0.12) 0px 1px 3px, rgba(1, 25, 54, 0.24) 0px 1px 2px;
  color: var(--blue);
}
.product-item img{
  border-radius: 0.6rem;
  width: 100%;
  height: 16rem;
  box-shadow: rgba(1, 25, 54, 0.04) 0px 3px 5px;
}
.product-item-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  height: 12.5rem;
}
.product-item-content p{
  font-size: 0.8rem;
  color: rgb(61, 61, 61);
}
.button-price{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.price-span{
  color: var(--blue);
  font-size: 0.9rem;
}
.buy-span{
  background-color: var(--blue);
  color: var(--white);
  padding: 0.5rem;
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-span img{
  width: 24px !important;
  height: 24px !important;
}
/* aboutus */
.aboutus-container{
  width: 100%;
  display: flex;
  justify-content: center ;
  align-items: center;
  padding: 3rem;
  margin-top: 2rem;
}
.aboutus-inner{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.aboutus-inner h3{
  color: var(--blue);
}
.aboutus-social-cards{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80%;
  margin-top: 3rem;
}
.aboutus-card{
  width: 25%;
  height: 10rem;
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--white);
  box-shadow: rgba(1, 25, 54, 0.12) 0px 1px 3px, rgba(1, 25, 54, 0.24) 0px 1px 2px;
}
.aboutus-card::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.7rem;
  background-color: var(--beige);
  transform: rotate(-5deg);
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}
.aboutus-icon{
  position: absolute;
  top: -1.5rem;
  left: 1rem;
}
.aboutus-card p{
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.aboutus-card a{
  background-color: var(--blue);
  color: var(--white);
  border-radius: 0.5rem;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.aboutus-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
.aboutus-text p{
  width: 50%;
  line-height: 2;
  color: var(--blue);
}
.aboutus-text img{
  width: 45%;
}
/* articles */
.articles-container{
  width: 100%;
  padding: 3rem 3rem 0 3rem;
  display: flex;
  flex-direction: column;
}
.top-articles{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  margin: 3rem 0 1rem 0;
}
.top-articles-item{
  width: 100%;
  border-radius: 1rem;
  height: 15rem;
  position: relative;
  box-shadow: rgba(1, 25, 54, 0.55) 0px -70px 36px -28px inset;
  border: 1px solid #fafafa;
}
.top-articles-item img{
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.top-articles-info{
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
}
.top-articles-info span{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-articles-info span img{
  width: 25px;
  height: 25px;
}
.center-100{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.3rem;
  color: var(--blue);
}
.center-100 img{
  height: 2rem;
  margin-left: 0.5rem;
}
.latest-articles{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-top: 3rem;
}
.latest-article-item{
  height: 16rem;
  position: relative;
  border-radius: 1rem;
  box-shadow: rgba(1, 25, 54, 0.55) 0px -70px 36px -28px inset;
  border: 1px solid #fafafa;
  transition: all 0.3s;
}
.top-articles-item:hover , .latest-article-item:hover{
  transform: scale(1.01);
  box-shadow: rgba(1, 25, 54, 0.60) 0px -100px 36px -28px inset;
}
.latest-article-item img{
  width: 90%;
  height: 90%;
  border-radius: 1rem;
  margin-right: 5%;
}
.latest-article-info{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.latest-article-info-top{
  height: 2.5rem;
  width: 90%;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 25px -5px, rgba(0, 0, 0, 0.5) 0px 10px 10px -5px;
}
.latest-article-info-bottom{
  height: 2rem;
  width: 90%;
  border-radius: 1rem 1rem 0 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
/* article.html */
.article-container{
  width: 100%;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-divider{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.article-inner{
  width: 70%;
  display: flex;
  flex-direction: column;
}
.article-sidebar{
  width: 20%;
  border-right: 1px solid #eee;
  position: relative;
  padding-right:0.5rem ;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-sidebar::after{
  content: " ";
  position: absolute;
  right: -2px;
  top: 0;
  height: 2rem;
  width: 4px;
  background-color: var(--blue);
  border-radius: 5px;
}
.article-sidebar-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 1rem;
}
.article-sidebar p{
  margin-bottom: 1.7rem;
}
.article-sidebar-item{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1rem;
  width: 100%;
  color: var(--blue);
  padding: 0.5rem;
  border-radius: 0.4rem;
}
.article-sidebar-item:hover{
  background-color: #f1f1f1;
}
.article-sidebar-item div{
  width: 17%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  border-radius: 0.4rem;
  margin-left: 10%;
}
.article-sidebar-item img{
  width: 100%;
  height: 100%;
}
.article-sidebar-item span{
  font-size: 13px;
  width: 60%;
}
.article-intro{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
}
.article-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  margin-top: 2.5rem;
}
.article-info-div{
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.article-info-div img{
  margin-left: 1rem;
}
.article-info-div span{
  margin-left: 0.5rem;
  font-size: 15px
}
.article-info-div p{
  font-weight: 600;
  color: var(--blue);
}
.article-main-img{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 66%;
}
.article-intro-img{
  width: 80%;
  height: auto;
  border-radius: 1rem;
  margin-top: 1rem;
}
.article-body{
  margin-top: 3rem;
}
.article-body img{
  height: 22rem;
  width: 100%;
  border-radius: 1rem;
  margin: 1rem 0;
}
.article-tags{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 2rem 0;
}
.article-tags a{
  padding: 0.3rem 1.3rem;
  background-color: var(--beige);
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: 1rem;
  color: var(--white);
}
.article-tags span{
  font-size: 16px;
  margin-left: 0.3rem;
}
.article-tags a:hover{
  transform: scale(1.02);
}
.social-share{
  display:flex;
  margin:2.5rem 0 6rem 0;
  padding:0;
  position: relative;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}
.social-share li {
  list-style:none;
  margin:0 5px;
  width: 12%;
}
.social-share li a span {
  padding:0 0 5px 0;
  margin:0;
  color: #262626;
  letter-spacing: 4px;
  transition: .5s;
}
.social-share li a {
  text-decoration: none;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width:100%;
  height:80px;
  background: #fff;
  text-align:right;
  transform: rotate(-30deg) skew(25deg) translate(0,0);
  transition:.5s;
  box-shadow: -20px 20px 10px rgba(0,0,0,.5);
  border-top: 1px solid rgba(189, 189, 189, 0.1);
  border-right: 1px solid rgba(189, 189, 189, 0.1);
}
.social-share li a svg{
  height: 38px;
  width: 40px;
  position: relative;
  left: 10px;
  top: 5px;
}
.social-share li a:before {
  content: '';
  position: absolute;
  top:10px;
  left:-20px;
  height:100%;
  width:20px;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewY(-45deg);
}
.social-share li a:after {
  content: '';
  position: absolute;
  bottom:-20px;
  left:-10px;
  height:20px;
  width:100%;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewX(-45deg);
}
.social-share li a:hover {
  transform: rotate(-30deg) skew(25deg) translate(20px,-15px);
  box-shadow: -50px 50px 50px rgba(0,0,0,.5);
}
.social-share-ins:hover a{
  background-color: #e4405f;
}
.social-share-ins:hover a:before{
  background-color: #d81c3f;
}
.social-share-ins:hover a::after{
  background-color: #e46880;
}
.social-share-tel:hover a{
  background-color: #00aced;
}
.social-share-tel:hover a:before{
  background-color: #097aa5;
}
.social-share-tel:hover a::after{
  background-color: #53b9e0;
}
.social-share-wha:hover a{
  background-color: #25D366;
}
.social-share-wha:hover a:before{
  background-color: #10833a;
}
.social-share-wha:hover a::after{
  background-color: #4de785;
}
.social-share-lin:hover a{
  background-color: #dd4b39;
}
.social-share-lin:hover a:before{
  background-color: #b33a2b;
}
.social-share-lin:hover a::after{
  background-color: #e66a5a;
}
.social-share li:hover a svg{
  fill: var(--white);
}
.social-share li:hover a span{
  color: var(--white);
}
.similar-articles{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-top: 2.5rem;
}
/* product */
.p-container{
  width: 100%;
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
}
.p-subtitle{
  width: 100%;
  line-height: 2;
  margin-top: 1.5rem;
}
.p-item-info{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1.5rem;
}
.p-item-info div{
  display: flex;
  align-items: center;
  margin-left: 4rem;
}
.p-item-info p{
  font-size: 15px;
  font-weight: 600;
  margin: 0 0.7rem;
}
.p-item-info span{
  font-size: 15px;
}
.all-product-form{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-pack-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 4rem;
}
.p-pack-container-in{
    display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 70%;
  padding-left:2vw;
}
.p-pack-choose{
  width: 35%;
  display: flex;
  flex-direction: column;
  padding-left:2vw;
}
.p-pack-choose-in , .p-pack-choose-it{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:start;
}
.p-pack-choose-it .custom-radio{
    width:100%;
}
.p-pack-choose p{
  margin-bottom: 1.5rem;
  line-height: 1;
}
.p-pack-item{
  width: 100%;
  background-color: #f0f0f0;
  color: var(--blue);
  border-radius: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  border :3px solid #f0f0f0;
}
.p-pack-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: border-color 0.2s ease;
}
.p-pack-item input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  background: var(--blue);
}
.p-pack-item input[type="radio"]:checked {
  border-color: var(--blue);
}
.p-pack-item input[type="radio"]:checked::before {
  transform: scale(1);
}
.p-pack-item.active{
  border :3px solid #01193628;
}
.p-grind-size{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-grind-size label{
  margin-bottom: 1rem;
}
.p-grind-size select{
  border :3px solid #f0f0f0;
  background-color: #f0f0f0;
  height: 4rem;
  border-radius: 0.7rem;
  outline: none;
  cursor: pointer;
  padding: 0 1.5rem;
  font-size: 15px;
  border-left: 1.9rem solid transparent
}
.p-grind-size select option:checked{
  background-color: #7e7e7e;
  color: var(--white);
}
.p-pack-img{
  width: 70%;
  height: 26rem;
  background-color: #f0f0f0;
  border-radius: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 2rem;
}
.p-pack-img img{
  height: 85%;
  max-width:100%;
  border-radius:1rem;
}
.p-pack-img p{
  position: absolute;
  top: 0;
  right: 5%;
  left: 5%;
  background-color: var(--white);
  border-radius: 0 0 2rem 2rem;
  width: 90%;
  text-align: center;
  padding: 0.3rem 0;
}
.buy-card{
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  padding: 0 0.8rem 0.8rem 0.8rem;
  border-radius: 1rem;
}
.buy-card p{
  background-color: var(--white);
  border-radius: 0 0 2rem 2rem;
  width: 90%;
  text-align: center;
  padding: 0.3rem 0;
  margin-bottom: 1rem;
}
.checkout-buy-card{
    width:68%;
}
.checkout-buy-card h3{
    padding:1.5rem 0;
}
.little-gray-info{
  color: #7e7e7e;
  font-size: 14px;
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.little-gray-info img{
  margin-left: 0.3rem;
}
.little-gray-info-first{
  margin-top: 1rem;
}
.pack-type{
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 0.7rem;
}
.pack-type img{
  margin-left: 0.4rem;
}
.buy-price{
  width: 100%;
  text-align: left;
  color: var(--blue);
  font-weight: 600;
  font-size: 19px;
  margin-top: 0.5rem;
}
.buy-price-main{
  margin-bottom: 1rem;
}
.cart-actions{
  width: 100%;
}
.add-to-cart , .add-to-buy{
  background-color: #011936;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
  outline: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
.add-to-cart:hover{
  background-color: #e22d42;
}
.add-minus-title{
  width: 100%;
  text-align: right;
  margin-top: 1rem;
}
.cart-box{
  width: 100%;
  display: flex;
}
.cart-counter{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cart-counter-inner{
  border: 1px solid #d8d8d8;
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 0.4rem;
  height: 2.9rem;
  padding: 0.3rem 0.7rem;
  width: 40%;
  margin: 1rem 0 1.5rem 0;
  align-self: flex-end;
}
.cart-counter-inner-fix{
  width: 7rem !important;
}

.btn-minus.trash-btn {
    color: white;
    border: none;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-minus.trash-btn:hover {
    transform: scale(1.1);
}

.btn-minus:not(.trash-btn) {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-plus {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-minus, .btn-plus {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-minus:hover:not(.trash-btn),
.btn-plus:hover {
    background-color: #e9ecef;
    border-color: #ccc;
}

.cart-counter-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}


.card-js-variant{
    display:flex;
    align-items:center;
    margin-bottom:1.3rem;
    font-size:14px;
}

.cart-qty {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.btn-plus.disabled,
.add-to-cart.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ddd !important;
    color: #999 !important;
    border-color: #ccc !important;
}

.btn-plus.disabled:hover,
.add-to-cart.disabled:hover {
    background-color: #ddd !important;
    transform: none !important;
}

.inventory-warning {
    display: inline-block;
    padding: 2px 8px;
    background: #fff3cd;
    color: #856404;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

.inventory-danger {
    display: inline-block;
    padding: 2px 8px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}


@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%) translateY(-20px);
    }
}
.p-pack-description{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.p-pack-description p{
  margin-bottom: 1rem;
}
.p-pack-description textarea{
  border: 1px solid var(--beige);
  box-shadow: rgba(209, 169, 128, 0.15) 0px 2px 8px;
  border-radius: 1rem;
  padding: 1rem;
}
.p-pack-description textarea:focus{
  outline: none;
}
.p-suprise{
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.p-suprise p{
  margin-bottom: 1rem;
}

/* checkout */
.back-to-cart{
  display: flex;
  align-items: center;
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  color: #F04055;
}
.back-to-cart img{
  margin-left: 0.5rem;
}
.checkout-list{
  display: flex;
  flex-direction: column;
  width: 65%;
}
.checkout-item-container{
  display: flex;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  padding: 1.5rem 0 0.3rem 0;
}
.checkout-item-container:first-child{
  padding-top: 0;
}
.checkout-item-img{
  width: 6rem;
  height: 8rem;
  border-radius: 0.7rem;
  margin-left: 1.5rem;
}
.checkout-item-info{
  display: flex;
  flex-direction: column;
  width:calc(100% - 7rem);
  padding-bottom:1rem;
}
.checkout-item-info-inner{
  display: flex;
  align-items: center;
  width: 100%;
}
.checkout-item-info p{
  margin-bottom: 1rem;
}
.checkout-item-info-span{
  margin-bottom: 1rem;
  font-size: 14px;
  color: #7e7e7e;
  display: flex;
  align-items: center;
}
.checkout-item-info-span:last-of-type{
  margin-bottom: 0.5rem !important;
}
.checkout-item-info-span img{
  margin-left: 0.5rem;
}
.checkout-item-info strong{
  margin-right: 2rem;
  white-space: nowrap;
}
.last-checkout-items{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.last-checkout-items .checkout-item-container{
  align-items: center;
}
.address-choose{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 2rem 0 1rem 0;
}
.address-choose .address-item-box{
  cursor: pointer;
  position: relative;
}
.address-choose .address-item-box.active{
  border: 3px solid var(--beige);
}
.address-choose .address-item-box.active::after{
  position: absolute;
  top: -1.6rem;
  content: 'انتخاب شده';
  right: 1.5rem;
  background-color: var(--beige);
  color: var(--white);
  height: 1rem;
  font-size: 12px;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
.coupon-container{
  width: 100%;
  display: flex;
}
.coupon-inner{
  width: 50%;
  display: flex;
  flex-direction: column;
}
.coupon-inner div{
  display: flex;
  align-items: center;
  width: 100%;
}
.coupon-inner div input{
  border: 1px solid var(--beige);
  border-radius: 0 0.7rem 0.7rem 0;
  width: 70%;
  height: 3rem;
  padding-right: 0.7rem;
  outline: none;
  font-size: 15px;
}
.coupon-inner div button{
  border: 1px solid var(--beige);
  border-radius: 0.7rem 0 0 0.7rem;
  background-color: var(--beige);
  color: var(--white);
  width: 30%;
  height: 3rem;
  font-size: 16px;
  cursor: pointer;
}
.coupon-inner span{
  font-size: 13px;
  margin-top: 0.5rem;
}
/* image uploader*/
.uploader {
  width: 300px;
  padding: 20px;
  background: #fff;
  border: 2px dashed var(--beige);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}

.uploader:hover {
  background: #fafafa;
}

.uploader input {
  display: none;
}

.preview {
  margin-top: 15px;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.35s ease;
}

.preview.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.preview img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.remove-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* user panel */
.user-panel-container{
  width: 100%;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.user-panel-side{
  width: 27%;
  border: 1px solid #f0f0f1;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}
.user-panel-side ul{
  list-style: none;
}
.user-panel-side li{
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f1;
}
.user-panel-side li:first-child{
  border-radius: 0.5rem 0.5rem 0 0;
}
.user-panel-side li:last-child{
  border-radius: 0 0 0.5rem 0.5rem;
  border-bottom: none;
}
.user-panel-side li:hover{
  background-color: #f0f0f1;
}
.user-panel-side a{
  color: var(--blue);
  font-size: 15px;
  display: flex;
  align-items: center;
}
.user-panel-side a img{
  margin-left: 0.5rem;
}
.user-panel-content{
  width: 70%;
  border: 1px solid #f0f0f1;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0 1rem;
}
.user-panel-info{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 3rem 0;
}
.user-panel-info div{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-panel-info div img , .user-panel-info div p{
  margin-bottom: 0.5rem;
}
.user-panel-info div span{
  font-size: 18px;
}
.order-time-line{
  margin: 3rem 0 5rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-time-line-inner{
  width: 90%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.order-time-line-circle{
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(125, 125, 125);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgb(125, 125, 125);
}
.order-time-line-circle span{
  position: absolute;
  bottom: -3rem;
  white-space: nowrap;
}
.order-time-line-circle.active{
 background-color: var(--blue);
 color: var(--white);
}
.order-time-line-circle.active span{
  color: var(--blue);
  font-weight: 600;
 }
.order-time-line-line{
  height: 2px;
  background-color: var(--blue);
  flex-grow: 1;
}
.last-buy-info{
  display: flex;
  flex-direction: column;
}
.last-buy-info h4{
  margin-bottom: 1rem;
}
.last-buy-info-items{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.last-buy-info-items table{
  width: 100%;
  text-align: right;
}
.last-buy-info-items table thead tr{
  height: 3rem;
  text-align: center;
}
.last-buy-info-items table tbody tr{
  height: 2.5rem;
  text-align: center;
}
.last-buy-info-items table tbody tr:nth-child(odd){
  background-color: #f7f7f7;
}
/* orders.html */
.user-panel-order{
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgb(233, 233, 233);
  padding: 2rem 0;
}
.user-panel-order:last-child{
  border-bottom: 0;
}
.user-panel-order-items{
  display: flex;
  flex-direction: column;
}
.user-panel-order-item{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.user-panel-order-item:last-child{
  margin-bottom: 0;
}
.user-panel-order-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}
.user-panel-order-info div{
  text-align: center;
  width: 33.333%;
  border-radius: 0.7rem;
  padding: 0.3rem;
}
.user-panel-order-info div p:first-child{
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.order-again{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-again button{
  border: 1px solid var(--white);
  color: var(--white);
  background-color: var(--blue);
  padding: 0.4rem 1.5rem;
  border-radius: 0.5rem;
  outline: none;
  font-size: 16px;
  cursor: pointer;
}
/* user-info.html */
.address-item-box{
  height: 6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--beige);
  padding: 0.7rem 1rem;
  border-radius: 1em;
}
.address-item-box-inner{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.open-more-address-card{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(83, 83, 83, 0.692);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  display: none;
}
.open-more-address-card.is-open{
  display: flex;
}
.open-more-address-card-inner{
  width: 70vw;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
}
.open-more-address{
  cursor: pointer;
}
.close-more-address{
  cursor: pointer;
}
.address-item-box-edit{
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
}
.address-item-box-delete{
  background-color: #F04055;
  color: var(--white);
  border: 1px solid #F04055;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
}

/* success-alert */
.success-alert{
  background-color: #7cffac;
  color: #00420b;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  border: 1ps solid #00420b;
  border-radius: 0.5rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
}
/* login phone */
.login-phone{
  background-image: url('../images/banners/384.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5%;
}
.login-phone-body{
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-phone-body-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--white);
  border-radius: 0.7rem;
  padding: 1rem;
}
.login-phone-body form{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.login-phone-body form div{
  width: 100%;
  margin-top: 1rem;
}
.login-phone-body form input{
  width: 100%;
}
.login-phone-body form button{
  width: 100%;
  height: 3rem;
  border-radius: 0.7rem;
  outline: none;
  background-color: var(--blue);
  border: none;
  color: var(--white);
  font-size: 17px;
  margin-top: 2rem;
  cursor: pointer;
}
.login-phone-body hr{
  height: 2px;
  width: 90%;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.back-to-home{
  margin-top: 2.5rem;
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
}
.intro-login-text{
  font-size: 100px;
  transform: rotate(90deg);
  position: relative;
  left: -12%;
  color: var(--white);
  font-family: 'bacalisties';
}
.resend-link{
    margin-top:1rem !important;
}
/* payment results */
.payment-result-container{
    display :flex;
    width:100%;
    justify-content:center;
    margin:4rem 0;
}
.payment-result-inner{
    width:60%;
    display:flex;
    flex-direction:column;
    align-items:center;
    border-radius:1rem;
    padding:1rem;
}
.payment-result-success{
        background-color:#effee6;
}
.payment-result-failed{
        background-color:#fef3f3;
}
.payment-result-inner h2{
    color:#333;
    margin-bottom:1.5rem;
    margin-top:0.5rem;
    text-align:center;
}
.payment-result-inner h4{
    color:#666;
    margin-bottom:0.5rem;
    text-align:center;
}
.payment-result-info{
    color:#666;
    text-align:center;
    margin:1rem 0 0.5rem 0;
}
.payment-result-info p{
    margin-bottom:0.5rem;
}
.payment-result-buttons{
    width:80%;
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-top:1rem;
}
.payment-result-buttons a{
    width:47%;
}
/* user profile */
.user-profile-container{
    width:100%;
    margin:4rem 0;
    display:flex;
    justify-content:center;
}
.user-profile-inner{
    background-color:#f7f7f7;
    border-radius:1rem;
    padding:2rem;
    width:70%;
   display:flex;
   flex-direction:column;
   align-items:center;
}
.profile-buttons{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.profile-buttons a , .profile-buttons button{
    height:2.5rem;
    width:47%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}
.profile-table{
  border-collapse: collapse;
  border-radius: 0.7rem 0.7rem 0 0;
  max-width: 100%;
  width:100%;
  white-space: nowrap !important;
}
.user-welcome-mobile{
    display:none;
}
@media screen and (max-width: 1250px){
  .leaderboard-inner{
    width: 85%;
  }
  .catrgories-inner{
  width: 75%;
}
}
@media screen and (max-width: 1170px){
.leaderboard-inner{
  width: 90%;
}
.catrgories-inner{
  width: 80%;
}
.chooseus-inner{
  width: 80%;
}
.aboutus-text{
  width: 95%;
  margin-top: 3rem;
}
.aboutus-text p{
  width: 45%;
}
.aboutus-text img{
  width: 50%;
}
.right-filters{
  width: 23%;
}
.left-products{
  width: 74%;
}
.products-inner{
  grid-template-columns: repeat(3, 1fr);
}
.top-articles{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.latest-articles{
  grid-column-gap: 25px;
  grid-row-gap: 30px;
}
.article-inner{
  width: 73%;
}
.article-info{
  width: 33%;
  font-size: 14px;
}
.article-info img{
  margin-left: 0.3rem;
}
.article-main-img{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65%;
}
.article-sidebar{
  width: 24%;
  border-right: 1px solid #eee;
  position: relative;
}
.search-inner{
  width: 70%;
}
.search-results-container{
    left:31.8%;
}
.search-login{
  width: 28%;
}
.menu-inner a{
  margin-left: 2.5rem;
}
.buy-card{
  width: 32%;
}
.login-phone-body{
  width: 50%;
}

}
@media screen and (max-width: 1000px){
.leaderboard-inner{
  width: 95%;
}
.catrgories-inner{
  width: 85%;
}
  .packing-inner{
    width: 85%;
  }
  .faq-accordion {
  width: 70%;
  }
  .footer-coffee{
    height: 25rem;
  }
  .coffee-banner-slide{
      height:13rem;
  }
  .coffee-banner-slide.swiper-slide-active{
    height: 15.5rem;
    margin-top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
  .aboutus-text{
    margin-bottom: 3rem;
  }
  .aboutus-text p{
    width: 100%;
  }
  .aboutus-text img{
    display: none;
  }
  .aboutus-social-cards{
    width: 100%;
    justify-content: space-between;
  }
  .aboutus-card{
    width: 28%;
  }
  .products-all{
    flex-direction: column;
  }
  .right-filters{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  .filter-item-container{
    width: 30%;
  }
  .products-filter{
    width: 100%;
  }
  .products-container{
    width: 100%;
    padding: 2rem 0;
  }
  .left-products{
    width: 100%;
  }
  .products-inner{
    grid-column-gap: 40px;
    grid-row-gap: 30px;
  }
  .product-item{
      height:33rem;
  }
  .product-item img{
      height:19rem
  }
  .article-divider{
    flex-direction: column;
  }
  .article-inner{
    width: 100%;
  }
  .article-sidebar{
    width: 100%;
    border-right: none;
    position: relative;
    margin-top: 3rem;
  }
  .article-sidebar::after{
    display: none;
  }
  .article-sidebar p{
    margin-bottom: 2.5rem;
  }
  .article-sidebar-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .article-sidebar-item img{
    margin-left: 0.8rem;
  }
  .p-pack-container{
    flex-direction: column;
  }
  .p-pack-container.f-b{
    flex-direction: column-reverse;
  }
  .p-pack-container-in{
      width:100%;
      padding-left:0;
  }
  .p-pack-choose{
    width:40%;
  }
  .p-pack-img{
    width:54%;
  }
  .buy-card{
    width: 100%;
    margin-top: 2rem;
    padding:1rem 1.5rem;
  }
  .p-pack-container.f-b .buy-card{
    margin-top: 0;
    margin-bottom: 3rem;
  }
  
  .buy-card p{
    background-color: #f0f0f0;
  }
  .checkout-list{
    width: 100%;
  }
  .user-panel-container{
    flex-direction: column;
    justify-content: start;
  }
  .user-panel-side{
    width: 100%;
    margin-bottom: 2rem;
  }
  .user-panel-content{
    width: 100%;
  }
  .login-phone-body{
    width: 70%;
  }
}
@media screen and (max-width: 870px){
  header{
    padding: 1rem 2rem;
}
  .menu-icon{
    display: flex;
    font-size: 1.8rem;
  }
  .menu-inner{
      display: none;
  }
.search-container{
  padding: 0 1rem;
}
.search-results-container{
    right:1rem;
    left:33.8%;
}
.search-inner{
  width: 67%;
}
.search-login{
  width: 30%;
}
  .socials{
    width: 70%;
  }
  .leaderboard-cards{
    margin-bottom: 3.4rem;
    padding-bottom: 0;
  }
  .leaderboard-inner{
    flex-direction: column;
    padding-bottom: 0;
  }
  .leaderboard-item{
    width: 70%;
    height: 15rem;
    margin-bottom: 11rem;
  }
  .leaderboard-item a{
    width: 40%;
    left: calc(50% - 20%);
    bottom: -7rem;
  }
  .leaderboard-item:nth-child(3){
    margin-bottom: 7rem;
  }
  .leaderboard-item p{
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .leaderboard-item-img{
    bottom: -3rem;
    left: calc(50% - 3rem);
    width: 6rem;
    height: 6rem;
  }
  .catrgories-inner{
    flex-direction: column;
  }
  .category-item{
    width: 80%;
  }
  .chooseus-inner{
    width: 90%;
  }
  .faq-accordion {
  width: 80%;
  }
  .footer-coffee{
    height: 20rem;
  }
  .aboutus-card{
    width: 31%;
  }
  .products-inner{
    grid-column-gap: 20px;
    grid-row-gap: 19px;
  }
  .articles-container{
    padding: 3rem 1rem 1rem 0;
  }
  .top-articles{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    margin: 2rem 0 1rem 0;
  }
  .latest-articles{
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 17px;
    grid-row-gap: 30x;
    margin-top: 2rem;
  }
  .article-container{
    padding: 2rem 1rem;
  }
  .p-container{
    padding: 2rem 1rem 3rem 1rem;
  }
  .back-to-cart{
    right: 1rem;
  }
  .user-panel-container{
    padding: 3rem 1rem;
  }
  .login-phone{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: start;
    padding: 2rem;
  }
  .intro-login-text{
    font-size: 70px;
    transform: rotate(0);
    left: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 800px){
  .products-filter{
    flex-direction: column;
    align-items: flex-start;
  }
  .products-inner{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 38px;
  }
  .products-filter div:nth-child(1){
    margin-bottom: 1rem;
  }
  .checkout-item-img{
    width: 8rem;
  }
  .logo-container h1{
    margin-bottom: 0;
  }
  .user-profile-inner{
      width:90%;
  }
} 
@media screen and (max-width: 700px){
  .search-inner{
    width: 100%;
  }
  .search-results-container{
      left:1rem;
  }
  .search-login{
    display: none;
  }
  .catrgories-inner{
    width: 90%;
  }
  .coffee-banner-slide.swiper-slide-prev , .coffee-banner-slide.swiper-slide-next{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  }
  .leaderboard-item a{
    width: 80%;
    left: calc(50% - 40%);
  }
   .chooseus{
    margin: 5rem 0 4rem 0;
  }
  .chooseus-inner{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .chooseus-item{
    width: 85%;
    margin-bottom: 4rem;
  }
  .packing-inner{
    flex-direction: column-reverse;
  }
  .packing-intro{
    width: 80%;
  }
  .packing-intro-img img{
    transform: rotate(0);
  }
  .packing-intro-text{
    align-items: center;
    width: 90%;
  }
  .packing-intro-text p{
    text-align: center;
    width: 90%;
  }
  .packing-swipper-container{
    width: 90%;
    justify-content: center;
  }
  .packingSwiper{
    width: 90%;
    height: 360px;
    margin-bottom: 4rem;
  }

  .faq{
    margin-bottom: 0;
  }
  .faq-accordion {
    width: 90%;
    }
    footer{
      flex-direction: column-reverse;
      align-items: center;
      justify-content: space-around;
      margin-top: 5rem;
    }
    .footer-coffee{
      margin-bottom: 3rem;
    }
    .footer-content{
      align-items: center;
    }
    .footer-menu{
      align-items: center;
    }
    .footer-content .socials a {
    margin: 0 1.4rem;
    }
    .profile-bottom-fix{
        display: none;
    }
    .cart-bottom-fix{
      display: none;
    }
    .fixed-nav{
      display: flex;
    }
    .fixed-nav-item.log-active img{
      width: 30px;
      height: 30px;
      border-radius: 50%;
    }
    .aboutus-social-cards{
      flex-direction: column;
    }
    .aboutus-card{
      width: 70%;
      margin-bottom: 5rem;
    }
    .aboutus-card:nth-child(3){
      margin-bottom: 0;
    }
    .filter-item-container{
      width: 32%;
    }
    .products-inner{
      grid-column-gap: 25px;
      grid-row-gap: 24px;
    }
    .top-articles{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 0 4rem;
    }
    .top-articles-item , .latest-articles-item{
      margin-bottom: 1.5rem;
    }
    .top-articles-item:last-child , .latest-articles-item:last-child{
      margin-bottom: 0;
    }
    .latest-articles{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 0 4rem;
    }
    .latest-article-item{
      width: 100%;
    }
    .article-intro{
      flex-direction: column-reverse;
    }
    .article-main-img , .article-info{
      width: 100%;
    }
    .social-share{
      margin:5rem 0 2.5rem 0;
    }
    .social-share li{
      width: 30%;
      margin: 0 2rem 5.5rem 0;
    }
    .article-sidebar-inner{
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .article-sidebar-item{
      align-items: center;
    }
    .similar-articles{
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 15px;
      grid-row-gap: 0;
    }
    .open-more-address-card-inner{
      width: 95vw;
    }
    .login-phone-body{
      width: 90%;
    }
    .payment-result-container{
        margin: 3rem 0 5rem 0;
    }
    .payment-result-inner{
    width:90%;
    }   
    .payment-result-buttons{
        width:100%;
    }
    .user-welcome-mobile{
        display:flex;
        width:100%;
        justify-content:space-between;
        align-items:center;
        margin:0 0 1.5rem 0;
        padding:0 1rem;
    }
    .user-welcome-mobile button{
        color:var(--white);
        background-color:var(--blue);
        border-radius:0.5rem;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0 0.5rem;
        height:2rem;
    }
}
@media screen and (max-width: 650px){
  .right-filters{
    flex-direction: column;
  }
  .filter-item-container{
    width: 100%;
  }
  .top-articles{
    padding: 0 3rem;
  }
  .latest-articles{
    padding: 0 3rem;
  }
  .similar-articles{
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    padding: 0 2rem;
  }
  .address-item-box{
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .address-item-box-inner {
    flex-direction: column;
    justify-content: start;
  }
  .postal-code{
    margin: 0.5rem 0;
  }
  
}
@media screen and (max-width: 600px){
  .aboutus-card{
    width: 100%;
  }
  .aboutus-container{
    margin-top: 0;
  }
  .aboutus-text p{
    text-align: justify;
  }
  .products-all{
    padding: 0 1rem;
  }
  .article-body img{
    height: 15rem;
  }
  .similar-articles{
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    padding: 0 1rem;
  }
  .social-share{
    margin:4rem 0 1rem 0;
  }
  .social-share li{
    width: 55%;
    margin: 0 0 5.5rem 0;
  }
  .admin-page-head{
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
  }
  .admin-page-head div{
    width: 100%;
    justify-content: end;
    margin-bottom: 3rem;
  }
  .login-phone-body{
    width: 100%;
  }
  .cart-counter-inner{
      width:100%;
  }
  .checkout-item-container{
      flex-direction:column;
      align-items:center;
  }
  .checkout-item-img{
      margin-left:0;
      width:10rem;
      height:12rem;
      margin-bottom:1.3rem;
  }
  .card-js-variant{
      flex-direction:column;
      align-items:flex-start;
  }
  .card-js-variant span:nth-child(1){
      margin-bottom:0.5rem;
  }
  .checkout-item-info{
      width:100%;
  }
}
@media screen and (max-width: 550px){
  .products-filter-items{
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .products-filter-item{
    width: 40%;
    margin-bottom: 1rem;
  }
  .products-container{
    padding: 0.6rem 0;
  }
  .products-inner{
    grid-column-gap: 10px;
    grid-row-gap: 14px;
  }
  .top-articles{
    padding: 0 ;
  }
  .latest-articles{
    padding: 0 ;
  }
  .article-container{
    padding-bottom: 0;
  }
  .article-main-img h1{
    font-size: 18px;
  }
  .article-body{
    margin-top: 1.5rem;
  }
  .article-body img{
    margin: 1.5rem 0;
  }
  .similar-articles{
    padding: 0;
  }
    .social-share{
    margin:4rem 0 1rem 0;
  }
  .social-share li{
    margin: 0 0 5.5rem 0;
  }
  .article-sidebar-inner{
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .last-checkout-items .checkout-item-container{
    align-items: flex-start;
  }
  .checkout-item-info-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-item-info-inner strong{
    margin-right: 0;
  }
  .add-minus-container{
    margin-bottom: 1rem;
  }
  .user-panel-info{
    margin: 3rem 0 2rem 0;
  }
  .user-panel-content .products-container{
    padding: 2rem 0;
  }
  .user-panel-content .products-container h4{
    margin-bottom: 1rem !important;
  }
  .user-panel-content .products-inner{
    padding: 0;
  }
  .last-buy-info h4{
    margin-bottom: 0.2rem;
  }
  .last-buy-info-items th , .last-buy-info-items td {
    font-size: 14px;
  }
  .user-panel-content .product-item{
    height: 23rem;
  }
  .order-again{
    flex-direction: column;
  }
  .order-again p{
    margin-bottom: 1rem;
  }
  .p-pack-img{
      width:56%;
  }
  .p-pack-choose{
      padding-left:0;
  }
  .profile-buttons{
      flex-direction:column;
  }
  .profile-buttons a , .profile-buttons button{
    width:100%;
}
.profile-buttons button{
    margin-bottom:1.5rem;
}
}
@media screen and (max-width: 500px){
    .p-pack-container-in{
        flex-direction:column;
    }
    .p-pack-img{
      width:100%;
      margin-top:2rem;
    }
    .p-pack-choose{
        width:100%;
    }
    .p-pack-container.p-pack-w-m{
        margin-top: 2rem !important;
    }
    .p-item-info div{
        margin-left:1rem;
    }
    .payment-result-buttons{
        flex-direction:column;
    }
    .payment-result-buttons a{
        width:100%;
    }
    .payment-result-buttons a:first-child{
        margin-bottom : 1rem;
    }
    .products-inner{
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 35px;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 400px){
  .leaderboard-item{
    width: 85%;
  }
  .catrgories-inner{
    width: 95%;
  }
  .category-item{
    width: 90%;
  }
     .chooseus{
    margin: 4rem 0 4rem 0;
  }
   .packing-swipper-container{
    width: 84%;
  }
  .faq-accordion {
    width: 95%;
  }
  .products-filter-item{
    width: 35%;
  }
  .products-inner{
    padding: 0 2.5rem;
  }
  .user-panel-order-info{
    margin-top: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .user-panel-order-info div{
    text-align: start;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .user-panel-order-info div p:nth-child(1){
    margin-left: 1rem;
  }
  .p-item-info div{
        margin-left:0;
    }
    .user-welcome-mobile{
        font-size:14px;
    }
}
@media screen and (max-width:360px){
  .products-inner{
    padding: 0 1rem;
  }
  .user-panel-order-item{
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .user-panel-order-item:last-child{
    margin-bottom: 0;
  }
}