/* GastroHubs Ventas - Pricing Page Styles */

.ghv-pricing-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Pricing Header */
.ghv-pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.ghv-pricing-header h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin: 0 0 10px;
    font-weight: 700;
}

.ghv-pricing-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Pricing Cards */
.ghv-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.ghv-pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghv-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ghv-card-featured {
    border-color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.15);
}

.ghv-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ghv-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.ghv-card-header h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin: 0 0 5px;
}

.ghv-card-subtitle {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Pricing Display */
.ghv-card-pricing {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.ghv-price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.ghv-price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.ghv-price-period {
    font-size: 18px;
    color: #888;
}

.ghv-card-setup {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #555;
}

/* Features List */
.ghv-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.ghv-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}

.ghv-features-list li:last-child {
    border-bottom: none;
}

.ghv-features-list li svg {
    flex-shrink: 0;
}

/* Buy Button */
.ghv-btn-buy {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.ghv-btn-buy:hover {
    background: linear-gradient(135deg, #16213e, #0f3460);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
}

.ghv-card-featured .ghv-btn-buy {
    background: linear-gradient(135deg, #e94560, #c73650);
}

.ghv-card-featured .ghv-btn-buy:hover {
    background: linear-gradient(135deg, #c73650, #a02840);
}

/* Checkout Container */
.ghv-checkout-container {
    max-width: 900px;
    margin: 0 auto;
}

.ghv-checkout-header {
    margin-bottom: 30px;
}

.ghv-back-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.ghv-back-btn:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

.ghv-checkout-header h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin: 10px 0 0;
}

.ghv-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

/* Order Summary */
.ghv-order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 30px;
}

.ghv-order-summary h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.ghv-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.ghv-summary-item span {
    color: #777;
}

.ghv-summary-includes {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e5e7eb;
}

.ghv-summary-includes p {
    font-size: 14px;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.ghv-summary-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghv-summary-includes ul li {
    font-size: 13px;
    color: #666;
    padding: 4px 0;
}

.ghv-summary-includes ul li::before {
    content: "\2713 ";
    color: #22c55e;
    font-weight: bold;
    margin-right: 6px;
}

/* Customer Form */
.ghv-form-container {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
}

.ghv-customer-form h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.ghv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ghv-form-field {
    margin-bottom: 18px;
}

.ghv-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.ghv-form-field label .required {
    color: #e94560;
}

.ghv-form-field input,
.ghv-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ghv-form-field input:focus,
.ghv-form-field textarea:focus {
    border-color: #1a1a2e;
    outline: none;
}

.ghv-form-field input.ghv-field-error,
.ghv-form-field textarea.ghv-field-error {
    border-color: #e94560;
    background: #fff5f5;
}

/* PayPal Section */
.ghv-paypal-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

.ghv-paypal-section h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.ghv-payment-note {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    padding: 12px;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

#ghv-paypal-button-container {
    min-height: 55px;
}

.ghv-error-msg {
    color: #e94560;
    background: #fff5f5;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
}

/* Thank You */
.ghv-thank-you {
    text-align: center;
    padding: 60px 20px;
}

.ghv-success-icon {
    margin-bottom: 25px;
}

.ghv-thank-you h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.ghv-thank-you > p {
    font-size: 18px;
    color: #666;
}

.ghv-confirmation-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 30px auto;
    max-width: 500px;
}

.ghv-confirmation-details p {
    margin: 8px 0;
    font-size: 16px;
    color: #555;
}

.ghv-next-steps {
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
    background: #e8f5e9;
    border-radius: 12px;
    padding: 25px 30px;
}

.ghv-next-steps h3 {
    color: #2e7d32;
    font-size: 18px;
    margin: 0 0 15px;
}

.ghv-next-steps ol {
    padding-left: 20px;
    margin: 0;
}

.ghv-next-steps ol li {
    padding: 6px 0;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .ghv-pricing-cards {
        grid-template-columns: 1fr;
    }

    .ghv-pricing-header h2 {
        font-size: 28px;
    }

    .ghv-checkout-layout {
        grid-template-columns: 1fr;
    }

    .ghv-order-summary {
        position: static;
    }

    .ghv-form-row {
        grid-template-columns: 1fr;
    }

    .ghv-price-amount {
        font-size: 44px;
    }
}
