/* 1. Маленькая плашка-нотификатор в углу экрана */
#review-trigger-popup {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 300px; 
    background: #fff7e1; 
    padding: 20px; 
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2); 
    border-radius: 8px; 
    border: 2px solid #9b300d; 
    z-index: 999999999 !important; 
    font-family: sans-serif;
}
#close-review-popup {
    position: absolute; top: 5px; right: 7px; cursor: pointer; color: #8c97a1; font-weight: bold; font-size:30px;
}

/* 2. БОЛЬШОЕ ВССПЛЫВАЮЩЕЕ ОКНО С ФОРМОЙ (Review Modal) */
/* 2. БОЛЬШОЕ ВССПЛЫВАЮЩЕЕ ОКНО С ФОРМОЙ (Review Modal) */
#custom-review-modal-overlay {
    display: none;
    position: fixed; /* Жестко фиксируем фон на весь экран */
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999999 !important; 
}
#custom-reviews-block {
    position: fixed; /* ТЕПЕРЬ ОКНО ВСЕГДА БУДЕТ ПО ЦЕНТРУ ТЕКУЩЕГО ЭКРАНА! */
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.3);
    font-family: sans-serif;
    box-sizing: border-box;
}

#close-main-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px; /* Сделали крестик огромным */
    font-weight: bold;
    color: #9b300d; /* Покрасили в наш терракотовый цвет */
    cursor: pointer;
    z-index: 100001; /* Поставили поверх всех элементов окна */
    line-height: 20px;
    transition: color 0.2s;
}
#close-main-modal:hover {
    color: #8c97a1; /* При наведении мышки он будет плавно сереть */
}

/* Общие элементы */
#reviews-list-container {
    margin-bottom: 20px; max-height: 250px; overflow-y: auto; border-bottom: 1px solid #eee; padding-bottom: 15px;
}
.single-review-item {
    padding: 10px; background: #f9f9f9; border-left: 4px solid #9b300d; margin-bottom: 10px; border-radius: 0 4px 4px 0; overflow: hidden;
}
.review-btn-accent {
    background: #9b300d; color: #fff; border: none; padding: 10px 20px; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; transition: background 0.2s;
}
.review-btn-accent:hover { background: #8c97a1; }

