/** @format */

.hero {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: 20px 15px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge-offer {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(16px, 5vw, 22px);
  margin-bottom: 25px;
  opacity: 0.95;
  font-weight: 500;
}

.hero-tagline {
  font-size: clamp(14px, 4vw, 18px);
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Offer Section */
.offer-wrapper {
  margin: 40px 15px;
}

.main-offer-card {
  background: white;
  border-radius: 25px;
  padding: clamp(25px, 5vw, 50px) clamp(20px, 4vw, 30px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.main-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d97706, #f59e0b, #d97706);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.offer-image {
  text-align: center;
  font-size: clamp(80px, 15vw, 200px);
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.offer-content h2 {
  font-size: clamp(28px, 7vw, 42px);
  color: #d97706;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.offer-content p {
  font-size: clamp(14px, 3vw, 16px);
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.price-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
  border: 3px solid #d97706;
}

.price-old {
  font-size: clamp(18px, 4vw, 24px);
  text-decoration: line-through;
  color: #999;
  display: inline-block;
  margin-right: 10px;
}

.price-new {
  font-size: clamp(32px, 8vw, 48px);
  color: #d97706;
  font-weight: 900;
}

.discount-badge {
  background: #ef4444;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(14px, 3vw, 18px);
  display: inline-block;
  margin-left: 10px;
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  font-size: clamp(14px, 3vw, 16px);
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: "✓";
  font-weight: 900;
  color: #10b981;
  font-size: 20px;
  margin-right: 15px;
  background: rgba(16, 185, 129, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-buy {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
  color: white;
  border: none;
  padding: clamp(14px, 3vw, 18px) clamp(30px, 6vw, 50px);
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  width: 100%;
  margin-bottom: 15px;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
  color: white;
}

.btn-buy:active {
  transform: translateY(-1px);
}

.urgency-text {
  background: #fef3c7;
  border-left: 4px solid #ef4444;
  padding: 15px 20px;
  border-radius: 8px;
  color: #991b1b;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: clamp(12px, 3vw, 14px);
}

/* Combo Details Section */
.combo-details {
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  color: #d97706;
  margin-bottom: 40px;
  text-align: center;
}

.combo-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.item-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fef3c7 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 3px solid #d97706;
  transition: all 0.3s;
}

.item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.2);
}

.item-card h5 {
  color: #d97706;
  font-weight: 900;
  margin-bottom: 10px;
  font-size: clamp(16px, 3vw, 18px);
}

.item-card p {
  color: #555;
  font-size: clamp(12px, 2.5vw, 14px);
}

.item-icon {
  font-size: clamp(35px, 10vw, 50px);
  margin-bottom: 12px;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: white;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #d97706;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefit-card h5 {
  color: #d97706;
  font-weight: 900;
  margin-bottom: 15px;
  font-size: clamp(16px, 3vw, 18px);
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
  font-size: clamp(13px, 2.5vw, 14px);
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: white;
  padding: clamp(30px, 6vw, 50px) clamp(20px, 4vw, 30px);
  border-radius: 20px;
  margin-bottom: 50px;
}

.why-choose h3 {
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.why-item {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(18px, 4vw, 25px);
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-5px);
}

.why-item h6 {
  font-weight: 900;
  margin-bottom: 10px;
  font-size: clamp(14px, 3vw, 16px);
}

.why-item p {
  font-size: clamp(12px, 2.5vw, 14px);
  opacity: 0.95;
}

/* Occasion Section */
.occasion-section {
  margin-bottom: 50px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.occasion-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fef3c7 100%);
  padding: clamp(18px, 3vw, 25px);
  border-radius: 15px;
  text-align: center;
  border: 2px solid #f59e0b;
  transition: all 0.3s;
  cursor: pointer;
}

.occasion-card:hover {
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
  transform: translateY(-5px);
}

.occasion-card h6 {
  color: #d97706;
  font-weight: 900;
  margin-bottom: 8px;
  font-size: clamp(14px, 3vw, 16px);
}

.occasion-card p {
  color: #555;
  font-size: clamp(11px, 2.5vw, 13px);
}

/* Reviews Section */
.reviews-section {
  margin-bottom: 50px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background: white;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #fbbf24;
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #fbbf24;
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: #555;
  line-height: 1.7;
  font-size: clamp(13px, 2.5vw, 15px);
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-weight: 900;
  color: #d97706;
  font-size: clamp(12px, 2.5vw, 14px);
}

/* Countdown Timer */
.countdown-section {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: clamp(25px, 5vw, 30px);
  border-radius: 15px;
  margin: 40px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.countdown-section h4 {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 900;
  margin-bottom: 15px;
}

.countdown-section p {
  font-size: clamp(14px, 3vw, 16px);
  margin: 0;
}

/* Festive and Star Icons */
.festive-icon {
  color: #e63946;
  font-size: clamp(16px, 3vw, 18px);
  margin-right: auto;
}

.star-icon {
  color: #f4c430;
  font-size: clamp(18px, 4vw, 24px);
}

/* Offer Container */
.offer-container {
  margin: 0 clamp(20px, 5vw, 150px);
}

.offer-image img {
  height: clamp(250px, 50vw, 600px);
  width: clamp(200px, 70vw, 500px);
  border-radius: 10px;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .offer-grid {
    gap: 20px;
    padding: 0 10px;
  }

  .offer-container {
    margin: 0 clamp(15px, 3vw, 80px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
    margin: 15px 10px;
  }

  .badge-offer {
    padding: 8px 16px;
    font-size: 12px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-image img {
    height: clamp(200px, 40vw, 400px);
    width: 100%;
    max-width: 100%;
  }

  .main-offer-card {
    padding: 25px 15px;
  }

  .price-section {
    padding: 15px;
  }

  .discount-badge {
    display: block;
    margin: 10px 0 0 0;
  }

  .features-list li {
    margin-bottom: 12px;
  }

  .combo-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .offer-container {
    margin: 0 15px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 30px 12px;
    margin: 10px 8px;
  }

  .combo-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .offer-container {
    margin: 0 10px;
  }

  .offer-image img {
    height: auto;
    max-height: 300px;
  }

  .price-old,
  .price-new {
    display: block;
  }

  .discount-badge {
    margin: 8px 0 0 0;
  }

  .btn-buy {
    padding: 12px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .offer-content h2 {
    font-size: 24px;
  }
}