/* Demo Payment Button Styles for Pickle BERRY */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hero-actions .btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

.hero-actions .premium-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
    position: relative;
}

.hero-actions .premium-btn::after {
    content: '👑';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    animation: crownBounce 2s ease-in-out infinite;
}

.hero-actions .premium-btn:hover {
    background: linear-gradient(135deg, #ffde00, #ffa000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.hero-actions .book-now-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.hero-actions .book-now-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.hero-actions .buy-now-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.hero-actions .buy-now-btn:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

/* Animation for crown icon */
@keyframes crownBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

/* Pulse effect for buttons */
.hero-actions .btn:focus {
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading state for buttons */
.hero-actions .btn.loading {
    pointer-events: none;
    position: relative;
}

.hero-actions .btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success state */
.hero-actions .btn.success {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: white !important;
}

.hero-actions .btn.success::after {
    content: '✅';
    margin-left: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Additional button states */
.hero-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.hero-actions .btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}