/* ===== Сброс и базовые стили ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #212121;
}

body {
    background: #fff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f1ede6;
    justify-content: space-between;
}

.container {
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    max-width: 1920px;
}

.btn {
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    line-height: 100%;
}

.btn:hover {
    opacity: 0.7;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f1ede6;
    z-index: 10;
    border-bottom: 1px solid #000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    width: 100%;
    gap: 0px 15px;
    flex-wrap: wrap;
    margin: auto;
}

.navigation__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navigation__link {
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: right;
    color: #212121;
}

.navigation__link:hover {
    color: #888;
}

.navigation__list-mobile {
    display: none;
}

/* Правое меню (иконки) */
.header__right {
    position: relative;
}

.navigation-second__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navigation-second__link {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header__icon-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: right;
    color: #212121;
    border: none;
}

.header__icon-btn:hover {
    opacity: 0.6;
}

.header__icon-btn--no_active {
    display: none;
}


/* Поле поиска (появляется) */
.header__search-wrap {
    display: none;
    align-items: center;
    background: #f5f5f5;
    border-radius: 40px;
    padding: 6px 3px 6px 10px;
    margin-left: 8px;
    transition: 0.2s;
    max-width: 370px;
    width: 100%;
    height: 26px;
    border-radius: 3px;
    left: -315px;
    position: absolute;
    z-index: 11;
}

.header__search-wrap--active {
    display: flex;
}

.header__search-input {
    border: none;
    background: transparent;
    padding: 6px 0;
    font-size: 15px;
    width: 100%;
    outline: none;
}

.header__search-input::placeholder {
    color: #5b3b12;
    text-transform: uppercase;
}


/* Модалка для входа/регистрации */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.modal-overlay--open {
    display: flex;
}

.modal-auth {
    background: #f1ede6;
    max-width: 800px;
    width: 90%;
    position: relative;
    display: flex;
}

.modal-auth__form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modal-auth__label {
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    color: #212121;
    margin-bottom: 6px;
}

.modal-auth__phone {
    border: 0;
    outline: none;
    background: transparent;
    border-bottom: 1px solid;
    margin-bottom: 68px;
}

.modal__group>img {
    height: 100%;
    object-fit: cover;
}

.modal__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #212121;
    margin-bottom: 13px;
}

.modal__descript {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #212121;
    margin-bottom: 13px;
}

.modal__group {
    display: flex;
    flex-direction: column;
}

.modal__group:last-child {
    padding: 44px 31px 56px;
    display: flex;
    flex-direction: column;
}

