/**
 * Public styles for WP Guest Post Marketplace.
 *
 * @link       https://quickpr.co
 * @since      1.0.0
 *
 * @package    WP_Guest_Post_Marketplace
 */

/* Container */
.wpgpm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Section */
.wpgpm-section {
    margin-bottom: 40px;
}

.wpgpm-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.wpgpm-section-description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Pricing Card */
.wpgpm-pricing-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.wpgpm-pricing-card:hover {
    transform: translateY(-5px);
}

.wpgpm-pricing-header {
    background-color: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.wpgpm-pricing-header h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

.wpgpm-pricing-price {
    margin-bottom: 10px;
}

.wpgpm-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #3a7bd5;
}

.wpgpm-price-period {
    font-size: 14px;
    color: #777;
}

.wpgpm-pricing-features {
    padding: 25px;
}

.wpgpm-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpgpm-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.wpgpm-pricing-features li:last-child {
    border-bottom: none;
}

.wpgpm-pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a7bd5;
    font-weight: bold;
}

.wpgpm-pricing-options {
    padding: 25px;
    background-color: #f8f9fa;
}

/* Option Items */
.wpgpm-option-item {
    margin-bottom: 15px;
}

.wpgpm-option-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wpgpm-option-item input[type="checkbox"] {
    margin-right: 10px;
}

.wpgpm-option-price {
    margin-left: 5px;
    color: #3a7bd5;
    font-weight: 500;
}

.wpgpm-total-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
}

/* Form */
.wpgpm-order-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.wpgpm-form-section {
    margin-bottom: 30px;
}

.wpgpm-form-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.wpgpm-form-row {
    margin-bottom: 20px;
}

.wpgpm-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.wpgpm-form-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.wpgpm-form-field:focus {
    border-color: #3a7bd5;
    outline: none;
}

/* Error Styling */
.wpgpm-field-error {
    border-color: #c62828 !important;
    background-color: rgba(255, 235, 238, 0.3) !important;
}

.wp-editor-wrap.wpgpm-field-error {
    border: 1px solid #c62828 !important;
    padding: 2px;
}

.wp-editor-wrap.wpgpm-field-error .wp-editor-container {
    border-color: #c62828 !important;
}

/* Order Summary */
.wpgpm-order-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.wpgpm-order-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.wpgpm-order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.wpgpm-order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 18px;
    font-weight: 600;
}

/* Payment Methods */
.wpgpm-payment-methods {
    margin-top: 20px;
}

.wpgpm-payment-methods.wpgpm-field-error {
    border: 1px solid #c62828;
    border-radius: 4px;
    background-color: rgba(255, 235, 238, 0.3);
    padding: 10px;
}

.wpgpm-payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.wpgpm-payment-method:hover {
    border-color: #3a7bd5;
}

.wpgpm-payment-method input[type="radio"] {
    margin-right: 15px;
}

.wpgpm-payment-icons {
    margin-left: auto;
    display: flex;
}

.wpgpm-payment-icons img {
    height: 24px;
    margin-left: 5px;
}

/* Buttons */
.wpgpm-submit-button {
    display: inline-block;
    background-color: #3a7bd5;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpgpm-submit-button:hover {
    background-color: #2c5ea3;
}

.wpgpm-form-actions {
    margin-top: 30px;
    text-align: center;
}

/* Alerts */
.wpgpm-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.wpgpm-alert-info {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    color: #0d47a1;
}

.wpgpm-alert-success {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.wpgpm-alert-error {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

.wpgpm-hidden {
    display: none;
}

/* Featured Image */
.wpgpm-featured-image-container {
    margin-bottom: 20px;
}

.wpgpm-featured-image-container.wpgpm-field-error {
    border: 1px solid #c62828;
    border-radius: 4px;
    background-color: rgba(255, 235, 238, 0.3);
    padding: 10px;
}

.wpgpm-featured-image-preview {
    margin-bottom: 10px;
    min-height: 50px;
}

.wpgpm-featured-image-preview img {
    max-width: 100%;
    max-height: 300px;
    display: block;
}

.wpgpm-upload-button {
    display: inline-block;
    background-color: #3a7bd5;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.wpgpm-upload-button:hover {
    background-color: #2c5ea3;
}

.wpgpm-remove-button {
    display: inline-block;
    background-color: #f44336;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpgpm-remove-button:hover {
    background-color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .wpgpm-container {
        padding: 15px;
    }
    
    .wpgpm-section-title {
        font-size: 24px;
    }
    
    .wpgpm-price-amount {
        font-size: 28px;
    }
    
    .wpgpm-order-form {
        padding: 20px;
    }
    
    .wpgpm-payment-method {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wpgpm-payment-icons {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .wpgpm-section-title {
        font-size: 20px;
    }
    
    .wpgpm-price-amount {
        font-size: 24px;
    }
    
    .wpgpm-submit-button {
        width: 100%;
    }
}
