﻿/* ========================================= OFFERS PAGE CUSTOM STYLES ========================================= */
:root {
  --primary: #059eff;
  --secondary: #ceedff;
  --text-dark: #000000;
  --text-body: #4a4a4a;
  --bg-light: #f4f9fd;
  --bg-page: #f8f9fa;
  --border-color: #e5e9f0;
}
.offers-page {
  background-color: var(--bg-page);
  min-height: 50vh;
}
.section-padding {
  padding: 80px 0;
}
/* .section-padding-bottom {
  padding-bottom: 80px;
} */
.text-center {
  text-align: center;
}
.sd-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.sd-heading span {
  color: var(--primary);
}
.sp-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
}
.offers-header-banner {
  background-color: #11111180;
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}
.offers-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offers-page-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #ffbd1f;
}
.offers-breadcrumb {
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 1px;
  display: inline-block;
}
.offers-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
/* .offers-breadcrumb a:hover {
  color: var(--primary);
} */
.offers-breadcrumb span {
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 1px;
  display: inline-block;
}
.offers-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}
.experience-badge-mini {
  background: var(--primary);
  color: #fff;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(5, 158, 255, 0.25);
  margin: 0 auto;
  border: 8px solid var(--secondary);
}
.experience-badge-mini strong {
  font-size: 48px;
  line-height: 1;
}
.experience-badge-mini span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.offer-card {
  /* background: #fff; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f5;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(5, 158, 255, 0.12); */
  /* border-color: var(--primary); */
}

.offer-img-wrapper {
  position: relative;
  /* height: 220px; */
  overflow: hidden;
}
.offer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-img-wrapper img {
  transform: scale(1.1);
}
.offer-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.offer-badge {
  background: var(--primary);
  color: #fff;
  padding: 8px 15px;
  font-weight: 800;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.offer-content {
  padding: 30px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
}
.offer-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin: 0 0 0;
  font-weight: 700;
}
.offer-content p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.6;
}
.offer-footer {
  /* border-top: 1px dashed #dcdcdc; */
  padding-top: 20px;
  margin-top: auto;
}
.offer-btn {
  transition: none;
  line-height: 18px;
  border-width: 1px;
  margin-top: 10px !important;
  padding: 16px 40px;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 4px;
  color: #ffffff;
  background-color: #f26522;
  border: 2px solid #f26522;
}
.offer-btn:hover {
  background-color: #fff;
  color: #000 !important;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); */
  border: 2px solid #2e9e46;
}
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #0482d6;
  box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}
.sd-cta-section {
  background-color: var(--secondary);
  width: 100%;
}
.sd-cta-section p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .offers-header-flex {
    flex-direction: column;
    /* text-align: left; */
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .offers-page-title {
    font-size: 26px;
  }
  .offers-header-flex {
    align-items: center;
    text-align: center;
  }
  .section-padding {
    padding: 60px 0;
  }
  /* .offer-img-wrapper {
    height: 180px;
  } */
  .sd-heading {
    font-size: 26px;
  }
}

/* ========================================================= TOP CALL BANNER (ins3) ========================================================= */
.well1.ins3.bg-primary {
  position: relative;
  background-color: #940000;
  padding: 26px 0;
  overflow: hidden;
}

/* Scattered dot pattern overlay, matches other decorative sections */
.well1.ins3.bg-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.5) 1.5px,
    transparent 1.5px
  );
  background-size: 55px 55px;
  background-position:
    0 0,
    28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.well1.ins3.bg-primary .numlink {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  cursor: pointer;
}

/* ========================================================= FEATURE STRIP (3 columns) ========================================================= */
.well1:not(.ins3) {
  background-color: #ffffff;
  padding: 50px 0;
}

.well1:not(.ins3) .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.well1:not(.ins3) .grid_4 h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.well1:not(.ins3) .grid_4 p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

.well1:not(.ins3) .grid_4 p a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.well1:not(.ins3) .grid_4 p a:hover {
  color: #3fa9d5;
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .well1:not(.ins3) .row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .well1.ins3.bg-primary .numlink {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .well1.ins3.bg-primary {
    padding: 20px 0;
  }
  .well1:not(.ins3) {
    padding: 40px 0;
  }
  .well1:not(.ins3) .row {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* =========================================================
   OFFER DETAIL SECTION
   (scope: add class="offer-detail-section" to the outer <section>)
========================================================= */

.offer-detail-section.bg-default {
  background-color: #ffffff;
}

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

/* ---- Row layout ---- */
.offer-detail-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.offer-detail-section .row-30 {
  margin: 0 -15px;
}
.offer-detail-section .row-30 > [class*="col-"] {
  padding: 0 15px;
  box-sizing: border-box;
}
.offer-detail-section .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.offer-detail-section .row-30 {
  padding: 44px 0;
}

/* ---- Divider between offers ---- */
.offer-detail-section hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 0;
}

/* ---- Image / carousel figure ---- */
.offer-detail-section .slick-product-figure {
  border: 6px solid var(--header-green, #2e9e46);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  line-height: 0;
}
.offer-detail-section .slick-product-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Text column ---- */
.offer-detail-section .single-product h4 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dark, #1a1a1a);
}

.offer-detail-section .single-product > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

/* ---- Checklist ---- */
.offer-detail-section .list-description {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.offer-detail-section .list-description li {
  margin-bottom: 10px;
}
.offer-detail-section .list-description li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1a1a1a;
}
.offer-detail-section .list-description .fa-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--header-green, #2e9e46);
  color: #ffffff;
  font-size: 11px;
}

/* ---- "GET 20% OFF" line ---- */
.offer-detail-section .single-product > p:last-of-type {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--header-green, #2e9e46);
}

/* ---- CTA button ---- */
.offer-detail-section .group-lg.group-middle {
  display: flex;
}
.offer-detail-section .button-primary.button-winona {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 4px;
  background-color: var(--header-green, #2e9e46);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.offer-detail-section .button-primary.button-winona:hover {
  background-color: #257c39;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* ---- Top full-width offers banner image ---- */
.offer-detail-section + .bg-gray-7.inner-sect img,
.bg-gray-7.inner-sect img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .offer-detail-section .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offer-detail-section .col-lg-6:first-child {
    margin-bottom: 26px;
  }
  .offer-detail-section .single-product h4 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .offer-detail-section .row-30 {
    padding: 30px 0;
  }
  .offer-detail-section .button-primary.button-winona {
    display: block;
    text-align: center;
  }
}

.bg-gray-7.inner-sect img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .bg-gray-7.inner-sect {
    height: 200px;
    overflow: hidden;
  }

  .bg-gray-7.inner-sect img {
    width: auto;
    max-width: none;
    height: 180px;
    object-fit: cover;
    object-position: left center !important;
  }
}
