/* Tasarımın Fontu ve Genel Yapısı */
#mothers-day-wrapper {
    width: 100%;
    padding: 20px 15px;
    background-color: #fffafa;
}

.md-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f3 100%);
    border: 1px solid #ffccd5;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

/* Arka plana hafif çiçek deseni hissi (opsiyonel) */
.md-banner-container::before {
    content: '🌸';
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 150px;
    opacity: 0.05;
}

/* Sol Taraf Metinler */
.md-badge {
    background: #ff4d6d;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.md-title {
    font-size: 32px;
    color: #590d22;
    margin: 20px 0 10px;
    font-weight: 800;
    line-height: 1.2;
}

.md-title span {
    color: #ff4d6d;
}

.md-subtitle {
    font-size: 18px;
    color: #800f2f;
    margin-bottom: 25px;
}

/* Buton Tasarımı */
.md-cta-button {
    display: inline-block;
    background: #a44a4a; /* Görseldeki rose-brown tonu */
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 74, 74, 0.4);
}

.md-cta-button:hover {
    background: #590d22;
    transform: translateY(-3px);
}

/* Sayaç Alanı */
.md-timer-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 320px;
}

.md-timer-label {
    font-weight: bold;
    color: #590d22;
    margin-bottom: 15px;
}

#md-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
}

.time-block span {
    font-size: 28px;
    font-weight: 800;
    color: #ff4d6d;
    background: #fff0f3;
    padding: 5px 10px;
    border-radius: 8px;
    min-width: 50px;
}

.time-block small {
    font-size: 11px;
    color: #a44a4a;
    margin-top: 5px;
    font-weight: bold;
}

.md-stock-alert {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #ff4d6d;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* MOBİL UYUMLULUK (Responsive) */
@media (max-width: 992px) {
    .md-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .md-timer-section {
        margin-top: 30px;
        width: 100%;
        min-width: unset;
    }

    .md-title {
        font-size: 26px;
    }
}