﻿.form-control::placeholder {
    color: #f7f7f7;
    opacity: 0.3;
}

.phone-field {
    width: 340px; /* غيّرها حسب مقاسك */
    direction: rtl;
    font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial;
}

.phone-label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 6px;
}

.phone-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d9dee6;
    border-radius: 6px;
    height: 44px;
    width: 100% !important;
    padding: 0 10px;
}

.country-code {
    display: flex;
    align-items: center;
    padding-inline: 6px;
    min-width: 100px;
    justify-content: center;
    color: #111;
    font-size: 14px;
    white-space: nowrap;
}

.divider {
    width: 1px;
    height: 60%;
    background: #d9dee6;
    margin: 0 10px;
}

.phone-input {
    border: 0;
    outline: 0;
    flex: 1;
    height: 100%;
    font-size: 14px;
    color: #111;
    background: transparent;
}

    .phone-input::placeholder {
        color: #9aa3ad;
    }

/* تأثير تركيز مثل الفورمات الحديثة */
.phone-box:focus-within {
    border-color: #b8c3d0;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
    height: 45px;
    width: 150px;
    background: white;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

    .qty-btn:hover {
        background: #f5f5f5;
    }

.qty-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

    .modal.show {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    transform: scale(0.8);
    transition: 0.3s ease;
}


.modal.show .modal-content {
    transform: scale(1);
}

.close-btn {
    font-size: 25px;
    cursor: pointer;
    float: right;
}

.Meatcard {
    width: 100%;
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Header */
.cover-img {
    padding: 0px!important;
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image cover */
    display: block;
}