.modal__btn {
    padding: 9px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.modal__btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.modal__btn--outline {
    border: 1px solid #5b3b12;
    color: #5b3b12;
    background: transparent;
}

.modal__btn--primary {
    background: #5b3b12;
    color: #f1ede6;
    border: none;
}

.modal__btn--primary:hover {
    background: #4d300a;
}

.modal__btn--outline:hover {
    background: #f0e8da;
}

/* ===== МОБИЛЬНОЕ МЕНЮ (гамбургер) ===== */
.header__hamburger {
    display: none;
    background: none;
    border: none;
    color: #5b3b12;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 168px;
    height: 100%;
    background: white;
    z-index: 20;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 33px 24px;
    height: 219px;
    border-radius: 0 0 0 62px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.mobile-menu--open {
    right: 0;
}

.mobile__btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu__btn {
    margin-left: 18px;
    text-align: right;
    margin-bottom: 14px;
}

.mobile-menu__logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #1e1e1e;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-menu__link {
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: right;
    color: #212121;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-top: 7px;
    margin-bottom: 10px;
}

.mobile-menu__link:hover {
    color: #888;
}

.mobile-menu__link--highlight {
    font-weight: 600;
    color: #000;
}

.mobile-menu__bottom {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu__bottom-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.mobile-menu__social {
    display: flex;
    gap: 16px;
    font-size: 22px;
}

.mobile-menu__social a {
    color: #1e1e1e;
    transition: color 0.2s;
}

.mobile-menu__social a:hover {
    color: #888;
}

.count {
    width: 23px;
    display: inline-block;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 19;
}

.mobile-overlay--open {
    display: block;
}

.main {
    margin-top: 104px;
}

.hero-block {
    position: relative;
}

.navigation-mobile__btn {
    border: none;
    cursor: pointer;
}

.hero-block__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-block__container {
    display: flex;
    gap: 0;
}

.hero-block__title {

    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #f1ede6;
}

.hero-block__desctiption {
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #f1ede6;
}

.hero-block--absolute {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;

}

.hero-block__item {
    width: 100%;
}

.hero-block__sub {
    font-size: 20px;
    margin-top: 6px;
    font-weight: 400;
}

.new-section {
    background: #f1ede6;
    padding: 16px 0;
    text-align: center;
}

.new-section__title {
    text-transform: uppercase;
    line-height: 100%;
    font-weight: 400;
}

.accessory {
    height: 456px;
    background-image: url(/image/main3.png);
    background-size: cover;
    background-position: center;
}

.accessory__content {
    display: flex;
    align-items: center;
    height: 100%;
}

.accessory__btn {
    border: 1px solid #fff;
    background: rgba(241, 237, 230, 0);
    padding: 19px 71px;
}



.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 32px;
    padding: 30px 0;
    text-align: center;
}




.production-block {
    height: 1158px;
    background-image: url(/image/main8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    flex-direction: column;
}


.production-block__title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #54473d;
    margin-bottom: 27px;
}

.production-block__content {
    margin: auto;
}

.production__btn {
    background-color: transparent;
    border: 1px solid #54473d;
    color: #54473d;
    padding: 19px 36px;
}


.footer__logo>img {
    width: 100%;
}

.footer__grid {
    display: grid;
    grid-template-columns: 327px 1fr;
    gap: 98px;
    padding: 63px 0px 77px;
    border-top: 1px solid #000;
}

.footer__grid-menu {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 30px;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__grid-menu>.footer__col:last-child {
    margin-left: auto;
}

.footer__menu-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 14px;
}

.footer__item {
    margin-bottom: 5px;
}

.footer__link {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #000;
}

.footer__contacts {
    font-size: 15px;
    line-height: 1.6;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 21px;
}

.footer__phone>a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    text-decoration: none;

}

.footer__contact-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 7px;
}

.footer__social-title {
    margin-bottom: 9px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
}

.footer__social {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.footer__social-link {
    transition: 0.2s;
}

.footer__social-link:hover {
    color: #666;
}

.footer__trend {
    margin: 8px 0 6px;
    font-size: 15px;
}


/* ===== О бренде ===== */
.breadcrumbs {
    padding: 30px 0 20px 0;
    background: #f1ede6;
}

.breadcrumbs__item {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
}

.page-title {
    font-size: 74px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 8px 0 32px 0;
    color: #1e1e1e;
}


.media-block {
    width: 100%;
    margin: 0;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about {
    margin: 0 0 74px 0;

}

.media-block__video,
.media-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: right;
}

.media-block__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    gap: 12px;
    width: 100%;
    height: 100%;
    background: #d9d4ca;
}

.media-block__placeholder i {
    font-size: 52px;
    color: #666;
}

/* ===== Контакы ===== */

.SDEK {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 59px;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #212121;
}



.contact__content {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1575px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.contact__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.contact__txt {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}


/* ===== ФИЛЬТР / КАТЕГОРИИ (горизонтальный ряд) ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-bottom: 1px solid #eee;
    margin: 30px 0px 25px;
    align-items: center;
}

.filter-bar__item {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    cursor: pointer;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.filter-bar__item--first {
    margin-right: 30px;
}

.filter-bar__item--first .breadcrumbs {
    padding: 0;
}

.filter-bar__item:hover {
    color: #1e1e1e;
}

.filter-bar__item--active {
    color: #1e1e1e;
    font-weight: 600;
    border-bottom-color: #1e1e1e;
}

.catalog-grid {
    display: grid;
    /* display: flex;
    flex-wrap: wrap; */
    grid-template-columns: repeat(3, 1fr);
    gap: 37px 76px;
    max-width: 1466px;
    margin: auto;
}

.sign_r {
    color: #5b3b12;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
}

.product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card__image {
    width: 100%;
    background: #ececec;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-card__name {
    font-weight: 400;
    font-size: 20px;
    line-height: 159%;
    text-transform: uppercase;
    color: #212121;
    text-decoration: none;
}

.product-card__price {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
}

.product-card__favorite {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 17px;
}

.product-card__favorite:hover path {
    fill: #e74c3c;
}

.product-card__favorite--active path {
    fill: #e74c3c;
}

