body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  margin-bottom: 30px;
  color: #343a40;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 180px;
  object-fit: cover;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.position-fixed.btn {
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.modal-content {
  border-radius: 15px;
}

.modal-header, .modal-footer {
  border: none;
}

.list-group-item {
  border: none;
  background-color: #f1f1f1;
  margin-bottom: 5px;
  border-radius: 8px;
}

.btn-danger {
  font-weight: bold;
  padding: 0 10px;
}
.main-menu {
  weight:100%;
  height: 60px;
  background-color: aqua;
}
.main-menu h1 {
  font-weight:20px;
  font-size:20px;
  display:flex;
  justify-content: center;
  
}
.quality-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-6px);
}

.quality-card img {
  max-height: 150px;
  object-fit: cover;
}
.reviews-section {
  background: #f8f9fa;
}

.review-card {
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.product-image-wrapper {
    height: 400px; /* або інша потрібна висота */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f9f9f9;
  }

  .product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain; /* ключовий параметр */
  }
 
  .carousel-item img{
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
  }
.row{
justify-content: space-evenly;
}
.autocomplete-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.autocomplete-menu div {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.autocomplete-menu div:hover {
  background-color: #f2f2f2;
}
.logo {
  height: 120px;                 
  transition: height 0.3s ease; 
}

@media (max-width: 400px) {
  .logo {
    height: 70px;  
  }
}

