/* ===== css-1160 (1161-1380px) ===== */

/* Скрываем мобильные блоки на десктопе */
#header1m,
#footer1m {
    display: none !important;
}


/* --- Контейнер шапки --- */
.header-wrapper {
    width: 1100px;
    margin: 0 auto;
}

/* --- Контейнер контента --- */
.content-wrapper {
    width: 1100px;
    margin: 20px auto 0 auto;
}

/* --- Хлебные крошки --- */
.breadcrumbs-bar {
    background-color: #EDEDED;
}
.breadcrumbs-inner {
    width: 1100px;
    margin: 0 auto;
}
.breadcrumbs-inner table {
    width: 100%;
}

/* --- header1 --- */
#header1 {
    background-color: #ededed;
    border-radius: 7px;
    padding: 7px;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
}
#header1_block1 {
    font-size: 16px;
    padding: 0px 10px;
    display: flex;
    width: 180px;
    flex-shrink: 0;
}
#header1_block1 A {
    color: #000;
    text-decoration: none;
}
#header1_block1 A:hover {
    color: #4f4f4f;
    text-decoration: underline;
}
#header1_block2 {
    /* display: none; */
}
#header1_block3 {
    flex: 1;
    text-align: center;
}
#header1_menu {
    display: flex;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    justify-content: center;
}
#header1_menu LI {
    list-style-type: none;
    padding: 0px 7px;
}
#header1_menu LI A {
    color: #000;
    text-decoration: none;
}
#header1_menu LI A:hover {
    color: #4f4f4f;
    text-decoration: underline;
}
#header1_block4 {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    width: 160px;
    flex-shrink: 0;
    /* text-align: center; */
}
#header1_block5 {
    width: 160px;
    flex-shrink: 0;
    text-align: center;
}
.btn {
    background-color: #fb832f;
    border-radius: 7px;
    color: #fff;
    border: 0px;
    padding: 7px 20px;
    font-family: "Roboto Condensed", serif;
    font-size: 14px;
    cursor: pointer;
}

/* --- header2 (лого, каталог, поиск, иконки) --- */
#header2 {
    display: flex;
    justify-content: space-between;
    margin: 20px 15px;
    align-items: center;
}
.header2_logo {
    width: 220px;
}
.header2_catalogbtn {
    width: 220px;
}
.header2_catalogbtn button {
    background: #ee5013;
    border: 0px;
    width: 220px;
    border-radius: 7px;
    color: #fff;
    height: 42px;
    font-size: 20px;
    background-image: url("/images/catalog.png");
    background-repeat: no-repeat, no-repeat;
    background-position: center left 1em;
    padding-left: 40px;
    cursor: pointer;
}
.header2_search {
    flex-grow: 1;
}
.header2_search input {
    border: 2px solid #f2f2f2;
    height: 42px;
    width: calc(100% - 60px);
    border-radius: 7px;
    padding-left: 10px;
    padding-right: 50px;
}
.searchicon {
    background-image: url("/images/search.png");
    background-repeat: no-repeat, no-repeat;
    background-position: center right 0.5em;
}
.header2_icons {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    gap: 20px;
}
.header2_icons A {
    color: #787878;
    font-size: 12px;
    text-decoration: none;
}
.header2_icons A:hover {
    color: #000;
}

/* --- header3 (меню под шапкой) --- */
#header3 {
    background-color: #f5f5f5;
    border-radius: 7px;
    padding: 0 15px;
    margin: 0 15px 15px;
}
.header3_menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    gap: 40px;
}
.header3_menu LI {
    list-style-type: none;
}
.header3_menu LI A {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.header3_menu LI A:hover {
    color: #ec6608;
}
.header3_menu LI {
    position: relative;
}
.header3_menu LI:hover .header3_submenu {
    display: block;
}
.header3_submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    list-style: none;
    margin: 0;
}
.header3_submenu LI {
    list-style-type: none;
}
.header3_submenu LI A {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}
.header3_submenu LI A:hover {
    background: #f5f5f5;
    color: #ec6608;
}
