@font-face {
    font-family: 'Barlow-Black';
    src: url('../fonts/BarlowCondensed-Black.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Barlow-Bold';
    src: url('../fonts/BarlowCondensed-Bold.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Barlow-Regular';
    src: url('../fonts/BarlowCondensed-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Barlow-Ebold';
    src: url('../fonts/Barlow-ExtraBold.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Gontserrat-ExtraBold';
    src: url('../fonts/Gontserrat-ExtraBold.ttf') format('truetype');
  }
  @font-face {
    font-family: 'SegoeUi';
    src: url('../fonts/segoeui.ttf') format('truetype');
  }
  @font-face {
    font-family: 'DM-Sans-R';
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  }
body{
    color: #003b4d;
    font-family: 'Barlow-Regular';
    font-size: 18px;
}
.nav-link{
    color: #003b4d !important;
    font-family: 'Barlow-Bold';
}
.form-control{
    border-radius: 20px;
    border-color: #003b4d;
}
.custom-btn{
    background-color: #003b4d;
    border: none;
    color: #fff;
    border-radius: 20px;
}
.custom-btn:hover{
    background-color: #003b4d;
    border: none;
    color: #fff;
    border-radius: 20px;
}
.icon{
    color: #003b4d;
    font-size: 18px;
}
.icon:hover{
    color: #003b4d;
    font-size: 24px;
}
.card-title{
    font-weight: bold;
    color: #000;;
}
.card-text{
    color: #000;
    display: -webkit-box;
  -webkit-line-clamp: 5; /* clamp to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.card-text.expanded {
  -webkit-line-clamp: unset; /* remove clamp when expanded */
}

.read-more {
  color: #007bff;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  font-size: 0.9rem;
}    


.category-card {
    height: 350px; /* Fixed height for consistency */
    border-radius: 20px;
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
  }
/* .card-image{
    height: 200px;
} */
.price{
    text-align: right;
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
}
h1{
    font-family: 'Barlow-Bold';
    letter-spacing: 2px;
    font-size: calc(1.875rem + 1.5vw);
}
.h1-product{
    font-family: 'Barlow-EBold';
    letter-spacing: 0px;
    font-size: calc(1.875rem + 1.5vw);
}
h3{
    font-family: 'Barlow-Bold';
}
.product-image{
  width: 90%;
}
.desktop-display{
    display: block;
}

@media screen and (max-width: 768px) {
    .desktop-display{
        display: none !important;
    }
    .center-mobile{
        text-align: center;
    }
    .padding-mobile{
        padding: 0 !important;
    }
    .product-image{
      width: 70%;
    }
  }

  .size-btn {
    background-color: #003b4d;
    color: #fac56d;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.size-btn:hover,
.size-btn.selected {
    background-color: #fac56d;
    color: #003b4d;
}
.btn-border-none {
    background-color: transparent;
    border: none;
    font-size: 22px;
    font-family: 'Barlow-Bold';
    letter-spacing: 1px;
    color: #003b4d;
    /* width: 20%; */
    cursor: pointer;
}

.btn-border-none:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    position: relative;
    z-index: 100;
}


.btn-border-none.selected {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    position: relative; 
    z-index: 100;
}

.nutrition-table {
    width: 100%;
    border: 1px solid #ddd;
    border-collapse: collapse;
    font-size: 20px;
  }

  .nutrition-table th,
  .nutrition-table td {
    border: 1px solid #ddd;
    padding: 8px 40px;
    vertical-align: middle;
    color: #003b4d;
  }

  .nutrition-table th {
    font-weight: normal;
    width: 50%;
    font-weight: bold;
    width: 60%;
  }

  .nutrition-table td {
    text-align: left;
    color: #003b4d;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
  }
  
  .product-grid .col-sm-3 {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    overflow: hidden; /* ensures image doesn't overflow on zoom */
  }
  
  .product-grid .col-sm-3:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transform: translateY(-4px);
    background-color: #fff;
  }
  
  /* Product image consistency */
  .product-grid .product-image-also {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.4s ease; /* smooth zoom animation */
  }
  
  /* Zoom effect on column hover */
  .product-grid .col-sm-3:hover .product-image-also {
    transform: scale(1.08);
  }



  .scroll-animate-bottom,
  .scroll-animate-top,
  .scroll-animate-left,
  .scroll-animate-right {
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1.0); /* slower & smoother */
    will-change: transform, opacity;
  }
  
  /* -------- From Bottom -------- */
  .scroll-animate-bottom {
    transform: translateY(60px) scale(0.95);
  }
  .scroll-animate-bottom.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* -------- From Top -------- */
  .scroll-animate-top {
    transform: translateY(-60px) scale(0.95);
  }
  .scroll-animate-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* -------- From Left -------- */
  .scroll-animate-left {
    transform: translateX(-60px) scale(0.95);
  }
  .scroll-animate-left.show {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  
  /* -------- From Right -------- */
  .scroll-animate-right {
    transform: translateX(60px) scale(0.95);
  }
  .scroll-animate-right.show {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .product-card{
    text-decoration: none;
    color: #003b4d !important;
  }
  
  