/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #fff;
}

.top-header {
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-header__logo img {
    max-height: 50px;
}

.top-header__wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-header {
    display: flex;
    flex-direction: column;
}

.info-header__label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.info-header__phone {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.info-header__location {
    color: #333;
}

.socials__items {
    display: flex;
    gap: 10px;
}

.socials__item {
    display: block;
    width: 24px;
    height: 24px;
    background: #333;
    border-radius: 3px;
    text-indent: -9999px;
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-header__catalog {
    background: #8B4513;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.menu__icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu__link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu__link:hover {
    color: #8B4513;
}

.main-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.header-search__input {
    border: none;
    background: none;
    padding: 8px 15px;
    outline: none;
    width: 200px;
}

.header-search__button {
    background: none;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

.main-header__account,
.main-header__bag {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background: #333;
}

.main-header__bag {
    position: relative;
    text-decoration: none;
}

/* Hero Slider */
.main {
    padding: 0;
}

.block-main__slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide-main {
    position: relative;
    height: 100%;
    background: #3d3d3b;
}

.slide-main__block {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slide-main__content {
    flex: 1;
    color: white;
    z-index: 2;
}

.content-main__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-main__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.content-main__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-main__icon {
    width: 40px;
    height: 40px;
    background: #3d3d3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-main__icon img {
    width: 20px;
    height: 20px;
}

.content-main__text {
    font-size: 14px;
    line-height: 1.4;
}

.content-main__button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    gap: 10px;
}

.slide-main__images {
    position: relative;
    flex: 0 0 40%;
    height: 100%;
}

.slide-main__image {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80%;
}

.slide-main__image img {
    height: 100%;
    width: auto;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.block-main__arrows {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.block-main__arrow {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Advantages */
.advantages {
    padding: 60px 0;
    background: #f8f8f8;
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.advantages__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantages__item {
    text-align: center;
}

.advantages__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.advantages__icon img {
    width: 40px;
    height: 40px;
}

.advantages__label {
    font-weight: 500;
    font-size: 16px;
}

/* Categories */
.assortment {
    padding: 80px 0;
}

.assortment__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.assortment__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.item-assortment {
    position: relative;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.item-assortment__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.item-assortment__name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.item-assortment__button {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    align-self: flex-start;
}

.item-assortment__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 80%;
}

.item-assortment__image img {
    height: 100%;
    width: auto;
}

/* Products */
.goods {
    padding: 80px 0;
    background: #f8f8f8;
}

.goods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tabs-goods__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tabs-goods__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.tabs-goods__navigation {
    display: flex;
    gap: 20px;
}

.tabs-goods__label {
    background: none;
    border: 2px solid #8B4513;
    color: #8B4513;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tabs-goods__label._tab-active {
    background: #8B4513;
    color: white;
}

.tabs-goods__slider {
    position: relative;
    overflow: hidden;
}

.tabs-goods__wrapper {
    display: flex;
}

.slide-goods {
    flex: 0 0 25%;
    padding: 0 15px;
}

.slide-goods__cart {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.slide-goods__cart:hover {
    transform: translateY(-5px);
}

.slide-goods__images {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.slide-goods__image {
    display: block;
    height: 100%;
    text-align: center;
}

.slide-goods__image img {
    height: 100%;
    width: auto;
    max-width: 100%;
}

.slide-goods__title {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
}

.slide-goods__price {
    padding: 0 15px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #8B4513;
}

.tabs-goods__arrows {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.tabs-goods__arrow {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: white;
}

.partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.partners__slider {
    overflow: hidden;
}

.partners__wrapper {
    display: flex;
    align-items: center;
}

.partners__slide {
    flex: 0 0 16.666%;
    padding: 0 15px;
}

.partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partners__item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partners__item:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer__logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer__text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
}

.footer__by {
    color: #999;
    font-size: 14px;
}

.footer__column--bg {
    background: #3a3a3a;
    padding: 30px;
    border-radius: 10px;
}

.footer__info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer__label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.footer__phone,
.footer__loc {
    color: white;
    text-decoration: none;
    font-weight