
body {
    background: linear-gradient(to bottom, #FFFBF2, #ffffff);
  }

/* coffee-banner */
.coffee-banner {
    width: auto;
    height: 430px;
    background-image: linear-gradient(
        to bottom, 
        rgba(148, 83, 0, 0.5), 
        rgba(46, 26, 0, 0.5)
      ),url('../img/coffee/coffee-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
}

.coffee-banner-title{
color: var( --text-color-light);
text-shadow: 2px 2px 4px rgba(0, 0, 3, 0.5);
line-height: 1;

}

.coffee-banner-desc{
    color: var( --text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 3, 0.5);
}

/* site-stats section */

.site-stats-card{
    height: 210px;
    width: auto;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: none!important;
}

.stats-count{
    font-weight: bold;
    color: var( --primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 3, 0.1);
    line-height: 1;
}

.stats-title{
    font-weight: bold;
    font-family: var( --primaryFont);
    line-height: 1;
}

/* cateogry-section */
.title-category{
font-weight: bold;
font-family: var( --primaryFont);
color: var(--text-color-dark);
}

/* .categories {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  
    scrollbar-width: none; 
    -ms-overflow-style: none;  
  }
  
  .categories, .products-section::-webkit-scrollbar {
    display: none;  
  }

  .category-card {
    flex: 1 1 300px;
    max-width: 290px;
    border-radius: 20px;
    /* border: 1px solid black; */
    /* background-image:
      linear-gradient(to top, black, transparent),
      url('../img/coffee/tea.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 170px;
    max-height: 120px;
    margin-bottom: 20px;
  }
   */
  
  /* .category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
   */

   .category-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .category-pill {
    min-width: 120px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--btn-hover1);
    color: var(--text-color-dark);
    font-weight: 600;
    font-family: var(--primaryFont);
    font-size: var(--lead);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  .category-pill:hover {
    background-color: #e6d5c3;
  }
  
  .category-pill.active {
    background-color: var(--btn-hover1);
    color: #fff;
    border-color: var(--btn-hover1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 576px) {
    .category-pill {
      min-width: 100px;
      padding: 8px 16px;
    }
  }
  

/* product section */
.products-section{
    height: 935px;
    overflow: scroll;
    border-radius: 40px;

    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  
    scrollbar-width: none; 
    -ms-overflow-style: none;  
    background-color: #ffffff;
    border: none!important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cart-section{
    height: 935px;
    border-radius: 40px;
    border: none!important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cart-title{
    font-family: var(--primaryFont);
}


.icon{
    height: 35px;
    width: 35px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.line-divider {
    width: 100%;
    height: 5px;
    background-color: rgb(0, 0, 0);
    margin-top: 15px;
    margin-bottom: 20px;
}

.buy-btn {
    background-color: var(--primary-color) !important;
    color: var(--text-color-dark) !important;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    padding: 0.4rem 2.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.buy-btn:hover {
    opacity: 0.9;
    background-color: var(--btn-hover1) !important;
    color: var(--text-color-light) !important;
}


.btn-checkout {
    background-color: var(--primary-color);
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-checkout:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: scale(1.02);
  }

  .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0.25em;
    border: 3px solid var(--primary-color) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-label {
    margin-left: 0.5em;
    font-weight: 500;
}

.price{
   font-size: clamp(1.1rem, 2vw, 1.35rem);
   font-weight: 600;
   color: var(--text-color-dark);
}
  