﻿/* =========================
   🎁 GIFTS SECTION (RECT CARDS)
   ========================= */
.gifts-section {
    width: 100%;
    text-align: center;
    padding: 40px 0;
}

.gifts-title-wrapper {
    width: 100%;
}

.gifts-title {
    font-family: "Vazirmatn", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #fff;
    padding: 15px 25px;
    text-shadow: 0 0 8px rgba(180, 0, 255, 0.8);
    background: rgba(0, 50, 35, 0.85);
    border-radius: 30px 30px 0px 0px;
    box-shadow: 0 0 18px rgba(160, 0, 255, 0.4);
}

.gifts-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.gifts-card {
    width: 240px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: .3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.gifts-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255,200,0,0.5);
}

.gifts-card .img-box {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}

.gifts-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gifts-name {
    font-size: 18px;
    font-weight: 600;
}
