/* خلفية عروض بريميم بوتشر */
.mcs-section-wrapper {
    padding: 38px 12px 46px;
    background: radial-gradient(circle at top, #5a001a 0, #220007 55%, #140004 100%);
    direction: rtl;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Tahoma", sans-serif;
}

/* رأس السيكشن */
.mcs-section-header {
    max-width: 1200px;
    margin: 0 auto 24px auto;
    text-align: center;
}

.mcs-section-eyebrow {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffddc0;
    opacity: 0.85;
}

.mcs-section-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.mcs-empty-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #f5e9f0;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* جريد العروض: ٤ أعمدة من أول الموبايل */
.mcs-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

/* موبايل صغير – نضغط المسافات والنصوص */
@media (max-width: 480px) {
    .mcs-section-wrapper {
        padding-top: 26px;
        padding-bottom: 32px;
    }
    .mcs-section-title {
        font-size: 1.3rem;
    }
    .mcs-section-inner {
        gap: 8px;
    }
    .mcs-card {
        padding: 10px 4px 12px;
    }
    .mcs-card-image {
        width: 70px;
        height: 70px;
        margin-bottom: 6px;
    }
    .mcs-card-title {
        font-size: 0.72rem;
        padding-bottom: 4px;
    }
    .mcs-card-text {
        display: none; /* نخفي الوصف على الموبايل الصغير علشان الشكل يطلع نظيف */
    }
    .mcs-card-button {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* الكارد */
.mcs-card {
    background: radial-gradient(circle at top, #7c102d 0, #2a000d 55%, #21000a 100%);
    border-radius: 20px;
    padding: 18px 8px 20px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mcs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.16);
}

/* صورة العرض – وسط الكارت */
.mcs-card-image {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 10px auto;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
    background: transparent;
}

.mcs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* العنوان + خط أبيض تحته */
.mcs-card-title {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    padding-bottom: 6px;
}

.mcs-title-underline {
    display: block;
    width: 60%;
    max-width: 120px;
    height: 2px;
    margin: 4px auto 0 auto;
    background: linear-gradient(to left, #ffffff, #ffe8f0, #ffffff);
    border-radius: 999px;
}

/* وصف مختصر */
.mcs-card-text {
    margin: 0 0 14px 0;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #ffe4f0;
}

/* زر اكتشف العرض */
.mcs-card-button {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background-color: #ffdfba;
    color: #3b0013;
    font-size: 0.78rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mcs-card-button:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
}


/* Frame overlay provided by the user */
.mcs-card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: url('assets/circle-frame.png') center/contain no-repeat;
  pointer-events:none;
}
