/* ========================================
   SKELETON LOADER
   ======================================== */
.page-skeleton {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
    padding-bottom: 80px;
}

.skeleton-header {
    height: 60px;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.skeleton-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.skeleton-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.skeleton-image {
    width: 80px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.skeleton-info {
    flex: 1;
}

.skeleton-title {
    height: 20px;
    background: #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 70%;
    position: relative;
    overflow: hidden;
}

.skeleton-text {
    height: 16px;
    background: #e0e0e0;
    margin-bottom: 8px;
    border-radius: 4px;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.skeleton-price {
    height: 24px;
    background: #e0e0e0;
    border-radius: 4px;
    width: 40%;
    position: relative;
    overflow: hidden;
}

.skeleton-button {
    height: 42px;
    background: #e0e0e0;
    border-radius: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

/* Animation Shimmer */
.skeleton-header::after,
.skeleton-card::after,
.skeleton-image::after,
.skeleton-title::after,
.skeleton-text::after,
.skeleton-price::after,
.skeleton-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ========================================
   PAYMENT METHODS PAGE STYLES
   ======================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #054A29 0%, #0A7A4A 100%);
    --secondary-gradient: linear-gradient(135deg, #080759 0%, #1a1a8a 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.4);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: #f0f4f2;
    overflow-x: hidden;
}

.header-area {
    background: var(--primary-gradient);
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-area .page-heading h6 {
    color: white !important;
}

.header-area .back-button a, 
.header-area .back-button a svg {
    color: white !important;
    fill: white !important;
}

.header-area .suha-navbar-toggler span {
    background-color: white !important;
}

.page-content-wrapper {
    padding-bottom: 100px;
    padding-top: 80px; /* Offset for fixed header */
}

.premium-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid #ffffff;
    transition: var(--transition);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.premium-card:hover::before {
    transform: translateX(100%);
}

.payment-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.method-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: var(--transition);
}

.premium-card:hover .method-image {
    transform: scale(1.1);
}

.country-selector-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.form-select-premium {
    border: none;
    background: transparent;
    font-weight: 700;
    color: #054A29;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    box-shadow: none !important;
}

.badge-premium {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-ZM { background: #e3f2fd; color: #1976d2; }
.badge-CD { background: #fff3e0; color: #e65100; }

.secure-footer {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 25px;
    color: white;
    box-shadow: 0 15px 35px rgba(5, 74, 41, 0.2);
    position: relative;
    overflow: hidden;
}

.secure-footer::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .skeleton-image {
        width: 60px;
        height: 60px;
    }
}
