/* Friday Dinner Offer - תווית על האופציה החדשה */
.price_code_div_box.friday-dinner-offer-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbef 100%);
    border-right: 3px solid #ff9800;
    position: relative;
}

.friday-dinner-badge {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Modal הודעה - כשלוחצים על "בחר" באופציית שישי */
.fd-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.fd-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 28px 26px 22px;
    width: 92%;
    max-width: 460px;
    text-align: right;
    direction: rtl;
    animation: fdModalIn 0.25s ease-out;
}

@keyframes fdModalIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.fd-modal-content h3 {
    margin: 0 0 14px;
    color: #37454d;
    font-size: 19px;
    font-weight: 700;
}

.fd-modal-content p {
    margin: 0 0 10px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.fd-modal-close {
    position: absolute;
    top: 8px;
    left: 12px;
    background: none;
    border: none;
    font-size: 26px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.2s;
}

.fd-modal-close:hover {
    background: #f3f3f3;
    color: #333;
}

body.fd-modal-open {
    overflow: hidden;
}
