          /*--------------------------------CSS Promo CTA--------------------------------*/
          /* === JUDUL UTAMA === */
          .promo-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #06284e;
            border-bottom: 2px solid #009688;
            display: inline-block;
            padding-bottom: 5px;
          }

          /* === WRAPPER === */
          .promo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
          }

          /* Tombol Navigasi di Samping */
          .promo-nav {
            border: none;
            background: #009688;
            color: white;
            font-size: 24px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
          }

          .promo-nav:hover {
            background: #00796b;
          }

          /* === GRID CARD === */
          .promo-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            width: 100%;
          }

          /* === KARTU PROMO === */
          .promo-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-align: center;
            padding: 22px 18px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center;
          }

          .promo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          }

          /* Badge promo */
          .promo-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
          }

          .promo-badge.red {
            background: #f44336;
          }

          .promo-badge.blue {
            background: #2196f3;
          }

          .promo-badge.green {
            background: #4caf50;
          }

          .promo-badge.purple {
            background: #9c27b0;
          }

          .promo-badge.orange {
            background: #ff9800;
          }

          /* === HEADLINE === */
          .promo-card h4 {
            font-size: 22px;
            color: #06284e;
            font-weight: 700;
            margin-bottom: 10px;
            margin-top: 2px;
          }

          /* === DESKRIPSI === */
          .subtext {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            margin-bottom: 14px;
            min-height: 40px;
          }

          /* === GAMBAR === */
          .promo-card img {
            width: 200px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            margin: 12px 0 16px 0;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
          }

          /* === HARGA === */
          .price {
            font-size: 14px;
            color: #009688;
            margin-bottom: 15px;
          }

          .price s {
            color: #999;
            font-size: 13px;
            margin-right: 4px;
          }

          /* === TOMBOL === */
          .btn-promo {
            background: #009688;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 14px;
            width: 100%;
            max-width: 180px;
            text-decoration: none;
            display: inline-block;
          }

          .btn-promo:hover {
            background: #00796b;
          }

          /*--------------------------------------*/
          /* === PAGINATION BAWAH (angka + panah) === */
          .promo-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
            flex-wrap: wrap;
          }

          .promo-pagination .page-nav,
          .promo-pagination .page-number {
            width: 38px;
            height: 38px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #fff;
            color: #06284e;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            margin: 0 4px;
          }

          .promo-pagination .page-nav:hover,
          .promo-pagination .page-number:hover {
            background: #009688;
            color: #fff;
            border-color: #009688;
          }

          .promo-pagination .page-number.active {
            background: #009688;
            color: #fff;
            border-color: #009688;
          }

          .promo-pagination .page-nav:disabled {
            opacity: 0.4;
            cursor: not-allowed;
          }

          /*--------------------------------------*/
          /* === RESPONSIVE === */
          @media (max-width: 992px) {
            .promo-container {
              grid-template-columns: repeat(2, 1fr);
            }

            .promo-card img {
              width: 200px;
              height: 120px;
              object-fit: cover;
              border-radius: 12px;
              margin: 12px 0 16px 0;
              box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
            }

            .promo-card h4 {
              font-size: 21px;
            }
          }

          @media (max-width: 600px) {
            .promo-container {
              grid-template-columns: 1fr;
            }

            .promo-wrapper {
              flex-direction: column;
            }

            .promo-nav {
              display: none;
            }

            .promo-card {
              padding: 18px 14px;
            }

            .promo-card img {
              width: 200px;
              height: 120px;
              object-fit: cover;
              border-radius: 12px;
              margin: 12px 0 16px 0;
              box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
            }
          }
