.price-block {
    /* Стили блока */
    width: 100%;
    height: auto;

    /* Стили текста */
    color: #742c0d;
    font-size: 45px;
    font-family: 'Raleway', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 900;

    /* Оформление */
    border-color: transparent;
    border-style: solid;
    background-position: center center;
}

.btn-order {
    margin: 100px auto;
    display: block;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #ff99cc;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background-color: #fff1e6;
    padding: 1.875rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 37.5rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popup h2 {
    color: #d14b84;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.popup input,
.popup button {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.popup input::placeholder {
    color: #ffeee1;
}

.popup button {
    background-color: #d14b84;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-order {
    background-color: #fce0ad;
    border-radius: 2.5rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    box-shadow: 0px 10px 20px 0px rgba(107, 107, 107, 0.8);
    color: #742c0d;
    width: 18.75rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.btn-order:hover {
    background-color: #ffeee1;
}

.close-btn {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 2.5rem !important;
    rotate: 45deg;
    font-weight: bold;
    color: #d14b84;
    background: transparent !important;
    border: none;
    cursor: pointer;
}

.egg-option {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.egg-option span {
    font-size: 16px;
}

.counter {
    display: flex;
    align-items: center;
}

.counter button {
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 20%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
}

.counter input {
    width: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
}

.removed-message {
    display: none;
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.popup-message {
    display: none;
    color: green;
    font-size: 14px;
}

@media (max-width: 768px) {
    .price-block {
        font-size: 1.2rem;
    }
    .btn-order{
        width: 12rem;
        padding: 0.3125rem 0.625rem;
        margin: 1.25rem auto;
    }
}