вот css внеси нужные изменение, и напиши весь код: /* Общие стили */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

/* Верхний блок с телефоном */
.top-bar {
    position: fixed;          /* всегда сверху */
    top: 0;
    left: 0;
    width: 100%;
    background: #ececec;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;            /* поверх контента */
}

/* Чтобы контент не прятался под top-bar */
body {
    padding-top: 50px;        /* отступ вниз под высоту top-bar */
}

.top-bar .phone-link {
    color: #000000;
    font-size: 18px;
    text-decoration: none;
}

/* Основная контейнерная сетка */
.container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
    gap: 40px;
}

/* Левая колонка - фото + характеристики */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

/* Контент внутри левой колонки */
.left-column .left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

/* Фото */
.block-1 img {
    width: 90%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Блок характеристик и описания */
.block-3 {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 25px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.block-3 h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.block-3 h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.block-3 ul {
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    list-style-type: disc;
}

.block-3 ul li {
    margin-bottom: 5px;
}

.block-3 p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

/* Правая колонка */
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    gap: 20px;
}

/* Верхний блок заказа */
.block-2-top {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    align-items: flex-start;
    text-align: left;
}

/* Нижний блок с картинкой */
.block-2-bottom {
    width: 100%;
    max-width: 380px;
    height: 600px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-2-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Информация о кофе */
.block-2-top .coffee-name {
    font-size: 16px;
    color: #000;
    margin: 0 0 5px 0;
}

.block-2-top .coffee-available {
    font-size: 14px;
    color: #00a305;
    margin: 0 0 5px 0;
}

.block-2-top .coffee-price {
    font-size: 32px;
    color: #000000;
    font-weight: bold;
    margin: 0;
}

/* Форма */
.phone-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.phone-form input,
.phone-form button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 10px;
}

.phone-form input {
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
}

.phone-form button {
    padding: 12px;
    background: #b50000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.phone-form button:hover {
    background: #b50000b9;
}

/* Сообщение об успешной отправке */
.success {
    padding: 10px;
    margin-bottom: 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.success.hide {
    opacity: 0;
}

/* Кнопки опта */
.toggle-wholesale,
.close-wholesale {
    background: #404040;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
    transition: background 0.3s;
}

.toggle-wholesale:hover,
.close-wholesale:hover {
    background: #5c5c5c;
}

/* Скрытый блок опта */
.wholesale-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #ffffff;
    border-radius: 10px;
    padding: 0 15px;
    margin-bottom: 10px;
}

.wholesale-info.open {
    max-height: 100px;
    padding: 10px 15px;
}

/* Footer */
.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 40px;
    background: #f2f2f2;
    border-top: 1px solid #ccc;
    margin-top: 30px;
}

.site-footer div {
    flex: 1 1 200px;
    margin: 10px;
}

.site-footer a {
    color: #333;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
/* Переключатель языков в правом верхнем углу */
.lang-switcher {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.lang-switcher a {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    font-size: 15px;
}

.lang-switcher a:hover {
    color: #000;
}

.lang-switcher a.active {
    color: #000;
}


/* Адаптив для мобильных */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .left-column,
    .right-column {
        width: 100%;
        padding: 20px 0;
    }

    .left-column .left-content {
        max-width: 90%;
    }

    .block-1 img,
    .block-2-bottom img {
        width: 100%;
    }

    .block-2-top,
    .block-2-bottom {
        max-width: 90%;
        margin-bottom: 20px;
    }

    .phone-form input,
    .phone-form button {
        width: 100%;
    }

    .block-3 {
        max-width: 100%;
        margin: 20px auto 0 auto;
        padding: 15px 20px;
        line-height: 1.6;
    }

    .block-3 h2 {
        font-size: 20px;
    }

    .block-3 h3 {
        font-size: 16px;
    }

    .block-3 ul {
        font-size: 15px;
        padding-left: 20px;
    }

    .block-3 p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .site-footer div {
        margin: 5px 0;
    }
}