* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.4;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Верхняя панель */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #333;
}

.domain {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.search-box {
    width: 80px;
    height: 28px;
    border: 1px solid #666;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #888;
}

.phone {
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
}

.schedule {
    font-size: 16px;
    color: #aaa;
    margin-left: 15px;
}

/* Меню */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    border-bottom: 1px solid #333;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

.cart {
    font-size: 28px;
}

/* Баннер */
.banner {
    height: 300px;          /* высота как большой прямоугольник в макете */
    border: 2px solid #666;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    font-size: 48px;
    color: #888;
    text-align: center;
}

.banner-content {
    max-width: 80%;
}

/* Футер */
.bottom-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    border-top: 1px solid #333;
    color: #ccc;
}

.bottom-phone {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-right: 20px;
}

.bottom-link, .bottom-group span {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
}

.bottom-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .top-bar, .menu, .bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .search-box {
        margin: 10px auto;
    }
    .banner {
        font-size: 32px;
        height: 200px;
    }
}