﻿.offers-section-new {
  padding: 60px 0;
  background: #fff;
}

.offers-container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.offer-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
  /* padding: 3px 73px; */
  border-bottom: 1px solid #e0e0e0;
}

.offer-card-wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Left Side - Content */
.offer-content-box {
  flex: 1;
  max-width: 50%;
}

.offer-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.offer-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-list-new li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: #000000;
  flex-shrink: 0;
}

.discount-callout-new {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-btn-new {
  display: inline-block;
  padding: 14px 40px;
  background: #fcda41;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #fcda41;
}

.cta-btn-new:hover {
  background: transparent;
  color: #d11e2d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

/* Right Side - Simple Square Image Container */
.offer-image-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.image-container {
  width: 100%;
  max-width: 450px;
  height: 400px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.3s ease;
}

.image-container:hover .offer-image {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .offer-card-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .offer-content-box,
  .offer-image-wrapper {
    max-width: 100%;
  }

  .offer-image-wrapper {
    justify-content: center;
  }

  .image-container {
    max-width: 400px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .offer-main-title {
    font-size: 24px;
  }

  .image-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .offers-section-new {
    padding: 40px 0;
  }

  .offer-main-title {
    font-size: 22px;
  }

  .image-container {
    height: 250px;
    max-width: 100%;
  }
}
