/* Gift Registry Section */
.gift-section {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.gift-section .section-title {
    color: var(--deep-purple) !important;
    margin-bottom: 1.5rem;
}

.gift-intro {
    color: var(--deep-purple) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.gift-content {
    max-width: 900px;
    margin: 0 auto;
}

.gift-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gift-card {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gift-card-label {
    color: var(--deep-purple);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gift-card-sublabel {
    color: var(--medium-lavender);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.gift-card-value {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gift-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .gift-options {
        grid-template-columns: 1fr;
    }
    
    .gift-card {
        padding: 1.5rem 1.25rem;
    }
    
    .gift-card-value {
        font-size: 1.25rem;
    }
}
    
    .gift-icon {
        font-size: 2.5rem;
    }
    
    .gift-card-title {
        font-size: 1.5rem;
    }
}
    
    .gift-card {
        max-width: 100%;
    }
    
    .mpesa-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
