/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--outline {
    border: 1px solid #d0d0d0;
    color: #222;
    background: #fff;
}

.btn--outline:hover {
    border-color: #222;
}

.btn--dark {
    background: #222;
    color: #fff;
}

.btn--dark:hover {
    background: #333;
}

.btn--wide {
    width: 100%;
    max-width: 320px;
}

/* ===== SLIDER ARROWS ===== */
.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: border-color 0.2s;
}

.slider-arrow:hover {
    border-color: #222;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    height: 3px;
    background: #e8e8e8;
    border-radius: 2px;
    margin-top: 24px;
}

.progress-bar__fill {
    height: 100%;
    background: #222;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ===== TOP BAR ===== */
.top-bar {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__link {
    font-size: 13px;
    color: #444;
    transition: color 0.2s;
}

.top-bar__link:hover {
    color: #222;
}

.top-bar__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.top-bar__city {
    font-size: 13px;
    color: #444;
}

.top-bar__phone {
    font-size: 13px;
    color: #444;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar__phone:hover {
    color: #222;
}

/* ===== HEADER ===== */
.header {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header__catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.header__catalog-btn:hover {
    background: #333;
}

.header__search {
    flex: 1;
    position: relative;
    max-width: 320px;
}

.header__search input {
    width: 100%;
    padding: 12px 44px 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #222;
    background: #fff;
    transition: border-color 0.2s;
}

.header__search input::placeholder {
    color: #999;
}

.header__search input:focus {
    border-color: #222;
}

.header__search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.header__nav-link {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}

.header__nav-link:hover {
    color: #555;
}

.header__nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s;
}

.header__icon:hover {
    background: #f5f5f5;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #e8edf2 0%, #dde3ea 50%, #b8c6d6 100%);
    min-height: 480px;
    overflow: hidden;
}

.hero__inner {
    display: flex;
    align-items: center;
    min-height: 480px;
}

.hero__content {
    flex: 0 0 45%;
    padding: 60px 0;
    padding-right: 40px;
}

.hero__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #222;
}

.hero__text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 420px;
}

.hero__image {
    flex: 0 0 55%;
    position: relative;
    height: 480px;
}

.hero__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #4a6d8c, #2d5a7b, #1a4a6b, #c8a858, #e8d088);
    background-size: cover;
    border-radius: 0 0 0 40px;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 56px 0 40px;
}

.categories__header {
    margin-bottom: 28px;
}

.categories__tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.categories__tabs {
    display: flex;
    gap: 8px;
}

.categories__tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background: #fff;
    transition: all 0.2s;
}

.categories__tab:hover {
    border-color: #222;
}

.categories__tab--active {
    background: #f5f5f5;
    border-color: #ccc;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.category-card__image {
    aspect-ratio: 1;
    background: #f5f5f5;
}

