.ld-mp-payment-box {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 400px;
  /* background: #fafafa; */
  margin: 1rem 0;
}

.ld-mp-options label {
  display: block;
  margin-bottom: .5rem;
  cursor: pointer;
}

.ld-mp-options input {
  margin-right: .5rem;
}

.ld-mp-gateways {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.ld-mp-btn {
  flex: 1;
  padding: .75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease;
}

.ld-mp-btn[data-gateway="paypal"] {
  background: #ffc439;
  color: #111;
}

.ld-mp-btn[data-gateway="paypal"]:hover {
  background: #ffb347;
}

.ld-mp-btn[data-gateway="ompayment"] {
  background: #4cafef;
  color: #fff;
}

.ld-mp-btn[data-gateway="ompayment"]:hover {
  background: #3a9ed6;
}

.ld-mp-msg {
  margin-top: .75rem;
  color: #666;
  font-size: .9rem;
}


/* new */
.ld-mp-options label {
        display: block;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
    }
    .ld-mp-options input[type="radio"] {
        margin-right: 8px;
    }
    .ld-mp-price-label {
        font-weight: bold;
        margin-right: 8px;
    }
    .ld-mp-price {
        font-weight: bold;
        color: #2271b1;
    }
    .ld-mp-price-regular {
        text-decoration: line-through;
        color: #888;
        margin-right: 6px;
    }
    .ld-mp-price-special {
        font-weight: bold;
        color: #d63638;
    }


/* courses available styles */
  .ld-mp-group-catalog {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .ld-mp-group-item {
            background: #1B2B4F;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .ld-mp-group-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .ld-mp-group-thumb img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .ld-mp-group-info {
            padding: 18px;
            display: flex;
            flex-direction: column;
        }

        .ld-mp-group-title {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 8px;
        }

        .ld-mp-group-courses {
            margin-bottom: 15px;
            color: #fff;
        }

        .ld-mp-group-courses ul {
            margin: 5px 0 0;
            padding-left: 20px;
            list-style: disc;
        }

        .ld-mp-group-courses li a {
            color: #00c6ff;
            text-decoration: none;
        }

        .ld-mp-group-courses li a:hover {
            text-decoration: underline;
        }

        .ld-mp-enroll-type {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .ld-mp-enroll-type label {
            color: #fff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ld-mp-enroll-type input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .ld-mp-enroll-group-btn {
            background: #00c6ff;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            align-self: flex-start;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .ld-mp-enroll-group-btn:hover {
            background: #0073aa;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .ld-mp-group-catalog {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 600px) {
            .ld-mp-group-catalog {
                grid-template-columns: 1fr;
            }
        }