/**
 * TIST LearnDash Addons - Course Selector Styles
 */

/* Purchase Form */
.tist-ld-purchase-form {
    max-width: 480px;
    margin: 24px auto;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tist-ld-course-thumbnail {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.tist-ld-course-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.tist-ld-course-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.tist-ld-course-excerpt {
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Price Display */
.tist-ld-price-display {
    padding: 16px 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tist-ld-price-label {
    font-size: 14px;
    color: #6b7280;
}

.tist-ld-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

/* Currency Selector */
.tist-ld-currency-selector {
    margin-bottom: 20px;
}

.tist-ld-currency-selector label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.tist-ld-currency-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.tist-ld-currency-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buy Button */
.tist-ld-buy-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    margin-bottom: 16px;
}

/* Secure Notice */
.tist-ld-secure-notice {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.tist-ld-secure-notice .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

/* Course Info in Registration Form */
.tist-ld-course-info {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
}

.tist-ld-course-info h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #0369a1;
}

.tist-ld-course-info .tist-ld-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 16px;
}

.tist-ld-course-info .tist-ld-price strong {
    color: #374151;
}

.tist-ld-course-info .tist-ld-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0369a1;
}

/* Currency Selector in Registration Form */
.tist-ld-course-info .tist-ld-currency-selector {
    margin-top: 12px;
}

.tist-ld-course-info .tist-ld-currency-select {
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 480px) {
    .tist-ld-purchase-form {
        margin: 16px;
        padding: 16px;
    }
    
    .tist-ld-course-title {
        font-size: 20px;
    }
    
    .tist-ld-price-amount {
        font-size: 24px;
    }
    
    .tist-ld-buy-button {
        padding: 14px 20px;
        font-size: 16px;
    }
}




