/* PayPal Specific Styles */

/* PayPal Standard Specific Styles */
#paypal_standard_form {
    background: linear-gradient(145deg, #e0f2fe, #90cdf4, #4299e1); /* Light blue gradient */
    background-size: 200% 200%;
    animation: gradient-animation-blue 5s ease infinite;
    border: 1px solid #63b3ed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #2d3748;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#paypal_standard_form.visible {
    opacity: 1;
    transform: translateY(0);
}

#paypal_standard_form h4 {
    color: #2b6cb0; /* Darker blue for heading */
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

#paypal_standard_form p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

#paypal_standard_form strong {
    color: #1a202c;
    font-weight: 800;
}

#paypal-std-pay-btn {
    background: linear-gradient(145deg, #007bff, #0056b3, #004085); /* Blue gradient for PayPal button */
    background-size: 200% 200%;
    animation: gradient-animation-blue 5s ease infinite;
    border: none;
    color: white;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    max-width: 320px; /* Match PayPal Advanced button width */
    margin: 20px auto 0;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#paypal-std-pay-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 112, 186, 0.3); /* PayPal blue shadow */
    animation-play-state: paused;
}

@keyframes gradient-animation-blue {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#payment-form-title-paypal-adv {
    color: #007bff; /* Matching Stripe title color */
}

#paypal-adv-pay-btn {
    background: linear-gradient(145deg, #86efac, #4ade80, #16a34a);
    background-size: 200% 200%;
    animation: gradient-animation 5s ease infinite;
    border: none;
    color: white;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#paypal-adv-pay-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
    animation-play-state: paused;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
