/* ISKCON Donate App - Global Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FAF6EC;
}
::-webkit-scrollbar-thumb {
    background: #C95A54;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #AF0D02;
}

/* Premium Box Shadows */
.card-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}
.card-shadow:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 20px -8px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

/* WhatsApp Float Ripple Animation */
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}
.wa-ripple::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #22C55E;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

/* Quick Donate Button - Idle Pulse & Shimmer Animations */
@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes shimmer-sweep {
    0% {
        left: -75%;
    }
    25%, 100% {
        left: 125%;
    }
}

.btn-quick-donate {
    position: relative;
    overflow: hidden;
    animation: pulse-subtle 2.5s infinite ease-in-out;
}

.btn-quick-donate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer-sweep 4s infinite ease-in-out;
}

/* Smooth transition for expandable sections */
.expandable-section {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-in-out;
}

/* Custom Checkbox Styling */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #AF0D02;
    border-color: #AF0D02;
}
.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}