:root {
    --brand-primary: #1e3a8a;
    --brand-primary-dark: #1e3a8a; /* 0A236D might be too dark, using tailwind blue-900 equivalent */
    --brand-primary-light: #2563eb;
    --orange-primary: #f97316;
    --green-primary: #22c55e;
    --blue-primary: #3b82f6;
    --purple-primary: #8b5cf6;
    
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

/* Utilities */
.bg-brand-primary {
    background-color: var(--brand-primary) !important;
}
.text-brand-primary {
    color: var(--brand-primary) !important;
}
.text-orange { color: var(--orange-primary) !important; }
.text-green { color: var(--green-primary) !important; }
.text-blue { color: var(--blue-primary) !important; }
.text-purple { color: var(--purple-primary) !important; }

.bg-purple { background-color: var(--purple-primary) !important; color: white; }

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Gradients */
.bg-gradient-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.bg-gradient-green { background: linear-gradient(135deg, #22c55e, #4ade80); }
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.bg-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.bg-gradient-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Navbar */
.navbar {
    background-color: #1a2a6c !important; /* Specific dark blue for navbar */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 1.5rem;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}
.nav-link.active, .nav-link:hover {
    color: #ffc107 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}
.hero-features i {
    font-size: 1.25rem;
}
.hero-image {
    max-height: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Section Title */
.section-title h2::before, .section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #d1d5db;
}
.section-title h2::before { left: -10px; }
.section-title h2::after { right: -10px; }
.section-title h2 { color: var(--brand-primary); }

.section-title h3::before, .section-title h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #d1d5db;
}
.section-title h3::before { left: 0px; }
.section-title h3::after { right: 0px; }
.section-title h3 { color: var(--text-dark); }

/* Income Cards */
.income-card {
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible; /* To allow the top icon to pop out */
    margin-top: 30px; /* Space for the icon */
}
.income-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.card-icon-top {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* How It Works Steps */
.step-container {
    justify-content: space-between;
}
.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}
.step-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}
.step-arrow {
    position: absolute;
    top: 35px;
    right: -15px;
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* Commission Banner */
.commission-banner {
    background: linear-gradient(90deg, #0a1945 0%, #173685 100%);
}
.banner-img-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.banner-img {
    max-height: 280px;
    object-fit: contain;
    margin-bottom: -1rem; /* Slightly overhang if needed */
}

/* Features Box */
.feature-box {
    background-color: white;
    transition: all 0.3s ease;
}
.feature-box:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.feature-icon {
    width: 60px;
    height: 60px;
}

/* Live Earnings Scroller */
.earnings-carousel-wrapper {
    position: relative;
    padding: 0 30px;
}
.earnings-scroll {
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.earnings-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.earning-item {
    min-width: 280px;
    transition: transform 0.2s;
}
.earning-item:hover {
    transform: scale(1.02);
}
.carousel-btn-prev, .carousel-btn-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Journey Banner */
.journey-banner {
    background: linear-gradient(90deg, #0a1945 0%, #1e40af 100%);
}

/* Footer */
footer {
    background-color: #112255 !important;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
    text-decoration: underline;
}
.social-links .btn {
    width: 35px;
    height: 35px;
}

/* ==========================================
   ANPV E-COMMERCE CUSTOM STYLES (PREMIUM DESIGN)
   ========================================== */

/* Category Filters */
.category-btn {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}
.category-btn:hover, .category-btn.active {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: rgba(30, 58, 138, 0.15);
}
.product-card-img-wrapper {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
}
.product-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img {
    transform: scale(1.08);
}
.badge-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.badge-pv-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50rem;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.badge-pv-tag i {
    font-size: 0.7rem;
}
.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}
.product-card-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-primary);
}

/* Rating Stars */
.rating-stars {
    color: #ffc107;
    font-size: 0.85rem;
}

/* Dynamic Add-to-cart Button */
.btn-add-to-cart {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-add-to-cart:hover {
    background-color: var(--brand-primary-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

/* Details Page Premium UI */
.detail-img-container {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.detail-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.detail-img:hover {
    transform: scale(1.05);
}
.detail-pv-badge {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Quantity Controls */
.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    overflow: hidden;
    width: 130px;
    background-color: white;
}
.qty-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.qty-btn:hover {
    background-color: #f1f5f9;
}
.qty-val {
    flex-grow: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    width: 100%;
    pointer-events: none;
}

/* Benefit Card */
.benefit-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1rem;
}

/* PV Progress Meter */
.pv-progress-meter {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 1.25rem;
    color: white;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}
.pv-progress-bar-container {
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50rem;
    overflow: hidden;
    position: relative;
}
.pv-progress-bar {
    height: 100%;
    border-radius: 50rem;
    background: linear-gradient(90deg, #f97316 0%, #ffc107 100%);
    box-shadow: 0 0 12px #f97316;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cart Table Styles */
.cart-item-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s ease;
}
.cart-item-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: rgba(30, 58, 138, 0.1);
}
.cart-img-wrapper {
    background: #f8fafc;
    border-radius: 0.75rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid #f1f5f9;
}
.cart-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Checkout accordion custom styles */
.checkout-input {
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
}
.checkout-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}

/* Shopping Flow Breadcrumbs */
.store-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.store-breadcrumbs a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}
.store-breadcrumbs a:hover {
    text-decoration: underline;
}

/* Custom Vector Images Style (For placeholders if needed) */
.product-svg-bg {
    fill: #f1f5f9;
}

/* Premium Toast Notification */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1060;
}
.anpv-toast {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.anpv-toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

/* ==========================================
   UPGRADED HIGH-FIDELITY E-COMMERCE SYSTEMS
   ========================================== */

/* Top Promo utility bar */
.top-promo-bar {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* Navbar Search bar */
.navbar-search-form {
    position: relative;
    max-width: 380px;
    width: 100%;
}
.navbar-search-input {
    border-radius: 50rem !important;
    padding: 0.5rem 1.25rem 0.5rem 2.5rem !important;
    font-size: 0.88rem;
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}
.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}
.navbar-search-input:focus {
    background-color: white !important;
    color: var(--text-dark) !important;
    border-color: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}
.navbar-search-input:focus::placeholder {
    color: var(--text-muted) !important;
}
.navbar-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: color 0.3s ease;
}
.navbar-search-input:focus ~ .navbar-search-icon {
    color: var(--brand-primary);
}

/* Crossed out pricing */
.price-mrp-original {
    /*text-decoration: line-through;*/
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
    font-weight: 500;
}
.discount-badge-green {
    background-color: #dcfce7;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* Floating status labels */
.floating-status-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Enhanced ecommerce sidebar categories list */
.ecom-filter-item {
    font-size: 0.92rem;
    padding: 0.6rem 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-weight: 500;
}
.ecom-filter-item:hover {
    background-color: #f1f5f9;
    color: var(--brand-primary);
}
.ecom-filter-item.active {
    background-color: #eff6ff;
    color: var(--brand-primary);
    font-weight: 600;
}

/* Trust Badges Grid styles */
.trust-badge-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 0.85rem 0.5rem;
    text-align: center;
    transition: all 0.3s;
}
.trust-badge-card:hover {
    box-shadow: 0 8px 15px -3px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}
.trust-badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

/* Detail thumbnails layout styling */
.detail-thumb-box {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    border: 2px solid #e2e8f0;
    padding: 0.25rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-thumb-box:hover, .detail-thumb-box.active {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Pincode checking visual interface */
.pincode-checker-box {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background-color: #f8fafc;
    padding: 1.25rem;
}
.pincode-input-group {
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background: white;
}
.pincode-input {
    border: none !important;
    outline: none !important;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
    width: 100%;
}
.pincode-btn {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
}
.pincode-btn:hover {
    background-color: var(--brand-primary-light);
}

/* Premium ecommerce tabs headers */
.ecom-tabs-nav {
    border-bottom: 2px solid #f1f5f9;
}
.ecom-tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    transition: all 0.2s;
    outline: none;
}
.ecom-tab-btn:hover {
    color: var(--brand-primary);
}
.ecom-tab-btn.active {
    color: var(--brand-primary);
}
.ecom-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-primary);
    border-radius: 50rem;
}

/* Multi-step checkout progress bars */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #cbd5e1;
    z-index: 1;
}
.step-progress-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background-color: var(--brand-primary);
    z-index: 2;
    transition: width 0.4s ease;
}
.step-item {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-number-bubble {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 3px solid white;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.step-item.active .step-number-bubble {
    background-color: var(--brand-primary);
    color: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}
.step-item.completed .step-number-bubble {
    background-color: #22c55e;
    color: white;
}
.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}
.step-item.active .step-label {
    color: var(--brand-primary);
    font-weight: 700;
}
.step-item.completed .step-label {
    color: #16a34a;
}

/* Coupon Application visual boxes */
.coupon-input-group {
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px dashed var(--brand-primary);
    background: white;
}
.coupon-input {
    border: none !important;
    outline: none !important;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.coupon-btn {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 0.85rem;
}
.coupon-btn:hover {
    background-color: var(--brand-primary-light);
}

/* Payment visual selectors cards */
.payment-selector-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 576px) {
    .payment-selector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.payment-card {
    border: 2px solid #cbd5e1;
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    background-color: white;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.payment-card:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}
.payment-card.active {
    border-color: var(--brand-primary);
    background-color: #f0f7ff;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
}
.payment-card-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.payment-card-icon {
    font-size: 1.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.payment-card.active .payment-card-icon {
    color: var(--brand-primary);
}
.payment-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}
.payment-card-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hover scales and pulses */
.hover-bg-light-10:hover {
    background-color: rgba(255,255,255,0.1);
}
@keyframes pulse-animation {
    0% { transform: scale(1) translate(-50%, -50%); }
    50% { transform: scale(1.1) translate(-50%, -50%); }
    100% { transform: scale(1) translate(-50%, -50%); }
}
.animate-pulse {
    animation: pulse-animation 2s infinite ease-in-out;
}


