/* Gifts by Budget Section */
.gifts-by-budget-section {
    background: linear-gradient(135deg, #f5bf0d 0%, #edf5db 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 3px solid #9b59b6;
    border-bottom: 3px solid #9b59b6;
}

.gifts-by-budget-section .section-header h2 {
    color: #8e44ad;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gifts-by-budget-section .section-header h2 i {
    color: #9b59b6;
    margin-right: 10px;
}

.gifts-by-budget-section .section-subtitle {
    text-align: center;
    color: #6c3483;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Budget Categories Navigation */
.budget-categories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.budget-category-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #d7bde2;
    border-radius: 25px;
    color: #6c3483;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.budget-category-btn:hover {
    background: #f3e6f8;
    border-color: #9b59b6;
}

.budget-category-btn.active {
    background: #9b59b6;
    color: white;
    border-color: #9b59b6;
}

/* Budget Gifts Grid */
.budget-gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.budget-gift-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.budget-gift-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
}

.budget-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #9b59b6;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gift-item-image {
    height: 180px;
    overflow: hidden;
}

.gift-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.budget-gift-item:hover .gift-item-image img {
    transform: scale(1.05);
}

.gift-item-content {
    padding: 1.5rem;
}

.gift-item-title {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gift-item-category {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.gift-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.gift-price {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 700;
}

.gift-price span {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 400;
}

.btn-gift {
    background: #9b59b6;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-gift:hover {
    background: #8e44ad;
}

.loading-budget-gifts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #9b59b6;
    font-size: 1.1rem;
}

.empty-budget-gifts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #d7bde2;
}

.empty-budget-gifts i {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.empty-budget-gifts h4 {
    color: #8e44ad;
    margin-bottom: 0.5rem;
}

.empty-budget-gifts p {
    color: #6c3483;
    margin-bottom: 1.5rem;
}

/* Budget Info */
.budget-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.budget-info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(155, 89, 182, 0.1);
}

.budget-info-item i {
    font-size: 2.5rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.budget-info-item h4 {
    color: #6c3483;
    margin-bottom: 0.5rem;
}

.budget-info-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Budget CTA */
.budget-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .gifts-by-budget-section .section-header h2 {
        font-size: 2rem;
    }
    
    .budget-categories-nav {
        gap: 0.5rem;
    }
    
    .budget-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .budget-gifts-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-info {
        grid-template-columns: 1fr;
    }
    
    .budget-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* Gifts by Budget Section */
.gifts-by-budget-section {
    background: linear-gradient(135deg, #f5bf0d 0%, #edf5db 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 3px solid #9b59b6;
    border-bottom: 3px solid #9b59b6;
}

.gifts-by-budget-section .section-header h2 {
    color: #8e44ad;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gifts-by-budget-section .section-header h2 i {
    color: #9b59b6;
    margin-right: 10px;
}

.gifts-by-budget-section .section-subtitle {
    text-align: center;
    color: #6c3483;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Budget Categories Navigation */
.budget-categories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.budget-category-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #d7bde2;
    border-radius: 25px;
    color: #6c3483;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.budget-category-btn:hover {
    background: #f3e6f8;
    border-color: #9b59b6;
}

.budget-category-btn.active {
    background: #9b59b6;
    color: white;
    border-color: #9b59b6;
}

/* Budget Gifts Grid */
.budget-gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.budget-gift-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.budget-gift-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
}

.budget-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #9b59b6;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gift-item-image {
    height: 180px;
    overflow: hidden;
}

.gift-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.budget-gift-item:hover .gift-item-image img {
    transform: scale(1.05);
}

.gift-item-content {
    padding: 1.5rem;
}

.gift-item-title {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gift-item-category {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.gift-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gift-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.gift-price {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 700;
}

.gift-price span {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 400;
}

.btn-gift {
    background: #9b59b6;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-gift:hover {
    background: #8e44ad;
}

.loading-budget-gifts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #9b59b6;
    font-size: 1.1rem;
}

.empty-budget-gifts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #d7bde2;
}

.empty-budget-gifts i {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.empty-budget-gifts h4 {
    color: #8e44ad;
    margin-bottom: 0.5rem;
}

.empty-budget-gifts p {
    color: #6c3483;
    margin-bottom: 1.5rem;
}

/* Budget Info */
.budget-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.budget-info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(155, 89, 182, 0.1);
}

.budget-info-item i {
    font-size: 2.5rem;
    color: #9b59b6;
    margin-bottom: 1rem;
}

.budget-info-item h4 {
    color: #6c3483;
    margin-bottom: 0.5rem;
}

.budget-info-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Budget CTA */
.budget-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .gifts-by-budget-section .section-header h2 {
        font-size: 2rem;
    }
    
    .budget-categories-nav {
        gap: 0.5rem;
    }
    
    .budget-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .budget-gifts-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-info {
        grid-template-columns: 1fr;
    }
    
    .budget-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Budget Gifts Promotional Banner */
.budget-gifts-banner {
    background: linear-gradient(135deg, #f5bf0d 0%, #edf5db 100%);    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid #e8e1ff;
}

.banner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-text h2 {
    color: #8e44ad;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.banner-text h2 i {
    color: #9b59b6;
    margin-right: 10px;
}

.banner-text p {
    color: #6c3483;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.budget-ranges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.budget-ranges span {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6c3483;
    border: 1px solid #d7bde2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.budget-ranges span i {
    color: #9b59b6;
}

.banner-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c3483;
    font-size: 0.95rem;
}

.feature i {
    color: #9b59b6;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7bde2;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-cta .btn-large {
    padding: 15px 25px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .budget-ranges {
        justify-content: center;
    }
    
    .banner-features {
        justify-content: center;
    }
    
    .banner-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .budget-gifts-banner {
        padding: 2rem 1rem;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .budget-ranges {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-ranges span {
        width: 100%;
        justify-content: center;
    }
}


