/* Products Page Styles */
.products-hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.1) 0%, rgba(5, 5, 5, 1) 40%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    text-align: center;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #050505;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch; /* Ensures all cards stretch to same height */
}

/* Product Card */
.product-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #8B5CF6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.product-card.featured {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto 25px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.product-price {
    margin: 20px 0;
}

.currency {
    font-size: 1.5rem;
    color: #9ca3af;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #8B5CF6;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.savings {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 28px; /* Ensures space even when absent */
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex: 1; /* Makes features section grow to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-features li {
    padding: 10px 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px; /* Ensures consistent spacing */
}

.product-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-purchase {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto; /* Pushes button to bottom */
}

.btn-purchase:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

.btn-purchase.featured {
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: white;
    border: none;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.payment-methods h3 {
    color: #f3f4f6;
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #8B5CF6;
    transform: scale(1.1);
}