/* ===== КНОПКА "ЗАГРУЗИТЬ ЕЩЁ" ===== */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 104px;
}

.load-more-btn {
    background: #5b3b12;
    border: none;
    padding: 17px;
    border-radius: 12px;
    width: 285px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #f1ede6;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
}

.load-more-btn:hover {
    background: #350a0aa9;
}

.load-more-btn:active {
    transform: scale(0.97);
}

.catalog {
    margin-bottom: 131px;
}

/* ===== ДЕТАЛЬНАЯ СТРАНИЦА ===== */
.product-detail {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 90px;
}

/* ===== ЛЕВАЯ КОЛОНКА — слайдер миниатюр ===== */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 0 0 170px;
    max-height: 1124px;
    overflow: hidden;
    overflow-y: auto;
}

.product-info-title {
    display: flex;
    gap: 27px;
    flex-direction: column;
}

.product-info-row {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.product-thumbs::-webkit-scrollbar {
    width: 4px;
}

.product-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.product-thumbs__item {
    width: 157px;
    height: 208px;
    overflow: hidden;
    margin: 5px;
    cursor: pointer;
    transition: border 0.2s, transform 0.2s;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.product-thumbs__item img {
    border: 3px solid #fff;
    height: 100%;
    object-fit: cover;
}

.product-thumbs__item:hover {
    transform: scale(1.03);
}

.product-thumbs__item--active {
    border: 1px solid #5b3b12;
}

/* ===== ЦЕНТРАЛЬНАЯ КОЛОНКА — большое фото ===== */
.product-main-image {
    flex: 1;
    position: relative;
    background: #f5f3ef;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 1124px;
    min-height: 377px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    cursor: pointer;
    min-width: 558px;
    max-width: 843px;
}

.product-main-image__img {
    height: 100%;
}

.product-main-image__favorite {
    position: absolute;
    top: 18px;
    right: 21px;
    border: none;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: transparent;
}

.product-main-image__favorite:hover {
    color: #e74c3c;
    transform: scale(1.08);
}

.product-main-image__favorite--active {
    color: #e74c3c;
}

/* ===== ПРАВАЯ КОЛОНКА — информация ===== */
.product-info {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 27px;
    max-width: 599px;
}

.product-info__title {
    font-weight: 400;
    font-size: 32px;
    line-height: 159%;
    text-transform: uppercase;
    color: #212121;
}

.product-info__price {
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
}

.product-info__price span {
    color: #5b3b12;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    text-transform: uppercase;
}

.product-info__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-info__row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
}

.product-info__row-label {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    width: 84px;
}

.product-info__row-value {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #5b3b12;
}

.product-colors {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.product-colors__item {
    width: 159px;
    height: 209px;
    cursor: pointer;
    transition: border 0.2s, transform 0.2s;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    padding: 4px;
}

.product-colors__item:hover {
    transform: scale(1.05);
}

.product-colors__item--active {
    border: 1px solid #5b3b12;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 14px;
}

.product-actions__btn {
    padding: 18px;
    border: none;
    text-align: center;
    color: #f1ede6;
    border: 1px solid #5b3b12;
}

.product-actions__btn:active {
    transform: scale(0.97);
}

.product-actions__btn--cart {
    background: #5b3b12;
}

.product-actions__btn--cart:hover {
    background: #6e4e23;
}

.product-actions__btn--order {
    background: rgba(91, 59, 18, 0);
    color: #5b3b12;
}

.product-actions__btn--order:hover {
    background: #eee;
}

.product-composition {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-top: 14px;
}

.product-composition__label {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 15px;
}

.product-composition__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #212121;
}

.product-description {
    margin-top: 14px;
}

.product-description__label {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 14px;
}

.product-description__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #212121;
}

.product-scheme-btn {
    border: 1px solid #5b3b12;
    background: #f1ede6;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #5b3b12;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.product-scheme-btn:hover {
    background: #1e1e1e;
    color: white;
}

.product-composition--mobile {
    display: none;
}



/* ===== FULLSCREEN СЛАЙДЕР (оверлей) ===== */
.fullscreen-slider {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 5000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 40px 60px;
}

.fullscreen-slider--open {
    display: flex;
}

.fullscreen-slider__close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10;
}

.fullscreen-slider__close:hover {
    transform: rotate(90deg);
}

.fullscreen-slider__main {
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 800px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
}

.fullscreen-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-slider__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fullscreen-slider__nav--prev {
    left: 20px;
}

