/*
Theme Name: F-line
Theme URI:
Description:
Author: Bilimov Ivan
Author URI:
Version: 1.0.0
*/




*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

img {
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;/
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
/*--------------------------------------------HEADER--------------------------------------------*/

/*-----------TOP-BAR-----------*/

header {
    width: 100%;
    font-family: "Rubik", sans-serif;
}

.top-bar {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #FF8023;
}

.top-bar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.user-links {
    display: flex;
    align-items: center;
}

.user-links a {
    text-decoration: none;
    color: #FFFFFF;
}

.user-links a:hover {
    text-decoration: underline dashed;
}

.modal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11;
}

.modal-content {
    min-width: 300px;
    position: relative;
    padding: 20px;
    border-radius: 8px;
    background: white;
    text-align: center;
    color: #555555;
}

.modal-content div {
    margin: 10px 0;
    cursor: pointer;
}

.modal-content div:hover{
    color: #FF8023;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
}

.overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11;
}

/*-----------HEADER-MAIN-----------*/

.header-main {
    margin-top: 21px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
    color: #555555;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-logo-img {
    width: 27px;
    height: 46px;
}

.header-logo-name {
    margin-left: 10px;
}

.header-logo-name:hover {
    color: #FF8023;
    cursor: pointer;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #fffbfb;
    border: 3px solid #FF8023;
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    width: 450px;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

.search-button {
    width: 50px;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #FF8023;
    color: #fff;
    cursor: pointer;
}

.search-button:hover {
    opacity: 0.9;
}

.zoom-icon-img {
    width: 16px;
    height: 16px;
}

.icons {
    display: flex;
    gap: 21px;
}

.shop-icon-img {
    width: 32px;
    height: 32px;
    background: var(--svg-url) no-repeat center / contain;
    transition: background 0.3s ease;
}
  
.shop-icon-img:hover {
    background: var(--svg-hover-url) no-repeat center / contain;
    cursor: pointer;
}

.phone-icon-img {
    width: 32px;
    height: 32px;
    background: var(--svg-url) no-repeat center / contain;
    transition: background 0.3s ease;
}
  
.phone-icon-img:hover {
    background: var(--svg-hover-url) no-repeat center / contain;
    cursor: pointer;
}

.user-icon-img {
    width: 32px;
    height: 32px;
    background: var(--svg-url) no-repeat center / contain;
    transition: background 0.3s ease;
}
  
.user-icon-img:hover {
    background: var(--svg-hover-url) no-repeat center / contain;
    cursor: pointer;
}

/*-----------MAIN-MENU-----------*/

.main-menu {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.main-menu-catalog {
    width: 23%;
    height: 67px;
    display: flex;
    position: relative;
    align-items: center;
    background-color: #FF8023;
    border: none;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

.menu-icon-img {
    width: 24px;
    height: 24px;
    margin-left: 30px;
}

.main-menu-name {
    margin-left: 20px;
}

.catalog-list {
    width: 100%;
    top: 67px;
    left: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    text-align: left;
    list-style: none;
    background-color: #F7F8FA;
    z-index: 10;
}

.catalog-list li {
    padding: 10px 20px;
    border-bottom: 1px solid #E3E3E3;
}

.catalog-list li:last-child {
    border-bottom: none;
}

.catalog-list li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

.catalog-list li a:hover {
    color: #FF8023;
}

/*-----------MAIN-MENU-NAV-----------*/

.main-menu-nav {
    width: 77%;
    height: 67px;
    display: flex;
    align-items: center;
    list-style: none;
    background-color: #F7F8FA;
}

.main-menu-nav li {
    margin-left: 45px;
    display: inline; 
}

.main-menu-nav li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

.main-menu-nav li a:hover {
    color: #FF8023;
}

/*--------------------------------------------MAIN--------------------------------------------*/

/*-----------MAIN-BANNER-----------*/

main {
    width: 100%;
    font-family: "Mulish", serif;
}

.main-banner {
    display: flex;
    margin-left: 31%;
}

.slider-img {
    width: 83%;
    height: 414px;
}

/*-----------FEATURES-BLOCK-----------*/

.features-block {
    height: 60px;
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Rubik", sans-serif;
}

.feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
}

.feature-item img {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    color: #555555;
}

.feature-item span {
    font-weight: 400;
    font-size: 14px;
    color: #515151;
    opacity: 0.7;
}

/*-----------OFFER-----------*/

.offer {
    height: 510px;
    margin-top: 70px;
    display: flex;
    align-items: center;
}

.offer-1 img {
    width: 669px;
    height: 511px;
}

.offer-2 {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.offer-2 img {
    width: 485px;
    height: 247px;
}

/*-----------SPECIAL-OFFER-----------*/

.special-offer {
    width: 100%;
    margin-top: 120px;
    align-items: center;
}

.special-offer-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    color: #555555;
}

.special-offer-1 {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.special-offer-2 img {
    width: 350px;
    height: 350px;
}

.special-offer-3 img {
    width: 350px;
    height: 350px;
}
/*--------------------------------------------FOOTER--------------------------------------------*/

footer {
    width: 100%;
    font-family: "Rubik", sans-serif;
}

.footer {
    width: 100%;
    height: 300px;
    margin-top: 65px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.footer-container {
    width: 100%;
    display: flex;
}

/*-----------FOOTER-LOGO-AND-ICONS-----------*/

.footer-logo-and-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
}

.footer-logo img {
    width: 303px;
    height: 101px;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 21px;
}

.instagram-icon-img {
    width: 32px;
    height: 32px;
    background: var(--svg-url) no-repeat center / contain;
    transition: background 0.3s ease;
}
  
.instagram-icon-img:hover {
    background: var(--svg-hover-url) no-repeat center / contain;
    cursor: pointer;
}

.whatsapp-icon-img {
    width: 32px;
    height: 32px;
    background: var(--svg-url) no-repeat center / contain;
    transition: background 0.3s ease;
}
  
.whatsapp-icon-img:hover {
    background: var(--svg-hover-url) no-repeat center / contain;
    cursor: pointer;
}

/*-----------FOOTER-COLUMN-1-----------*/

.footer-column-1 {
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-1 > a:first-child {
    font-weight: 500;
}

/*-----------FOOTER-COLUMN-2-----------*/

.footer-column-2 {
    margin-left: 175px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-2 > a:first-child {
    font-weight: 500;
}

.footer-column-1 a,
.footer-column-2 a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
}

.footer-column-1 a:hover,
.footer-column-2 a:hover {
    color: #FF8023;
}

.footer-line {
    width: 100%;
    height: 0.5px;
    margin-top: 55px;
    background-color: #969696;
}

.footer-bottom {
    width: 100%;
    margin-top: 35px;
    margin-bottom: 33px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

.img-1 {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 120px auto 0 auto;
}
/*-----------АДАПТАЦИЯ-----------*/
/* Планшеты */
@media (max-width: 1024px) {
  body {
    font-size: 15px;
    /* другие адаптации */
  }
}

/* Мобильные телефоны */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    /* колонки превращаются в блоки */
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
}