/* Gift Guide Section */
.gift-guide {
    padding: 2rem 0;
    background: #fff;
}

.gift-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #222;
    letter-spacing: 1px;
}

.gift-guide-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.gift-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.gift-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.gift-icon {
    height: 120px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #C27BA0;
    position: relative;
}

.gift-card.special .gift-icon {
    background: linear-gradient(135deg, #C27BA0 0%, #a66889 100%);
    color: white;
}

.gift-card.special .gift-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #C27BA0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gift-content {
    padding: 1.5rem;
}

.gift-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #222;
}

.gift-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.gift-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gift-tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
}

.gift-card.special .gift-tag {
    background: rgba(194, 123, 160, 0.1);
    color: #C27BA0;
}

@media (max-width: 768px) {
    .gift-guide {
        padding: 2rem 0;
    }
    
    .gift-guide h2 {
        font-size: 2rem;
    }
    
    .gift-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}