body {
  padding-bottom: 90px;
  background: #ffffff; 
  /*background: linear-gradient(to bottom, #ffffff, #f4f6ff);*/
}
/* ===== PROFILE SECTION ===== */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  gap: 4px;
  width: fit-content;
  margin: 10px auto;
  padding: 8px 16px;
  border-radius: 12px;
  background: transparent;
}

.business-logo {
  width: 95px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* TEXT */
.profile {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  font-family: 'Cinzel', serif;
  color: #333;
}

@media (max-width: 768px) {
  .business-logo {
    width: 85px;
  }
  .profile {
    font-size: 13px;
  }
}


@media (max-width: 480px) {
  .business-logo {
    width: 75px;
  }
  .profile {
    font-size: 12px;
  }
  .profile-section {
    padding: 5px 12px;
  }
}




/* ===== PRODUCT SECTION ===== */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 5px auto;
  padding: 4px;
}

.product-item {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 12px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

/* ===== TABLET (3 boxes) ===== */
@media (min-width: 768px) {
  .product-item {
    flex: 1 1 calc(33.33% - 12px);
    max-width: calc(33.33% - 12px);
  }
}

.product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.product-name {
  margin: 4px 0 2px;
  font-size: 14pxproduct-section;
  font-weight: 600;
  color: #333;
}

.product-price {
  color: #1a3cff;
  font-weight: 600;
  font-size: 15px;
  margin: 2px 0 4px;
  
}

.add-to-cart {
  background-color: #4a6cff;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.add-to-cart:hover {
  background-color: #1a3cff;
}

@media (min-width: 768px) {
  .product-item {
    padding: 16px;
  }
  .product-img {
    height: 140px;
  }
  .product-name {
    font-size: 16px;
  }
  .product-price {
    font-size: 18px;
  }
  .add-to-cart {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .product-section {
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-item {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
  }
  
  
}






/* ===== CATEGORY SECTION ===== */
.category-section {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  gap: 8px;
  padding:0px;
  scroll-behavior: smooth;
  height: 45px ;
}

.category-section::-webkit-scrollbar {
  display: none;
}

.category-item {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  /*transition: all 0.3s ease;*/
    transition: 
    background 0.5s ease,
    color 0.5s ease,
    border-color 0.5s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
    border: 2px solid  #ccc;

}


.category-item.active{
  /* background: blue; */
  color: blue;
 border-color: #1a3cff;
}