.fullscreen-slider__nav--next {
    right: 20px;
}

.fullscreen-slider__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.fullscreen-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    padding: 0;
}

.fullscreen-slider__dot:hover {
    transform: scale(1.2);
}

.fullscreen-slider__dot--active {
    background: white;
    transform: scale(1.2);
}

.fullscreen-slider__thumbnails {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 16px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.fullscreen-slider__thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.fullscreen-slider__thumb:hover {
    transform: scale(1.08);
}

.fullscreen-slider__thumb--active {
    border-color: white;
}



.collection__filter-bar {
    max-width: 1466px;
    margin: 60px auto 64px;
    gap: 12px 30px;
}

.error-404 {
    margin: 118px 0 81px;
    text-align: center;
}

.error-404__title {
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #212121;
    margin-top: 45px;
}

.error-404__btn {
    background: #5b3b12;
    width: 397px;
    padding: 22px;
    text-decoration: none;
    display: block;
    margin: 45px auto 0;
}

.eskiz {
    max-width: 1222px;
    margin: 0 auto;
}

.eskiz h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 32px;
}

.eskiz p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.08em;
    color: #212121;
}

.eskiz__description {
    margin-bottom: 129px;
    margin-top: 83px;
}

/* Контейнер */
.eskiz__flex {
    display: flex;
    flex-wrap: nowrap;
}

/* Стили для картинок */
.eskiz__flex img {
    flex: 0 1 auto;
    min-width: 0;
}


/* ===== СТРАНИЦА ЛИЧНОГО КАБИНЕТА ===== */
.cabinet {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 31px;
    margin-bottom: 571px;
}

/* ===== ЛЕВОЕ МЕНЮ ===== */
.cabinet-menu {
    flex: 0 0 249px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cabinet-menu__item {
    line-height: 100%;
    text-decoration: none;
    color: #212121;
    font-size: 20px;
    transition: color 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}

.cabinet-menu__item:hover {
    color: #646464;
}


/* ===== ПРАВАЯ ЧАСТЬ — блоки ===== */
.cabinet-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* ===== КАРТОЧКИ (по 2 в ряд) ===== */
.cabinet-row {
    display: grid;
    grid-template-columns: minmax(280px, 496px) minmax(280px, 674px);
    gap: 14px;
}

.cabinet-card {
    border-radius: 20px;
    padding: 24px 25px;
    border: 2px solid #5b3b12;
    background: rgba(217, 217, 217, 0);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cabinet-card--delivery {
    border-radius: 42px 42px 42px 0;
}
.cabinet-card--delivery .cabinet-card__title {
    margin-bottom: 16px;
}

.cabinet-card--delivery .cabinet-card__row .cabinet-card__row:last-child {
    margin-top: 37px;
}

.cabinet-card--profile {
    border-radius: 42px 42px 0 42px;
    flex-wrap: nowrap;
    gap: 56px;
    justify-content: flex-start;
}

.cabinet-card__icon {
    text-align: center;
    width: 193px;

}

.cabinet-card__header {
    display: flex;
    flex-direction: column;
}

.cabinet-card__header--profile {
    border-radius: 100%;
    background-color: #5b3b12;
    justify-content: center;
    height: 193px;
}

.cabinet-card__value--phone {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #212121;

}

.cabinet-card__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 118%;
    text-transform: uppercase;
    color: #212121;
}

.cabinet-card__decript {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 137%;
    text-transform: uppercase;
    color: #212121;
}

.cabinet-card__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cabinet-card__value.cabinet-card__value--name {
    font-size: 20px;
    line-height: 118%;
}

.cabinet-card__value {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration-skip-ink: none;
    color: #212121;
    margin-bottom: 17px;
}

.cabinet-card__value--mail {
    text-decoration: underline;
}


.cabinet-card__btn {
    background: #5b3b12;
    border: 2px solid #5b3b12;
    border-radius: 42px;
    padding: 13px 40px;
    font-size: 20px;
    cursor: pointer;
    white-space: nowrap;
    margin-top: auto;
}

.cabinet-grid--order {
    border-radius: 42px 0 42px 42px;
}

.cabinet-grid--order .cabinet-card__decript:last-child {
    font-size: 11px;
    text-transform: none;
    margin-top: 5px;
}

.cabinet-card--cards {
    border-radius: 0 42px 42px 42px;
}