/* ================================================================= */
/* --- ENDİRİM KAMPANİYALARI SƏHİFƏSİ STİLİ (YENİLƏNMİŞ) --- */
/* ================================================================= */

.page-main-title {
    text-align: center;
    font-size: 38px;
    color: #4B3832;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-main-title i {
    color: #B8860B;
    margin-right: 10px;
}

.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6C544F;
    margin-bottom: 40px;
}

.campaigns-section {
    padding: 20px 0 50px 0;
    background-color: #F8F8F4; /* Açıq fon */
}

/* DESKTOP GRID: 3 SÜTUN */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.campaign-card {
    background-color: #FFF; /* Kartın özünün ağ fonu */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Yumşaq kölgə */
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E0DED1; /* Yüngül kənar xətt */
}

.campaign-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.campaign-image {
    position: relative;
    height: 200px; /* Şəkil hündürlüyünü kiçiltdik */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

/* Endirim Nişanı (Badge) - Yuxarıda sağda */
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #B8860B; 
    color: white;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Overlay (Məlumat Bloku) - Kartın aşağı hissəsində */
.campaign-overlay {
    width: 100%;
    padding: 15px;
    background: #FFF; /* Məlumatlar şəklin üstündə deyil, altında yerləşir */
    color: #4B3832;
    text-align: left; /* Mətni sola hizaladıq */
    /* Əgər şəklin üstündə olmasını istəsək, bunu silin: */
    position: absolute; 
    bottom: 0;
    background: linear-gradient(to top, rgba(75, 56, 50, 0.9), rgba(75, 56, 50, 0.6) 50%, transparent);
    padding-top: 50px;
    
}
/* Yuxarıdakı 'position: absolute' və gradienti silib, aşağıdakı stili istifadə etsəniz, məlumat şəklin altında yerləşəcək: */
/*
.campaign-overlay {
    width: 100%;
    padding: 15px;
    background: #FFF; 
    color: #4B3832;
    text-align: left;
    border-top: 1px solid #E0DED1;
}
*/


.campaign-title {
    font-size: 22px;
    margin: 0 0 5px 0;
    color: white; /* Gradient Overlay üçün ağ rəng */
    font-weight: 600;
}

.campaign-description {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: #E0DED1; /* Açıq mətn */
}

.btn-campaign {
    display: inline-block;
    padding: 8px 20px;
    background-color: #B8860B;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid #B8860B;
}

.btn-campaign:hover {
    background-color: transparent;
    color: #B8860B;
    border: 2px solid #B8860B;
}

/* ================================================================= */
/* --- RESPONSİV KAMPANİYA SƏHİFƏSİ DÜZƏLİŞLƏRİ (MOBİL) --- */
/* ================================================================= */
@media (max-width: 768px) {
    
    .page-main-title {
        font-size: 30px;
        margin-top: 30px;
    }
    
    .page-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* KAMPANİYA KARTLARI 1 SÜTUNA DÜŞÜR */
    .campaign-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
        padding: 0 15px; 
    }
    
    .campaign-image {
        height: 220px;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .campaign-overlay {
        padding: 15px;
    }
    
    .campaign-title {
        font-size: 18px;
    }
    
    .campaign-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .btn-campaign {
        padding: 8px 15px;
    }
}