﻿/* ========================================= OFFERS PAGE CUSTOM STYLES ========================================= */

.offers-section {
  padding: 80px 0;
  background: #fff;
}

.offers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
}

.offer-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.offer-row.reverse {
  direction: rtl;
}

.offer-row.reverse > * {
  direction: ltr;
}

.offer-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.offer-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.offer-content br {
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--green-color);
  flex-shrink: 0;
}

.discount-text {
  font-weight: 600;
  color: #333;
  margin: 15px 0;
  display: block;
}

.cta-btn-offer {
  display: inline-block;
  background: var(--green-color);
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta-btn-offer:hover {
  background: #6bc035;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(119, 211, 63, 0.3);
}

.offer-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-image {
  width: 100%;
  /* height: 400px;
  object-fit: cover; */
  display: block;
}


/* Responsive */
@media (max-width: 992px) {
  .offer-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-row.reverse {
    direction: ltr;
  }

  .offer-image {
    height: 300px;
  }

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

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

  .offer-row {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

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

  .offer-content p {
    font-size: 14px;
  }

  .offer-image {
    height: 250px;
  }

 
}

@media (max-width: 480px) {
  .offer-content h2 {
    font-size: 24px;
  }

  .cta-btn-offer {
    width: 100%;
    text-align: center;
  }

  .offer-image {
    height: 220px;
  }
}