.category-card__image--1 {
    background: linear-gradient(135deg, #8fa 0%, #6a8 50%, #496 100%);
}

.category-card__image--2 {
    background: linear-gradient(135deg, #e8d0d0 0%, #d4b0b8 50%, #c8a0a8 100%);
}

.category-card__image--3 {
    background: linear-gradient(135deg, #c8d8c0 0%, #a8c0a0 50%, #90b088 100%);
}

.category-card__image--4 {
    background: linear-gradient(135deg, #ddd0c0 0%, #c8b8a0 50%, #b8a890 100%);
}

.category-card__image--5 {
    background: linear-gradient(135deg, #666 0%, #444 50%, #333 100%);
}

.category-card__name {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.categories__progress {
    margin-top: 4px;
}

/* ===== PROMO ===== */
.promo {
    padding: 24px 0 56px;
}

.promo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.promo-card {
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
    background: #555;
    color: #fff;
    transition: transform 0.2s;
}

.promo-card:hover {
    transform: scale(1.005);
}

.promo-card--summer {
    background: linear-gradient(135deg, #d4c8a0, #c8d0a0, #a8c0a0, #e0d8b0);
}

.promo-card--pajama {
    background: linear-gradient(135deg, #a0b0c8, #8898b0, #9bb8d0, #7890a8);
}

.promo-card__content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.promo-card__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.promo-card__text {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 320px;
}

.promo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    margin-top: auto;
    padding-top: 40px;
}

/* ===== POPULAR ===== */
.popular {
    padding: 0 0 56px;
}

.popular__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.popular__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.popular__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    display: block;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-card__image {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-card__image--1 {
    background: linear-gradient(160deg, #6070e0, #5060d0, #4050c0);
}

.product-card__image--2 {
    background: linear-gradient(160deg, #508060, #407050, #306040);
}

.product-card__image--3 {
    background: linear-gradient(160deg, #d0a0c0, #c090b0, #b080a0);
}

.product-card__image--4 {
    background: linear-gradient(160deg, #90c8c8, #80b8b8, #70a8a8);
}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card__name {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.product-card__price {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.product-card__price sup {
    font-size: 11px;
    vertical-align: super;
}

.popular__progress {
    margin-top: 4px;
}

/* ===== ABOUT ===== */
.about {
    padding: 64px 0;
    background: #f5f5f5;
}

.about__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
}

.about-card__icon {
    margin-bottom: 24px;
}

.about-card__icon svg {
    width: 80px;
    height: 80px;
}

.about-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ===== ARTICLES ===== */
.articles {
    padding: 64px 0;
}

.articles__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}

.articles__header-text {
    max-width: 600px;
}

.articles__subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-top: 12px;
}

.articles__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.article-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-card__image {
    aspect-ratio: 16/10;
    border-radius: 12px 12px 0 0;
}

.article-card__image--1 {
    background: linear-gradient(135deg, #8a7054, #6a5040, #a08060, #4a5848);
}

.article-card__image--2 {
    background: linear-gradient(135deg, #e8c8b8, #d0a090, #c8a0a0, #b89080);
}

.article-card__image--3 {
    background: linear-gradient(135deg, #88b0c8, #70a0b8, #6090a8, #5888a0);
}

.article-card__info {
    padding: 20px;
}

.article-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-card__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.articles__progress {
    margin-top: 4px;
}

/* ===== PRINT SECTION ===== */
.print-section {
    padding: 64px 0;
    background: #f5f5f5;
}

.print-card {
    display: flex;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 460px;
}

.print-card__image {
    flex: 0 0 42%;
}

.print-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #8090c8, #7080b8, #8898d0, #7888c0);
    min-height: 460px;
}

.print-card__content {
    flex: 1;
    padding: 48px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.print-card__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.print-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    max-width: 480px;
}

.print-card__options {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.print-card__option-group {
    flex: 1;
}

.print-card__option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
}

.print-card__swatches {
    display: flex;
    gap: 12px;
}

.print-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.print-swatch__color {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.print-swatch--active .print-swatch__color {
    border-color: #222;
}

.print-swatch__pattern {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.print-swatch__pattern--dots {
    background-image: radial-gradient(#222 3px, transparent 3px);
    background-size: 12px 12px;
    border: 1px solid #ddd;
}

.print-swatch__pattern--stripes {
    background-image: repeating-linear-gradient(
        90deg,
        #222 0px,
        #222 3px,
        transparent 3px,
        transparent 9px
    );
    border: 1px solid #ddd;
}

.print-swatch__pattern--dots-sm {
    background-image: radial-gradient(#222 2px, transparent 2px);
    background-size: 8px 8px;
    border: 1px solid #ddd;
}

.print-swatch__name {
    font-size: 12px;
    color: #666;
}

/* ===== SHOWROOM ===== */
.showroom {
    padding: 64px 0;
}

.showroom-card {
    display: flex;
    background: #f9f9f9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    min-height: 480px;
}

.showroom-card__info {
    flex: 0 0 48%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showroom-card__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.showroom-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.showroom-card__divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 24px;
}

.showroom-card__address {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showroom-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.showroom-tag {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
}

.showroom-card__detail {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.5;
}

.showroom-card__buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.showroom-card__image {
    flex: 1;
    overflow: hidden;
}

.showroom-card__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: linear-gradient(135deg, #5a7080, #4a6070, #3a5262, #506878, #6a808c);
}

/* ===== QUICK LINKS ===== */
.quick-links {
    padding: 40px 0 64px;
}

.quick-links__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-link:hover {
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-link__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
}

.quick-link__icon--1 {
    background: #4a5a6a;
}

.quick-link__icon--2 {
    background: #3a4a5a;
}

.quick-link__icon--3 {
    background: #5a6a7a;
}

.quick-link__icon--4 {
    background: #6a7a8a;
}

.quick-link__text {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* ===== FOOTER ===== */
.footer {
    background: #f5f5f5;
    padding-top: 56px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 0.8fr 1.2fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.footer__brand {
    padding-right: 24px;
}

.footer__logo {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    display: block;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer__heading {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.footer__heading--mt {
    margin-top: 28px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer__link:hover {
    color: #222;
}

.footer__link--plain {
    cursor: default;
}

.footer__link--plain:hover {
    color: #666;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.footer__social:hover {
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.footer__copyright {
    font-size: 13px;
    color: #888;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb__item {
    font-size: 13px;
    color: #888;
}

.breadcrumb__link {
    color: #888;
    transition: color 0.2s;
}

.breadcrumb__link:hover {
    color: #222;
}

.breadcrumb__item--current {
    color: #444;
}

.breadcrumb__sep {
    display: flex;
    align-items: center;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: 32px 0 56px;
}

.product-page__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-gallery__thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s;
}

.product-gallery__thumb:hover {
    border-color: #ccc;
}

.product-gallery__thumb--active {
    border-color: #222;
}

.product-gallery__thumb-img {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.product-gallery__main {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-gallery__main-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* ===== PRODUCT INFO ===== */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    margin-bottom: 16px;
}

.product-info__price-block {
    margin-bottom: 20px;
}

.product-info__price-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.product-info__price {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.product-info__price sup {
    font-size: 16px;
    vertical-align: super;
    font-weight: 600;
}

/* ===== PRODUCT ACTIONS ===== */
.product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.quantity-selector__btn {
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.quantity-selector__btn:hover {
    background: #f5f5f5;
    color: #222;
}

.quantity-selector__value {
    padding: 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    min-width: 52px;
    text-align: center;
    white-space: nowrap;
}

.btn--add-cart {
    height: 48px;
    padding: 0 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    flex: 1;
}

/* ===== PRODUCT CTA ===== */
.product-cta {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.product-cta:hover {
    border-color: #bbb;
}

.product-cta__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.product-cta__text {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.product-cta__desc {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* ===== PRODUCT COLORS ===== */
.product-colors {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.product-colors__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: left;
}

.product-colors__chevron {
    transition: transform 0.2s;
}

.product-colors--closed .product-colors__chevron {
    transform: rotate(0deg);
}

.product-colors__body {
    padding: 0 20px 20px;
    transition: all 0.3s ease;
}

.product-colors--closed .product-colors__body {
    display: none;
}

.product-colors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.color-swatch__circle {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.color-swatch:hover .color-swatch__circle {
    border-color: #ccc;
}

.color-swatch--active .color-swatch__circle {
    border-color: #222;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #222;
}

.color-swatch__name {
    font-size: 12px;
    color: #666;
    text-align: center;
    white-space: nowrap;
}

.product-colors__samples {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding-top: 4px;
    border-top: 1px solid #e8e8e8;
    width: 100%;
    padding-top: 16px;
    transition: color 0.2s;
}

.product-colors__samples:hover {
    color: #555;
}

/* ===== ACCORDION ===== */
.accordion {
    border-top: 1px solid #e8e8e8;
}

.accordion:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    text-align: left;
}

.accordion__header:hover {
    color: #555;
}

.accordion__chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.accordion--open .accordion__chevron {
    transform: rotate(0deg);
}

.accordion:not(.accordion--open) .accordion__chevron {
    transform: rotate(0deg);
}

.accordion__body {
    display: none;
    padding-bottom: 24px;
}

.accordion--open .accordion__body {
    display: block;
}

.accordion__text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== PRODUCT SPECS ===== */
.product-specs {
    display: flex;
    flex-direction: column;
}

.product-specs__row {
    display: flex;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
}

.product-specs__row:last-child {
    border-bottom: none;
}

.product-specs__label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-specs__dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    min-width: 20px;
    margin-bottom: 4px;
}

.product-specs__value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
    padding: 0 0 64px;
}

.related-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ===== CATALOG PAGE ===== */
.catalog-page {
    padding: 32px 0 56px;
}

.catalog-page__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* -- Subcategory slider -- */
.catalog-subcats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    position: relative;
}

.catalog-subcats__list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    cursor: grab;
    user-select: none;
}

.catalog-subcats__list::-webkit-scrollbar {
    display: none;
}

.catalog-subcat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.catalog-subcat:hover {
    opacity: 0.8;
}

.catalog-subcat__img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.catalog-subcat__name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
}

.catalog-subcats__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    flex-shrink: 0;
    transition: border-color 0.2s;
    background: #fff;
}

.catalog-subcats__arrow:hover {
    border-color: #222;
}

/* -- Filters bar -- */
.catalog-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 4px;
}

.catalog-filters__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.catalog-filter:hover {
    border-color: #222;
}

.catalog-filter--all {
    background: #222;
    color: #fff;
    border-color: #222;
}

.catalog-filter--all:hover {
    background: #333;
    border-color: #333;
}

.catalog-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.catalog-sort:hover {
    border-color: #222;
}

/* -- Catalog product grid -- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
    margin-bottom: 48px;
}

.catalog-grid .product-card__image {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background-size: cover;
    background-position: center;
}

/* -- Load More -- */
.catalog-load-more {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

/* -- Pagination -- */
.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-bottom: 24px;
}

.catalog-pagination__arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.catalog-pagination__arrow:hover:not(:disabled) {
    border-color: #222;
}

.catalog-pagination__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.catalog-pagination__page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    transition: background 0.2s;
}

.catalog-pagination__page:hover {
    background: #f5f5f5;
}

.catalog-pagination__page--active {
    background: #f0f0f0;
    font-weight: 600;
}

.catalog-pagination__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #888;
}

/* ===== ABOUT PAGE ===== */

/* -- About Hero -- */
.about-hero {
    background: linear-gradient(135deg, #e8edf2 0%, #dde3ea 50%, #b8c6d6 100%);
    overflow: hidden;
}

.about-hero__inner {
    display: flex;
    align-items: center;
    min-height: 440px;
}

.about-hero__content {
    flex: 0 0 48%;
    padding: 56px 0;
    padding-right: 48px;
}

.about-hero__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

.about-hero__text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    max-width: 480px;
}

.about-hero__btn {
    padding: 14px 32px;
}

.about-hero__image {
    flex: 0 0 52%;
    height: 440px;
    position: relative;
}

.about-hero__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #4a6d8c, #2d5a7b, #1a4a6b, #3a6070, #5a8090);
    border-radius: 0 0 0 32px;
}

/* -- About Stats -- */
.about-stats {
    padding: 48px 0;
    border-bottom: 1px solid #f0f0f0;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stats__item {
    text-align: center;
}

.about-stats__number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #222;
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-stats__label {
    display: block;
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* -- About Why Us -- */
.about-why {
    padding: 64px 0;
    background: #f5f5f5;
}

.about-why__title {
    margin-bottom: 36px;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-why__card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
}

.about-why__icon {
    margin-bottom: 24px;
    color: #222;
}

.about-why__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.about-why__card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* -- About Mission -- */
.about-mission {
    padding: 64px 0;
}

.about-mission__card {
    display: flex;
    background: #f9f9f9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    min-height: 420px;
}

.about-mission__image {
    flex: 0 0 45%;
}

.about-mission__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(160deg, #8090c8, #7080b8, #8898d0, #7888c0);
}

.about-mission__content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-mission__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.about-mission__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    max-width: 500px;
}

.about-mission__text:last-of-type {
    margin-bottom: 28px;
}

/* -- About Advantages (How We Work) -- */
.about-advantages {
    padding: 64px 0;
    background: #f5f5f5;
}

.about-advantages__title {
    margin-bottom: 36px;
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-advantages__item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
}

.about-advantages__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-advantages__item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.about-advantages__item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* -- About Team -- */
.about-team {
    padding: 64px 0;
}

.about-team__card {
    display: flex;
    background: #f9f9f9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    min-height: 400px;
}

.about-team__content {
    flex: 0 0 50%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-team__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.about-team__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.about-team__contacts {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.about-team__image {
    flex: 1;
    overflow: hidden;
}

.about-team__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #5a7080, #4a6070, #3a5262, #506878, #6a808c);
}

/* -- About Geography -- */
.about-geo {
    padding: 64px 0;
    background: #f5f5f5;
}

.about-geo__title {
    margin-bottom: 12px;
}

.about-geo__subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
}

.about-geo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-geo__card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
}

.about-geo__card-icon {
    margin-bottom: 20px;
}

.about-geo__card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.about-geo__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* -- About CTA -- */
.about-cta {
    padding: 64px 0;
}

.about-cta__card {
    background: linear-gradient(135deg, #222 0%, #333 50%, #2a2a2a 100%);
    border-radius: 22px;
    padding: 56px;
    text-align: center;
}

.about-cta__content {
    max-width: 560px;
    margin: 0 auto;
}

.about-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-cta__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.about-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.about-cta__buttons .btn--dark {
    background: #fff;
    color: #222;
}

.about-cta__buttons .btn--dark:hover {
    background: #f0f0f0;
}

.about-cta__buttons .btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.about-cta__buttons .btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== CART PAGE ===== */
.cart-page {
    padding: 32px 0 64px;
}

.cart-page__header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.cart-page__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
}

.cart-page__count {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.cart-page__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* -- Cart Controls -- */
.cart-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-controls__delete {
    font-size: 14px;
    color: #888;
    transition: color 0.2s;
}

.cart-controls__delete:hover {
    color: #e44;
}

/* -- Cart Checkbox -- */
.cart-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.cart-checkbox__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.cart-checkbox__box {
    width: 20px;
    height: 20px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    background: #fff;
}

.cart-checkbox__box svg {
    opacity: 0;
    transition: opacity 0.15s;
}

.cart-checkbox__input:checked + .cart-checkbox__box {
    background: #222;
    border-color: #222;
}

.cart-checkbox__input:checked + .cart-checkbox__box svg {
    opacity: 1;
}

.cart-checkbox__label {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

/* -- Cart Item -- */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.3s, transform 0.3s;
}

.cart-item__checkbox {
    flex-shrink: 0;
}

.cart-item__image {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.cart-item__info {
    flex: 1;
    min-width: 0;
}

.cart-item__name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.cart-item__name:hover {
    color: #555;
}

.cart-item__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-item__color {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.cart-item__color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.08);
}

.cart-item__article {
    font-size: 13px;
    color: #888;
}

.cart-item__quantity {
    flex-shrink: 0;
}

.cart-item__quantity .quantity-selector {
    height: 40px;
}

.cart-item__quantity .quantity-selector__btn {
    width: 36px;
    height: 40px;
    font-size: 16px;
}

.cart-item__quantity .quantity-selector__value {
    font-size: 14px;
    min-width: 48px;
}

.cart-item__prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    min-width: 100px;
    text-align: right;
}

.cart-item__unit-price {
    font-size: 13px;
    color: #888;
}

.cart-item__total-price {
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

.cart-item__remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: background 0.2s;
}

.cart-item__remove:hover {
    background: #f5f5f5;
}

.cart-item__remove:hover svg path {
    stroke: #e44;
}

/* -- Cart Summary -- */
.cart-summary {
    position: sticky;
    top: 100px;
}

.cart-summary__card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
}

.cart-summary__title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.cart-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary__label {
    font-size: 14px;
    color: #666;
}

.cart-summary__value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.cart-summary__value--discount {
    color: #2a9d2a;
}

.cart-summary__divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

.cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cart-summary__total-label {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.cart-summary__total-value {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.cart-summary__btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cart-summary__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary__info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.cart-summary__info-row svg {
    flex-shrink: 0;
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__search {
        max-width: 260px;
    }

    .hero__title {
        font-size: 30px;
    }

    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .popular__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .print-card__content {
        padding: 36px 32px;
    }

    .footer__top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    /* -- Catalog page -- */
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-subcat__img {
        width: 100px;
        height: 100px;
    }

    /* -- About page -- */
    .about-hero__title {
        font-size: 28px;
    }

    .about-hero__content {
        flex: 0 0 50%;
        padding-right: 32px;
    }

    .about-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* -- Cart page -- */
    .cart-page__layout {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }

    /* -- Product page -- */
    .product-page__main {
        gap: 32px;
    }

    .product-info__title {
        font-size: 22px;
    }

    .related-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== RESPONSIVE — MOBILE LANDSCAPE / SMALL TABLET (768px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
    }

    /* -- Top bar -- */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar__left,
    .top-bar__right {
        gap: 12px;
    }

    .top-bar__link,
    .top-bar__city,
    .top-bar__phone {
        font-size: 12px;
    }

    /* -- Header -- */
    .header {
        padding: 12px 0;
    }

    .header__inner {
        gap: 12px;
    }

    .header__logo {
        font-size: 22px;
    }

    .header__catalog-btn {
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .header__catalog-btn svg {
        width: 14px;
        height: 10px;
    }

    .header__search {
        max-width: none;
        flex: 1;
    }

    .header__search input {
        padding: 10px 40px 10px 14px;
        font-size: 13px;
    }

    .header__icons {
        gap: 8px;
    }

    .header__icon {
        width: 36px;
        height: 36px;
    }

    .header__icon svg {
        width: 20px;
        height: 20px;
    }

    /* -- Hero -- */
    .hero {
        min-height: auto;
    }

    .hero__inner {
        flex-direction: column;
        min-height: auto;
    }

    .hero__content {
        flex: none;
        padding: 32px 0 24px;
        padding-right: 0;
    }

    .hero__title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero__text {
        font-size: 15px;
    }

    .hero__image {
        flex: none;
        height: 240px;
        width: 100%;
    }

    /* -- Categories -- */
    .categories {
        padding: 40px 0 32px;
    }

    .categories__tabs-row {
        margin-top: 16px;
    }

    .categories__tabs {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }

    .categories__tabs::-webkit-scrollbar {
        display: none;
    }

    .categories__tab {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card__name {
        padding: 12px 14px;
        font-size: 14px;
    }

    /* -- Promo -- */
    .promo {
        padding: 16px 0 40px;
    }

    .promo__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promo-card {
        min-height: 260px;
        border-radius: 14px;
    }

    .promo-card__content {
        padding: 24px;
    }

    .promo-card__title {
        font-size: 22px;
    }

    .promo-card__text {
        font-size: 14px;
    }

    /* -- Popular -- */
    .popular {
        padding: 0 0 40px;
    }

    .popular__header {
        margin-bottom: 20px;
    }

    .popular__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card__image {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .product-card__name {
        font-size: 14px;
    }

    .product-card__price {
        font-size: 14px;
    }

    /* -- About -- */
    .about {
        padding: 48px 0;
    }

    .about__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about__title {
        font-size: 24px;
    }

    .about__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .about-card__icon {
        margin-bottom: 16px;
    }

    .about-card__icon svg {
        width: 56px;
        height: 56px;
    }

    .about-card__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-card__text {
        font-size: 14px;
    }

    /* -- Articles -- */
    .articles {
        padding: 48px 0;
    }

    .articles__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .articles__subtitle {
        font-size: 14px;
        margin-top: 8px;
    }

    .articles__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-card__info {
        padding: 16px;
    }

    .article-card__title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    /* -- Print -- */
    .print-section {
        padding: 48px 0;
    }

    .print-card {
        flex-direction: column;
        border-radius: 18px;
    }

    .print-card__image {
        flex: none;
    }

    .print-card__image-placeholder {
        min-height: 240px;
    }

    .print-card__content {
        padding: 28px 24px;
    }

    .print-card__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .print-card__text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .print-card__options {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 28px;
    }

    .print-swatch__color {
        width: 60px;
        height: 60px;
    }

    .print-swatch__pattern {
        width: 60px;
        height: 60px;
    }

    .btn--wide {
        max-width: 100%;
    }

    /* -- Showroom -- */
    .showroom {
        padding: 48px 0;
    }

    .showroom-card {
        flex-direction: column;
        border-radius: 18px;
    }

    .showroom-card__info {
        flex: none;
        padding: 28px 24px;
    }

    .showroom-card__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .showroom-card__text {
        font-size: 14px;
    }

    .showroom-card__address {
        font-size: 16px;
    }

    .showroom-card__image-placeholder {
        min-height: 260px;
    }

    .showroom-card__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .showroom-card__buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* -- Quick links -- */
    .quick-links {
        padding: 32px 0 48px;
    }

    .quick-links__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-link {
        padding: 18px 16px;
        border-radius: 12px;
        gap: 12px;
    }

    .quick-link__icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .quick-link__text {
        font-size: 14px;
    }

    /* -- Catalog page -- */
    .catalog-page {
        padding: 24px 0 40px;
    }

    .catalog-page__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .catalog-subcats {
        margin-bottom: 24px;
    }

    .catalog-subcats__list {
        gap: 16px;
    }

    .catalog-subcat__img {
        width: 80px;
        height: 80px;
    }

    .catalog-subcat__name {
        font-size: 13px;
    }

    .catalog-filters {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .catalog-filters__left {
        gap: 8px;
    }

    .catalog-filter {
        padding: 8px 14px;
        font-size: 13px;
    }

    .catalog-sort {
        padding: 8px 14px;
        font-size: 13px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        margin-bottom: 36px;
    }

    .catalog-pagination__page,
    .catalog-pagination__arrow {
        width: 36px;
        height: 36px;
    }

    /* -- About page -- */
    .about-hero {
        min-height: auto;
    }

    .about-hero__inner {
        flex-direction: column;
        min-height: auto;
    }

    .about-hero__content {
        flex: none;
        padding: 32px 0 24px;
        padding-right: 0;
    }

    .about-hero__title {
        font-size: 26px;
    }

    .about-hero__text {
        font-size: 15px;
    }

    .about-hero__image {
        flex: none;
        height: 260px;
        width: 100%;
    }

    .about-stats {
        padding: 36px 0;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-stats__number {
        font-size: 34px;
    }

    .about-why {
        padding: 48px 0;
    }

    .about-why__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-why__card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .about-mission {
        padding: 48px 0;
    }

    .about-mission__card {
        flex-direction: column;
        border-radius: 18px;
    }

    .about-mission__image {
        flex: none;
    }

    .about-mission__image-placeholder {
        min-height: 240px;
    }

    .about-mission__content {
        padding: 28px 24px;
    }

    .about-mission__title {
        font-size: 22px;
    }

    .about-advantages {
        padding: 48px 0;
    }

    .about-advantages__grid {
        grid-template-columns: 1fr;
    }

    .about-advantages__item {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .about-team {
        padding: 48px 0;
    }

    .about-team__card {
        flex-direction: column;
        border-radius: 18px;
    }

    .about-team__content {
        flex: none;
        padding: 28px 24px;
    }

    .about-team__title {
        font-size: 22px;
    }

    .about-team__contacts {
        flex-direction: column;
        gap: 10px;
    }

    .about-team__contacts .btn {
        width: 100%;
        text-align: center;
    }

    .about-team__image-placeholder {
        min-height: 260px;
    }

    .about-geo {
        padding: 48px 0;
    }

    .about-geo__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-geo__card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .about-cta {
        padding: 48px 0;
    }

    .about-cta__card {
        padding: 36px 24px;
        border-radius: 18px;
    }

    .about-cta__title {
        font-size: 22px;
    }

    .about-cta__text {
        font-size: 15px;
    }

    .about-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta__buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    /* -- Cart page -- */
    .cart-page {
        padding: 24px 0 40px;
    }

    .cart-page__title {
        font-size: 26px;
    }

    .cart-page__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart-item__info {
        flex: 1;
        min-width: 160px;
    }

    .cart-item__prices {
        min-width: auto;
    }

    /* -- Product page -- */
    .product-page {
        padding: 24px 0 40px;
    }

    .product-page__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery {
        position: static;
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .product-gallery__thumb {
        width: 60px;
        height: 60px;
        border-radius: 6px;
    }

    .product-gallery__main {
        border-radius: 10px;
    }

    .product-info__title {
        font-size: 22px;
    }

    .product-info__price {
        font-size: 24px;
    }

    .color-swatch__circle {
        width: 56px;
        height: 56px;
    }

    .related-products {
        padding: 0 0 48px;
    }

    .related-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .breadcrumb__list {
        gap: 6px;
    }

    .breadcrumb__item {
        font-size: 12px;
    }

    /* -- Footer -- */
    .footer {
        padding-top: 40px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-bottom: 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer__logo {
        font-size: 22px;
        margin-bottom: 12px;
    }
}

/* ===== RESPONSIVE — MOBILE (480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 22px;
    }

    /* -- Top bar (hide on very small screens) -- */
    .top-bar {
        display: none;
    }

    /* -- Header mobile -- */
    .header {
        padding: 10px 0;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header__logo {
        font-size: 20px;
        order: 1;
    }

    .header__catalog-btn {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
        order: 2;
    }

    .header__icons {
        order: 3;
        margin-left: auto;
        gap: 4px;
    }

    .header__icon {
        width: 32px;
        height: 32px;
    }

    .header__icon svg {
        width: 18px;
        height: 18px;
    }

    .header__search {
        order: 10;
        flex-basis: 100%;
        max-width: 100%;
    }

    .header__search input {
        padding: 10px 38px 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* -- Hero -- */
    .hero__content {
        padding: 24px 0 16px;
    }

    .hero__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .hero__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero__image {
        height: 200px;
    }

    /* -- Categories -- */
    .categories {
        padding: 32px 0 24px;
    }

    .categories__header {
        margin-bottom: 20px;
    }

    .categories__tabs-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .categories__tab {
        padding: 7px 14px;
        font-size: 12px;
    }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        border-radius: 10px;
    }

    .category-card__name {
        padding: 10px 12px;
        font-size: 13px;
    }

    .slider-arrows {
        gap: 6px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    /* -- Promo -- */
    .promo {
        padding: 12px 0 32px;
    }

    .promo-card {
        min-height: 220px;
        border-radius: 12px;
    }

    .promo-card__content {
        padding: 20px;
    }

    .promo-card__title {
        font-size: 20px;
    }

    .promo-card__text {
        font-size: 13px;
    }

    .promo-card__link {
        font-size: 14px;
        padding-top: 24px;
    }

    /* -- Popular -- */
    .popular {
        padding: 0 0 32px;
    }

    .popular__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .popular__controls {
        width: 100%;
        justify-content: space-between;
    }

    .popular__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card__image {
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .product-card__name {
        font-size: 13px;
    }

    .product-card__price {
        font-size: 13px;
    }

    /* -- About -- */
    .about {
        padding: 36px 0;
    }

    .about__title {
        font-size: 22px;
    }

    .about-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .about-card__icon svg {
        width: 48px;
        height: 48px;
    }

    .about-card__title {
        font-size: 17px;
    }

    .about-card__text {
        font-size: 13px;
    }

    /* -- Articles -- */
    .articles {
        padding: 36px 0;
    }

    .articles__subtitle {
        font-size: 13px;
    }

    .articles__controls {
        width: 100%;
        justify-content: space-between;
    }

    .article-card {
        border-radius: 10px;
    }

    .article-card__image {
        aspect-ratio: 16/9;
        border-radius: 10px 10px 0 0;
    }

    .article-card__info {
        padding: 14px;
    }

    .article-card__title {
        font-size: 15px;
    }

    .article-card__desc {
        font-size: 13px;
    }

    /* -- Print -- */
    .print-section {
        padding: 36px 0;
    }

    .print-card {
        border-radius: 14px;
    }

    .print-card__image-placeholder {
        min-height: 200px;
    }

    .print-card__content {
        padding: 24px 20px;
    }

    .print-card__title {
        font-size: 20px;
    }

    .print-card__text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .print-card__option-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .print-card__swatches {
        gap: 8px;
    }

    .print-swatch__color {
        width: 52px;
        height: 52px;
        border-radius: 6px;
    }

    .print-swatch__pattern {
        width: 52px;
        height: 52px;
        border-radius: 6px;
    }

    .print-swatch__name {
        font-size: 11px;
    }

    .print-card__options {
        margin-bottom: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 8px;
    }

    .btn--dark {
        padding: 12px 20px;
    }

    /* -- Showroom -- */
    .showroom {
        padding: 36px 0;
    }

    .showroom-card {
        border-radius: 14px;
    }

    .showroom-card__info {
        padding: 24px 20px;
    }

    .showroom-card__title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .showroom-card__text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .showroom-card__divider {
        margin-bottom: 20px;
    }

    .showroom-card__address {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .showroom-tag {
        padding: 5px 10px;
        font-size: 12px;
    }

    .showroom-card__detail {
        font-size: 13px;
    }

    .showroom-card__image-placeholder {
        min-height: 220px;
    }

    .showroom-card__buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* -- Quick links -- */
    .quick-links {
        padding: 24px 0 36px;
    }

    .quick-links__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-link {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .quick-link__icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .quick-link__text {
        font-size: 13px;
    }

    /* -- Catalog page -- */
    .catalog-page {
        padding: 20px 0 28px;
    }

    .catalog-page__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .catalog-subcats__list {
        gap: 12px;
    }

    .catalog-subcat__img {
        width: 68px;
        height: 68px;
    }

    .catalog-subcat__name {
        font-size: 12px;
    }

    .catalog-filter {
        padding: 7px 12px;
        font-size: 12px;
    }

    .catalog-sort {
        padding: 7px 12px;
        font-size: 12px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
        margin-bottom: 28px;
    }

    .catalog-pagination__page,
    .catalog-pagination__arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    /* -- About page -- */
    .about-hero__content {
        padding: 24px 0 16px;
    }

    .about-hero__title {
        font-size: 22px;
    }

    .about-hero__text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-hero__image {
        height: 200px;
    }

    .about-stats {
        padding: 28px 0;
    }

    .about-stats__number {
        font-size: 28px;
    }

    .about-stats__label {
        font-size: 13px;
    }

    .about-why {
        padding: 36px 0;
    }

    .about-why__title {
        font-size: 22px;
    }

    .about-why__card-title {
        font-size: 18px;
    }

    .about-why__card-text {
        font-size: 14px;
    }

    .about-mission {
        padding: 36px 0;
    }

    .about-mission__card {
        border-radius: 14px;
    }

    .about-mission__image-placeholder {
        min-height: 200px;
    }

    .about-mission__content {
        padding: 24px 20px;
    }

    .about-mission__title {
        font-size: 20px;
    }

    .about-mission__text {
        font-size: 14px;
    }

    .about-advantages {
        padding: 36px 0;
    }

    .about-advantages__item {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .about-advantages__step {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .about-advantages__item-title {
        font-size: 16px;
    }

    .about-advantages__item-text {
        font-size: 13px;
    }

    .about-team {
        padding: 36px 0;
    }

    .about-team__card {
        border-radius: 14px;
    }

    .about-team__content {
        padding: 24px 20px;
    }

    .about-team__title {
        font-size: 20px;
    }

    .about-team__text {
        font-size: 14px;
    }

    .about-team__image-placeholder {
        min-height: 220px;
    }

    .about-geo {
        padding: 36px 0;
    }

    .about-geo__subtitle {
        font-size: 14px;
    }

    .about-geo__card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .about-geo__card-title {
        font-size: 16px;
    }

    .about-geo__card-text {
        font-size: 13px;
    }

    .about-cta {
        padding: 36px 0;
    }

    .about-cta__card {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .about-cta__title {
        font-size: 20px;
    }

    .about-cta__text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* -- Cart page -- */
    .cart-page {
        padding: 20px 0 28px;
    }

    .cart-page__title {
        font-size: 22px;
    }

    .cart-page__count {
        font-size: 14px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px 0;
    }

    .cart-item__image {
        width: 68px;
        height: 68px;
        border-radius: 8px;
    }

    .cart-item__name {
        font-size: 14px;
    }

    .cart-item__quantity .quantity-selector {
        height: 36px;
    }

    .cart-item__quantity .quantity-selector__btn {
        width: 32px;
        height: 36px;
    }

    .cart-item__total-price {
        font-size: 15px;
    }

    .cart-item__remove {
        width: 32px;
        height: 32px;
    }

    .cart-summary__card {
        padding: 20px;
        border-radius: 14px;
    }

    .cart-summary__title {
        font-size: 20px;
    }

    .cart-summary__total-value {
        font-size: 20px;
    }

    .cart-summary__btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    /* -- Product page -- */
    .product-page {
        padding: 20px 0 32px;
    }

    .product-gallery {
        grid-template-columns: 50px 1fr;
        gap: 8px;
    }

    .product-gallery__thumb {
        width: 50px;
        height: 50px;
    }

    .product-gallery__thumbs {
        gap: 6px;
    }

    .product-info__title {
        font-size: 20px;
    }

    .product-info__price {
        font-size: 22px;
    }

    .product-info__price sup {
        font-size: 14px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn--add-cart {
        width: 100%;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .product-colors__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .color-swatch__circle {
        width: 48px;
        height: 48px;
    }

    .color-swatch__name {
        font-size: 11px;
    }

    .accordion__header {
        font-size: 16px;
        padding: 16px 0;
    }

    .product-specs__label,
    .product-specs__value {
        font-size: 13px;
    }

    .related-products {
        padding: 0 0 36px;
    }

    .related-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .breadcrumb {
        padding: 12px 0;
    }

    /* -- Footer -- */
    .footer {
        padding-top: 32px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo {
        font-size: 20px;
    }

    .footer__desc {
        font-size: 13px;
    }

    .footer__heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer__heading--mt {
        margin-top: 20px;
    }

    .footer__link {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer__bottom {
        padding: 16px 0;
    }

    .footer__copyright {
        font-size: 12px;
    }

    /* -- Progress bars -- */
    .progress-bar {
        margin-top: 16px;
    }
}

/* ===== RESPONSIVE — VERY SMALL (360px) ===== */
@media (max-width: 360px) {
    .header__logo {
        font-size: 18px;
    }

    .header__catalog-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .hero__title {
        font-size: 20px;
    }

    .hero__image {
        height: 170px;
    }

    .categories__grid {
        gap: 8px;
    }

    .popular__grid {
        gap: 8px;
    }

    .promo-card__title {
        font-size: 18px;
    }

    .print-swatch__color,
    .print-swatch__pattern {
        width: 44px;
        height: 44px;
    }

    .quick-links__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CUSTOM FABRIC PAGE ===== */

/* -- CF Hero -- */
.cf-hero {
    position: relative;
}

.cf-hero__bg {
    background: linear-gradient(135deg, #6b6357 0%, #8a7e6e 30%, #7a6f60 60%, #5a5248 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
}

.cf-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.cf-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 0;
    max-width: 700px;
    margin: 0 auto;
}

.cf-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cf-hero__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto;
}

/* -- CF Stats -- */
.cf-stats {
    padding: 48px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cf-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cf-stats__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cf-stats__icon {
    margin-bottom: 8px;
    color: #222;
}

.cf-stats__number {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.cf-stats__label {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* -- CF Select Fabrics Section -- */
.cf-select {
    padding: 64px 0;
    background: #f5f5f5;
}

.cf-select__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.cf-select__content {
    flex: 0 0 38%;
    padding-top: 16px;
}

.cf-select__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

.cf-select__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.cf-select__btn {
    padding: 14px 32px;
}

.cf-select__images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cf-select__img {
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.cf-select__img--1 {
    background: linear-gradient(135deg, #7a8a6a, #5a6a4a, #8a9a7a);
}

.cf-select__img--2 {
    background: linear-gradient(135deg, #c8a888, #b09070, #d0b898);
}

.cf-select__img--3 {
    background: linear-gradient(135deg, #a08870, #806850, #b09880);
}

.cf-select__img--4 {
    background: linear-gradient(135deg, #6a7a8a, #4a6070, #7a8a9a);
}

/* -- CF Features carousel -- */
.cf-features {
    position: relative;
}

.cf-features__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cf-feature {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.cf-feature__img {
    aspect-ratio: 16/10;
    border-radius: 16px 16px 0 0;
}

.cf-feature__img--1 {
    background: linear-gradient(135deg, #c0b8a0, #a8a088, #d0c8b0, #b0a890);
}

.cf-feature__img--2 {
    background: linear-gradient(135deg, #a08868, #886848, #b09878, #907060);
}

.cf-feature__img--3 {
    background: linear-gradient(135deg, #8898a8, #707888, #90a0b0, #687080);
}

.cf-feature__title {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    padding: 20px 20px 0;
}

.cf-feature__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 0 20px 24px;
}

.cf-features__arrows {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

/* -- CF Stages -- */
.cf-stages {
    padding: 64px 0;
}

.cf-stages__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #222;
}

.cf-stages__subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.cf-stages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cf-stages__card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 28px;
}

.cf-stages__num {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1;
}

.cf-stages__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cf-stages__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* -- CF Order Form Section -- */
.cf-order {
    padding: 64px 0;
    background: #f5f5f5;
}

.cf-order__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #222;
}

.cf-order__subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
}

.cf-order__card {
    display: flex;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 600px;
}

.cf-order__image {
    flex: 0 0 32%;
    background: linear-gradient(160deg, #8a7a60, #a08868, #7a6a50, #b09878, #6a5a42);
    min-height: 600px;
}

.cf-order__form-wrap {
    flex: 1;
    padding: 36px 40px;
    overflow-y: auto;
}

/* -- CF Form -- */
.cf-form__heading {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    margin-top: 20px;
}

.cf-form__heading:first-child {
    margin-top: 0;
}

.cf-form__row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.cf-form__row--4 {
    grid-template-columns: repeat(4, 1fr);
}

.cf-form__row--2sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cf-form__section .cf-form__heading {
    margin-top: 4px;
}

.cf-form__section .cf-form__select {
    margin-bottom: 12px;
}

.cf-form__input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #222;
    background: #fff;
    transition: border-color 0.2s;
}

.cf-form__input::placeholder {
    color: #999;
}

.cf-form__input:focus {
    border-color: #222;
    outline: none;
}

.cf-form__select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
    transition: border-color 0.2s;
    font-family: inherit;
}

.cf-form__select:focus {
    border-color: #222;
    outline: none;
}

.cf-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #222;
    background: #fff;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

.cf-form__textarea::placeholder {
    color: #999;
}

.cf-form__textarea:focus {
    border-color: #222;
    outline: none;
}

.cf-form__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cf-form__file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    transition: color 0.2s;
    flex: 1;
}

.cf-form__file:hover {
    color: #555;
}

.cf-form__submit {
    padding: 14px 36px;
    flex-shrink: 0;
}

/* ===== CUSTOM FABRIC RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
    .cf-hero__title {
        font-size: 32px;
    }

    .cf-select__inner {
        flex-direction: column;
    }

    .cf-select__content {
        flex: none;
    }

    .cf-features__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf-stages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf-form__row--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf-order__image {
        flex: 0 0 28%;
    }
}

/* ===== CUSTOM FABRIC RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .cf-hero__bg {
        min-height: 300px;
    }

    .cf-hero__inner {
        padding: 48px 0;
    }

    .cf-hero__title {
        font-size: 26px;
    }

    .cf-hero__text {
        font-size: 15px;
    }

    .cf-stats {
        padding: 36px 0;
    }

    .cf-stats__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cf-stats__number {
        font-size: 24px;
    }

    .cf-select {
        padding: 48px 0;
    }

    .cf-select__title {
        font-size: 22px;
    }

    .cf-select__images {
        grid-template-columns: 1fr 1fr;
    }

    .cf-features__list {
        grid-template-columns: 1fr;
    }

    .cf-stages {
        padding: 48px 0;
    }

    .cf-stages__grid {
        grid-template-columns: 1fr;
    }

    .cf-stages__title {
        font-size: 22px;
    }

    .cf-order {
        padding: 48px 0;
    }

    .cf-order__card {
        flex-direction: column;
        border-radius: 18px;
    }

    .cf-order__image {
        flex: none;
        min-height: 240px;
    }

    .cf-order__form-wrap {
        padding: 24px 20px;
    }

    .cf-form__row--4 {
        grid-template-columns: 1fr;
    }

    .cf-form__row--2sections {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cf-form__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .cf-form__submit {
        width: 100%;
    }

    .cf-order__title {
        font-size: 22px;
    }
}

/* ===== CUSTOM FABRIC RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    .cf-hero__bg {
        min-height: 260px;
    }

    .cf-hero__inner {
        padding: 36px 0;
    }

    .cf-hero__title {
        font-size: 22px;
    }

    .cf-hero__text {
        font-size: 14px;
    }

    .cf-stats {
        padding: 28px 0;
    }

    .cf-stats__number {
        font-size: 20px;
    }

    .cf-stats__label {
        font-size: 13px;
    }

    .cf-select {
        padding: 36px 0;
    }

    .cf-select__title {
        font-size: 20px;
    }

    .cf-select__text {
        font-size: 14px;
    }

    .cf-select__images {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cf-feature__title {
        font-size: 15px;
        padding: 14px 14px 0;
    }

    .cf-feature__text {
        font-size: 13px;
        padding: 0 14px 18px;
    }

    .cf-stages {
        padding: 36px 0;
    }

    .cf-stages__title {
        font-size: 20px;
    }

    .cf-stages__subtitle {
        font-size: 14px;
    }

    .cf-stages__card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cf-stages__num {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .cf-stages__card-title {
        font-size: 16px;
    }

    .cf-stages__card-text {
        font-size: 13px;
    }

    .cf-order {
        padding: 36px 0;
    }

    .cf-order__title {
        font-size: 20px;
    }

    .cf-order__subtitle {
        font-size: 14px;
    }

    .cf-order__image {
        min-height: 200px;
    }

    .cf-order__form-wrap {
        padding: 20px 16px;
    }

    .cf-form__heading {
        font-size: 14px;
    }
}
