

.combo-section {
  width: 95%;
  max-width: 1200px;
  margin: 40px auto 0px auto; 
  background: #089da1; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15); 
  padding: 32px 24px 0px 24px; 
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.combo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 12px 8px 12px; 
  transition: box-shadow 0.3s;
}

.combo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 12px 8px 12px;
  transition: box-shadow 0.3s;
}

.combo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-right: 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-btn {
  margin-left: 0;
}

.combo-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff; 
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  animation: slideInFade 1.5s ease forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.view-all-btn {
  background: #2c3e50; 
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background: #066a73; 
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 18px;
  padding-right: 18px;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}

.combo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 12px 18px 12px;
  transition: box-shadow 0.3s;
}

.combo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.35);
  transform: translateY(-6px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.combo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  background: #e9f0ff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
}

.combo-info {
  margin-top: 10px;
  width: 100%;
}

.combo-title {
  font-size: 1rem;
  font-weight: 600;
  color: #003366;
  margin: 0 0 5px 0;
  min-height: 38px;
  line-height: 1.2;
}

.stars {
  color: #ffc107; 
  margin-bottom: 7px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.new-price {
  color: #003366;
  font-weight: 700;
  font-size: 1.1rem;
}

.discount {
  background: #2c3e50;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 3px;
  padding: 2px 8px;
  margin-left: 4px;
}

.carousel-btn {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  font-size: 1.8rem;
  color: #2c3e50;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  transition: background 0.4s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.left {
  left: 0;
}
.carousel-btn.right {
  right: 0;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn:hover:not(:disabled) {
  background: #cce4ff;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .combo-section {
    padding: 12px 4px 24px 4px;
  }
  .combo-card {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    padding: 8px 8px 12px 8px;
  }
  .carousel-btn.left {
    left: -8px;
  }
  .carousel-btn.right {
    right: -8px;
  }
}

@media (max-width: 600px) {
  .combo-header h2 {
    font-size: 1.2rem;
  }
  .combo-card {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    padding: 6px 6px 8px 6px;
  }
  .combo-title {
    font-size: 0.9rem;
    min-height: 32px;
  }
  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}
