      body {
        background: #fbfbfb !important;
      }

      /* Toast slide alert */
      .toast-slide {
        position: fixed;
        top: 20px;
        right: -400px;
        background: #111;
        color: #fff;
        padding: 14px 18px;
        border-radius: 10px;
        transition: 0.4s ease;
        z-index: 9999;
      }
      .toast-slide.show {
        right: 20px;
      }

      /* Cart items */
      .cart-item,
      .wishlist-item {
        padding: 16px 0;
        border-bottom: 1px solid #eee;
      }
      .cart-thumb {
        width: 100px;
        height: 60px;
        background: #e5e5e5;
        border-radius: 8px;
      }
      .action-link {
        padding: 0.5rem 0.75rem !important;
        margin: 1.5rem 0 !important;
        color: var(--blue);
        cursor: pointer;
        font-size: 14px;
      }

      .action-link:hover {
        background-color: var(--blue-light);
        border-radius: 10px;
      }

      /* Empty cart */
      .empty-cart {
        padding: 60px 0;
        color: #999;
        text-align: center;
      }

      #couponInput {
        background-color: #f1f1f1;
        color: var(--text-muted);
        border:;
      }

      .card {
        padding: 1.5rem !important;
        border-radius: 12px;
        border: 1px solid var(--gray-light);
      }

      .card-coupon {
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid var(--gray-light);
      }

      /* ------------------------------------------------------
   PEOPLE ALSO ENROLLED STYLE
------------------------------------------------------ */
      .course-card {
        background: white;
        border: 1px solid #d9d9d9; /* No shadow, clean border */
        border-radius: 20px;
        overflow: hidden;
        padding-bottom: 20px;
      }

      .course-card .course-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
      }

      .badge-mcor {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(0, 0, 0, 0.45);
        padding: 4px 12px;
        border-radius: 10px;
        color: white;
        font-weight: 600;
        display: flex;
        gap: 5px;
      }

      .badge-mcor .letter.active-category {
        color: var(--yellow); /* your yellow */
      }

      .course-card .badge-level {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--bg-yellow-light);
        color: var(--yellow-dark);
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 0.85rem;
      }

      .meta-icons span {
        font-size: 14px;
        color: var(--text-secondary);
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-right: 16px;
      }

      .enroll-btn {
        float: right;
        margin-top: 10px;
      }


      .coupon-badge {
  background: #e5e7eb;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
  text-transform: uppercase;
}

      /* ===============================
   CONSENT CHECKBOX (OMS STYLE)
=============================== */

      .consent-wrap {
        margin-top: 12px;
      }

      .consent-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
      }

      .consent-label input {
        display: none;
      }

      /* Mini box */
      .custom-checkbox {
        width: 14px;
        height: 14px;
        border: 1.5px solid #c7c7c7;
        border-radius: 3px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
      }

      /* Checkmark */
      .custom-checkbox::after {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--blue-darker);
        border-radius: 1px;
        opacity: 0;
        transform: scale(0.6);
        transition: all 0.2s ease;
      }

      /* Checked state */
      .consent-label input:checked + .custom-checkbox {
        background: var(--blue-darker);
      }

      .consent-label input:checked + .custom-checkbox::after {
        opacity: 1;
        transform: scale(1);
      }

      .consent-text {
        font-size: 12px;
        color: #7a7a7a;
      }
    