/* Options Section Styles */
.options-section {
  padding: 60px 0;
  background-color: var(--primary-dark);
}

.options-section h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.options-section-2 {
  padding: 60px 0;
  background-color: var(--primary-light);
}

.recommendation {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  color: black;
  background-color: #c9f7f3;
  padding: 1rem;
  border-radius: 10px;
  font-weight: bolder;
}

.options-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.option-card {
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.option-image {
  margin-bottom: 20px;
  padding: 10px;
}

.option-image img {
  width: 320px;
  margin: 0 auto;
}

.option-info h3 {
  color: var(--black);
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4;
}

.old-price {
  color: var(--black);
  font-size: 14px;
  margin-bottom: 5px;
}

.price {
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.discount {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.buy-btn {
  width: 80%;
  margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
  background-color: var(--primary-color);
  padding: 30px 0;
  text-align: center;
}

.countdown-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.countdown-item {
  background-color: var(--primary-light);
  border-radius: 5px;
  padding: 10px 15px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-item span:first-child {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}

.countdown-label {
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
}

.countdown-separator {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}

/* Delivery Section */
.delivery-section {
  padding: 30px 0;
  background-color: #00b0ff;
}

.delivery-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.delivery-item img {
  width: 30px;
  height: 30px;
}

.delivery-item p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}