  .section-wrapper {
      width: 100%;
/*      max-width: 1200px;*/
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: #000;
      margin-bottom: 32px;
    }

    /* ── CAROUSEL ── */
    .carousel-container {
      position: relative;
      overflow: hidden;
    }

    .carousel-track-wrapper {
      overflow: hidden;
      border-radius: 12px;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
      justify-content: center;
    }
    .carousel-track.carousel_track_show{
      justify-content: initial;
    }
    /* ── CARD ── */
    .carousel-track-wrapper .coupon-card {
      flex: 0 0 calc((100% - 40px) / 3);
      min-width: 0;
      border-radius: 0px;
      padding: 30px 30px 23px 35px;
      position: relative;
      overflow: hidden;
      background-image: url('/wp-content/uploads/2026/03/coupon-bg.png');
      background-repeat: no-repeat;
      background-size: contain;
      min-height: 266px;
      box-sizing: border-box;
      background-color: transparent;
    }

    .card-logo {
      height: auto;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .card-logo img {
      max-height: 52px;
      max-width: 200px !important;
      object-fit: contain;
    }
    .card-title {
      font-family: 'Addington CF Bold';
      font-weight: 700;
      font-size: 20px;
      color: #000;
      line-height: 117%;
      margin-bottom: 18px;
      max-width: 250px;
      max-width: inherit;
      padding-right: 25px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 45px;
    }

    .card-subtitle {
      font-size: 15px;
      font-weight: 400;
      color: #000000;
      line-height: normal;
      font-family: "Bw Gradual Regular", Sans-serif;
      display: -webkit-box;
       -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 38px;
    }

    .btn-discount {
      display: inline-block;
      background: #fe0002;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 7px 16px;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, 
      transform 0.15s;
      font-family: "Bw Gradual Bold", Sans-serif;
      margin-top: 32px;
      max-width: 121px;
    }
    .btn-discount:hover { background: #261e24; }
    .btn-discount:active { transform: translateY(0); }

    /* ── NAV ARROWS ── */
    .carousel-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
    }

    .nav-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 2px solid #fe0002;
      background: transparent;
      color: #fe0002;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex; 
      align-items: center; 
      justify-content: center;
      transition: all 0.2s;
    }
    .nav-btn:hover { background: #fe0002; color: #fff; }
    .nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .nav-btn:disabled:hover { background: transparent; color: var(--red); }

    /* Dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }
    .dot.active { background: var(--red); width: 24px; border-radius: 4px; }

    /* ── POPUP OVERLAY ── */
    .popup-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      z-index: 1000;
      padding: 16px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .popup-overlay.active { opacity: 1; pointer-events: all; }

    .coupon-popup {
      background: url('/wp-content/uploads/2026/03/coupon_popup_full.png');
      border-radius: 5px;
      overflow: hidden;
      width: 100%;
      max-width: 855px;
      display: grid;
      grid-template-columns: 357px 1fr;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      /*max-height: 90vh;
      overflow-y: auto;*/
    }
    .popup-overlay.active .popup { transform: translateY(0) scale(1); }

    .popup-left {
      background: linear-gradient(160deg, #FFDDEA 0%, #FFA5C6 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 32px 20px;
      min-height: 300px;
      background: url('/wp-content/uploads/2026/03/coupon_popup_bg.png');
      background-size: contain;
      background-repeat: no-repeat;
    }

    .popup-logo-wrap { text-align: center; padding-right: 12px;}

    .popup-right {
      padding: 35px 22px 24px 35px;
      position: relative;
      max-height: 476px;
    }
    .coupon_popup_body{
      overflow-y: auto;
      max-height: 350px;
      padding-right: 10px;
    }
    .popup-close {
      position: absolute; top: 8px; right: 10px;
      border: none;
      cursor: pointer;
      font-size: 26px;
      display: flex; 
      align-items: center; 
      justify-content: center;
      color: #000000;
      transition: background 0.2s;
      background: transparent;
    }
    .popup-title {
      font-size: 24px;
      color: #fe0002;
      margin-bottom: 20px;
      line-height: normal;
      padding-right: 0px;
      font-weight: 700;
      font-family: 'Addington CF Bold';
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .popup-description {
      font-size: 14px;
      font-weight: 400;
      color: #000;
      margin-bottom: 20px;
      line-height: 150%;
      font-family: "Bw Gradual Regular", Sans-serif;
    }
    .popup-description p strong {
        margin: 20px 0px 15px;
        display: block;
    }
    .popup-section-title {
      font-weight: 700;
      font-size: 14px;
      color: #000000;
      margin-bottom: 20px;
      line-height: 150%;
      font-family: "Bw Gradual Bold", Sans-serif;
    }

    .popup-list {
      list-style: none;
      margin-bottom: 18px;
      padding: 0px;
    }
    .popup-list li {
      font-size: 14px;
      font-weight: 400;
      color: #000;
      padding: 4px 0 4px 15px;
      position: relative;
      line-height: 150%;
      font-family: "Bw Gradual Regular", Sans-serif;
    }
    .popup-list li::before {
      content: '•';
      position: absolute; left: 4px;
      color: #000;
      font-size: 1rem; line-height: 1.35;
    }

/*    .popup-list.nested li { padding-left: 32px; }
    .popup-list.nested li::before { left: 18px; }
*/
    .popup-terms {
       font-size: 14px;
       font-weight: 700;
       color: #000;
       margin-bottom: 20px;
       line-height: 150%;
       font-family: "Bw Gradual Bold", Sans-serif;
    }
    .popup-terms a {
      color: #fe0002;
      text-decoration: underline !important;
      margin-left: 7px;
      font-size: 12px;
      font-weight: 700;
     }
    .popup-terms strong { color: #000; }

    .popup-cta {
      margin-top: 20px;
    }
    .btn-cta {
      background: #fe0002;
      color: #fff;
      border: none;
      padding: 7px 20px;
      border-radius: 5px;
      font-family: "Bw Gradual Bold", Sans-serif;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-cta:hover { background: #261e24; color: #fff; }
    .popup-logo-wrap img {
        max-width: 250px !important;
    }
    .btn-cta:disabled {
        background: #ccc;
        border-color: #ccc;
        cursor: not-allowed;
        opacity: .5;
    }
    .coupon_popup_body .cl-card__logo {
        margin-bottom: 8px;
    }
    .coupon_popup_body .cl-card__logo a {
        font-size: 14px;
        text-decoration: none;
        background: #fd3231;
        padding: 5px 10px;
        border-radius: 4px;
        color: #fff;
        font-weight: 500;
    }
    /***customcheckbox***/
      .custom_checkbox label {
          display: inline-flex;
          align-items: center;
          align-items: flex-start;
          gap: 10px;
          cursor: pointer;
          font-size: 14px;
          line-height: 1.5;
          margin-bottom: 20px;
      }
      .custom_checkbox label a{
        text-decoration: underline;
      }
      .custom_checkbox input[type="checkbox"] {
          appearance: none;
          -webkit-appearance: none;
          width: 18px;
          height: 18px;
          border: 1px solid #261e24;
          border-radius: 2px;
          position: relative;
          cursor: pointer;
          flex-shrink: 0;
          padding: 0;
          margin: 0
      }

      .custom_checkbox input[type="checkbox"]:checked {
          background: #261e24;
          border-color: #261e24
      }

      .custom_checkbox input[type="checkbox"]:checked::after {
          content: "";
          position: absolute;
          left: 6px;
          top: 3px;
          width: 4px;
          height: 9px;
          border: solid #fff;
          border-width: 0 2px 2px 0;
          transform: rotate(45deg)
      }
    /***endcheckbox***/

    /* ── RESPONSIVE ── */
    @media only screen and (max-width: 1285px){
      .card-logo{
        margin-bottom: 10px;
      }
     .btn-discount{
        margin-top: 15px;
        padding: 4px 16px;
      }
      .card-title{
        font-size: 18px;
        margin-bottom: 10px;
      }
      .carousel-track-wrapper .coupon-card{
          padding: 15px 23px 23px 22px;
      }
      .carousel-track-wrapper .coupon-card{
        background-size: 100%;
        min-height: auto;
      }
      .card-title{
        max-width: initial;
        padding-right: 10px;
      }
    }
    @media only screen and (max-width: 991px){
     .popup-logo-wrap img {
          max-width: 200px;
      } 
    }
    @media (max-width: 900px) {
      .carousel-track-wrapper .coupon-card { flex: 0 0 calc((100% - 20px) / 2); }
    }

    @media (max-width: 580px) {
      .carousel-track-wrapper .coupon-card { flex: 0 0 100%; }

      .coupon-popup { grid-template-columns: 1fr; }
      .popup-left { min-height: 140px; padding: 24px; flex-direction: row; gap: 16px; background-size: 100%;}
      .popup-right { padding: 20px 20px 24px; }
      .popup-close { top: -140px;}
/*      .carousel-track-wrapper .coupon-card{
        background-size: contain;
      }*/
    }

    @media only screen (max-width: 480px) {      
      .carousel-track-wrapper {
          max-width: 350px;
          margin: 0px auto;
      }
    }
    @media (max-width: 400px) {
      .popup-right { padding: 16px 16px 20px; }
    }