:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #fd79a8;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
}

.offers-sec-3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 40px 0;
}
.offers-sec-3 .offer-section {
  margin: 30px auto;
  max-width: 1200px;
}
.offers-sec-3 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.offers-sec-3 .section-header h2 {
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.offers-sec-3 .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}
.offers-sec-3 .offer-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 15px;
  min-height: 430px;
}
.offers-sec-3 .offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.offers-sec-3 .offer-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.offers-sec-3 .offer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.offers-sec-3 .offer-card:hover .offer-img img {
  transform: scale(1.1);
}
.offers-sec-3 .offer-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.offers-sec-3 .offer-content {
  padding: 20px;
}
.offers-sec-3 .offer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}
.offers-sec-3 .offer-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}
.offers-sec-3 .offer-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
  gap: 40px;
}
.offers-sec-3 .current-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}
.offers-sec-3 .old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 20px;
}
.offers-sec-3 .offer-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  min-width: 120px;
}
.offers-sec-3 .offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}
.offers-sec-3 .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
}
.offers-sec-3 .owl-prev, .offers-sec-3 .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-left: 10px !important;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.offers-sec-3 .owl-prev:hover, .offers-sec-3 .owl-next:hover {
  background: var(--primary-color) !important;
  color: white !important;
}
.offers-sec-3 .owl-dots {
  margin-top: 20px !important;
}
.offers-sec-3 .owl-prev span, .offers-sec-3 .owl-next span {
  font-size: 24px;
}
.offers-sec-3 .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  margin: 5px !important;
  background: #959799 !important;
  transition: all 0.3s ease !important;
}
.offers-sec-3 .owl-dot.active span {
  background: var(--primary-color) !important;
  width: 25px !important;
  border-radius: 30px !important;
}
@media (max-width: 991px) {
  .offers-sec-3 .offer-section {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .offers-sec-3 .owl-nav {
    position: relative;
    top: 0;
    margin-top: 20px;
    justify-content: center;
  }
  .offers-sec-3 .section-header {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=offersDesign3.css.map */