/* YA4M monetization feature start - Give a Gift page styles */

.gift-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 12rem 10% 6rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.gift-section {
    padding: 6rem 10%;
    min-height: auto;
}

.gift-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gift-card-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.gift-card-body {
    text-align: center;
}

.gift-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.price-display {
    margin: 2rem 0;
}

.price-label {
    font-size: 1.6rem;
    color: #999;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: bold;
    color: var(--yellow);
}

.btn-primary {
    background: var(--yellow);
    color: #333;
    border: 0.2rem solid var(--yellow);
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: transparent;
    color: var(--yellow);
}

.gift-card-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.faq-notes {
    text-align: left;
}

.faq-notes p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-notes i {
    color: var(--yellow);
    margin-top: 0.3rem;
}

.gift-form-container {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gift-form-container h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.gift-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 0.2rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.tier-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-tier {
    background: #fff;
    color: #333;
    border: 0.2rem solid var(--yellow);
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-tier:hover {
    background: var(--yellow);
    color: #333;
}

.certificate-note {
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    margin-top: 2rem;
}

.certificate-note i {
    color: var(--yellow);
    margin-right: 0.5rem;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gift-card-small {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.gift-card-small h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.gift-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--yellow);
    margin: 1.5rem 0;
}

.gift-card-small .gift-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    min-height: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gift-hero {
        padding: 10rem 5% 4rem;
    }
    
    .gift-section {
        padding: 4rem 5%;
    }
    
    .gift-card {
        padding: 2rem;
    }
    
    .gift-card-header h2 {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .tier-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-tier {
        width: 100%;
        text-align: center;
    }
    
    .gift-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-form-container {
        padding: 2rem;
    }
}

/* YA4M monetization feature end */

