@import url('https://www.sult4n.com/shop/assets/css/fonts/style_GV.css');

body {
    font-family: 'El Messiri', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

h1 {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
}

.maint {
    padding: 20px;
    max-width: 90%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.new {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
}

.main2 {
    font-weight: bold;
    font-size: 18px; 
    color: #ff0000; 
    margin-top: 15px;
}
.box2 {
        background: #FFF;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #ddd;
        margin: auto;
        width: 90%;
        height: 100%;
        text-align: center;
    }
    .share-whatsapp {
        width: 90%;
        display: block;
        background: #25D366;
        color: #fff;
        padding: 12px;
        text-align: center;
        margin: 0 auto;
        border-radius: 8px;
        font-size: 18px;
        font-family: 'El Messiri';
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 2px 5px rgba(0,0,0,.15);
        transition: .2s;
    }
    .share-whatsapp:hover {
        background: #1eb84d;
        transform: translateY(-2px);
    }
    .container1 {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        padding: 0px;
    }
    .new2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    min-width: 200px;
    }
    
    .custom-select-container { 
        position: relative; 
        width: 100%; 
        font-family: 'El Messiri', sans-serif; 
        direction: rtl; 
        margin-top: 5px; 
    }
    .custom-select-trigger { 
        background: #ffffff; 
        border: 1px solid #ccc; 
        padding: 10px 15px; 
        border-radius: 6px; 
        cursor: pointer; 
        text-align: right; 
        font-size: 16px; 
        position: relative; 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        height: 45px; 
        box-sizing: border-box;
    }
    .custom-select-trigger::after { 
        content: '▼'; 
        font-size: 10px; 
        color: #666; 
        margin-right: 10px; 
    }
    .custom-options-container { 
        position: absolute; 
        top: 100%; 
        right: 0; 
        left: 0; 
        background: #ffffff; 
        border: 1px solid #ccc; 
        border-radius: 6px; 
        margin-top: 4px; 
        max-height: 180px; 
        overflow-y: auto; 
        z-index: 9999; /* رفع الطبقة لكي تظهر فوق أي محتوى آخر */
        display: none; 
        box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    }
    .custom-options-container.open { 
        display: block; 
    }
    .custom-option { 
        padding: 10px 15px; 
        cursor: pointer; 
        text-align: right; 
        font-size: 15px; 
        transition: background 0.2s; 
        border-bottom: 1px solid #f9f9f9; 
        color: #333;
    }
    .custom-option:last-child { 
        border-bottom: none; 
    }
    .custom-option:hover { 
        background: #f5f7f8; 
        color: #00BCD4; 
    }
/* ✅ استجابة للشاشات الصغيرة */
@media (max-width: 600px) {
    .new {
        flex-direction: column;
        align-items: stretch;
    }

    .new2 {
        width: 100%;
    }

    .maint {
        padding: 15px;
        width: 100%;
    }
}