body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #e9e6e6;
    text-align: center;
}

/* ===== HEADER ===== */

.header {
    margin-top: 60px;
}

.logo {
    font-size: 80px;
    color: #cc0000;
    font-weight: bold;
    display: inline-block;
    border-bottom: 8px solid #cc0000;
    padding-bottom: 10px;
}

.logo .z {
    font-weight: 900;
}

/* ===== MAIN ===== */

.main {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* ===== SEARCH BLOCK ===== */

.search-block {
    background: #eaa3a3;
    padding: 20px;
    border-radius: 10px;
    width: 420px;
    box-sizing: border-box;
}

/* ===== TABS ===== */

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.tabs span {
    cursor: pointer;
    color: #4a0000;
}

.tabs .active {
    font-weight: bold;
}

/* ===== SEARCH ===== */

.search {
    position: relative;
    width: 100%;
}

.search input {
    width: 100%;
    height: 42px;
    border-radius: 6px;
    border: none;
    padding: 0 45px 0 10px; /* место под лупу */
    font-size: 16px;
    box-sizing: border-box;
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

/* ===================== */
/* 📱 MOBILE */
/* ===================== */

@media (max-width: 600px) {

    .logo {
        font-size: 48px;
        border-bottom: 6px solid #cc0000;
        padding-bottom: 6px;
    }

    .main {
        margin-top: 40px;
        padding: 0 15px;
    }

    .search-block {
        width: 100%;
        padding: 15px;
    }

    .tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .tabs span {
        font-size: 13px;
    }

    .search input {
        height: 40px;
        font-size: 16px;
    }

    .search-btn {
        height: 34px;
    }
}
