/* --- 4. Additional Offers Grid (العروض الإضافية) --- */
.offers-section {
    padding: 60px 0;
    margin-top: 40px; /* مسافة بينه وبين المنتجات */
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    width: 100%;
}

.offer-card {
    background-color: #000000; /* أو var(--bg-dark) */
    border-radius: 24px;
    position: relative;
    padding: 40px;
    height: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-lime);
    box-shadow: 0 20px 40px rgba(158, 255, 0, 0.05);
}

/* خلفية الشبكة الهندسية */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* المحتوى */
.offer-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-lime {
    background-color: var(--primary-lime);
    color: #000;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
}

.collection-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: 0.3s;
    width: fit-content;
}

.collection-link:hover { color: var(--primary-lime); }
.collection-link span { transition: 0.3s; }
.collection-link:hover span { transform: translateX(-5px); }

/* العناصر البصرية */
.product-visual {
    position: relative;
    z-index: 2;
    width: 200px; 
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 1;
}

.circle-bg.lime-glow {
    background: var(--primary-lime);
    box-shadow: 0 0 50px rgba(158, 255, 0, 0.4);
}

.float-img {
    position: relative;
    z-index: 2;
    max-height: 220px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: var(--transition);
    width: 100%;
    object-fit: contain;
}

.offer-card:hover .float-img {
    transform: scale(1.1) rotate(5deg);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.reveal-left { animation: revealLeft 1s ease 0.3s forwards; opacity: 0; }
.text-appear { animation: fadeIn 1.2s ease forwards; opacity: 0; }

/* استجابة الموبايل */
@media (max-width: 768px) {
    .offers-grid { grid-template-columns: 1fr; }
    .offer-card {
        padding: 30px;
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .offer-content { align-items: center; margin-bottom: 0; }
    .product-visual {
        margin-right: 0;
        width: 150px;
        height: 150px;
        margin-top: 10px;
    }
    .collection-link { margin: 0 auto; }
}