/* Variant 3: Colorful Modern Cards */
/* Bold colors, gradients, modern card design with accent colors */

.special-offers-section-v3 {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0;
}

.special-offers-section-v3 .container-constrained {
  max-width: 1100px;
}

.offers-intro-v3 {
  text-align: center;
  margin-bottom: 60px;
}

.offers-intro-v3 h2 {
  color: #2a2b0e;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
}

.offers-intro-v3 p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.offer-card-v3 {
  background: white;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #a44719;
}

.offer-card-v3:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(164, 71, 25, 0.2);
}

.offer-card-v3:first-child {
  border-top-color: #27ae60;
}

.offer-card-v3:last-child {
  border-top-color: #3498db;
}

.offer-header-v3 {
  padding: 35px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.offer-logo-v3 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.offer-logo-v3 img {
  max-width: 80%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-logo-v3 img.wildside-logo-v3 {
  max-height: 150px;
}

.offer-discount-v3 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #a44719 0%, #8a3a15 100%);
  color: white;
  padding: 10px 18px;
  /* border-radius: 8px; */
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(164, 71, 25, 0.3);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.offer-card-v3:first-child .offer-discount-v3 {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.offer-card-v3:hover .offer-discount-v3 {
  transform: rotate(0deg) scale(1.05);
}

.offer-content-v3 {
  padding: 30px;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-content-v3 h3 {
  color: #2a2b0e;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
}

.offer-description-v3 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.offer-details-v3 {
  margin-top: auto;
  padding: 20px;
  background: #f8f9fa;
  /* border-radius: 10px; */
  border-left: 4px solid #a44719;
}

.offer-card-v3:first-child .offer-details-v3 {
  border-left-color: #27ae60;
}

.offer-card-v3:last-child .offer-details-v3 {
  border-left-color: #3498db;
}

.offer-details-v3 p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.offer-details-v3 strong {
  color: #2a2b0e;
  font-weight: 600;
}

.offer-contact-v3 {
  margin-top: 12px;
}

.offer-contact-v3 a {
  color: #a44719;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-contact-v3 a:hover {
  color: #8a3a15;
  transform: translateX(3px);
}

.offer-note-v3 {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  padding: 10px;
  background: rgba(164, 71, 25, 0.05);
  border-radius: 6px;
}

/* Responsive for Variant 3 */
@media (max-width: 768px) {
  .offers-intro-v3 h2 {
    font-size: 2.2rem;
  }

  .offers-grid-v3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-header-v3 {
    padding: 30px 25px;
    flex-direction: column;
    gap: 20px;
  }

  .offer-logo-v3 {
    min-height: 120px;
  }

  .offer-discount-v3 {
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
  }

  .offer-content-v3 {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .special-offers-section-v3 {
    padding: 60px 0;
  }

  .offers-intro-v3 h2 {
    font-size: 1.8rem;
  }

  .offer-header-v3 {
    padding: 25px 20px;
  }

  .offer-logo-v3 {
    min-height: 100px;
  }

  .offer-logo-v3 img {
    max-height: 100px;
  }

  .offer-logo-v3 img.wildside-logo-v3 {
    max-height: 120px;
  }

  .offer-discount-v3 {
    font-size: 1.2rem;
    padding: 8px 14px;
  }

  .offer-content-v3 {
    padding: 20px;
  }

  .offer-content-v3 h3 {
    font-size: 1.4rem;
  }

  .offer-details-v3 {
    padding: 15px;
  }
}
