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

  :root {
    --lavender:     #c8b4dc;
    --lavender-light: #ede4f5;
    --lavender-soft:  #f5f0fb;
    --blue-gray:    #607899;
    --blue-light:   #dce6f5;
    --blue-soft:    #edf2fb;
    --teal:         #2d6b5a;
    --teal-dark:    #1f4f41;
    --teal-light:   #e0f0eb;
    --text-dark:    #1a1a2e;
    --text-mid:     #3d4462;
    --text-light:   #6b7a99;
    --white:        #ffffff;
    --cream:        #faf8f5;
    --shadow-sm:    0 2px 12px rgba(96,120,153,.10);
    --shadow-md:    0 6px 30px rgba(96,120,153,.15);
    --shadow-lg:    0 16px 60px rgba(96,120,153,.20);
    --radius:       16px;
    --radius-lg:    24px;
    --transition:   0.35s cubic-bezier(.4,0,.2,1);
  }

  html { scroll-behavior: smooth; }
  body { font-family: "Gabriela", sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--lavender-soft); }
  ::-webkit-scrollbar-thumb { background: var(--lavender); border-radius: 3px; }

  /* ─── UTILS ─── */
  .container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-title {
    font-family: "Gabriela", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -.01em;
    line-height: 1.15;
  }
  .section-subtitle {
    font-size: .95rem;
    color: var(--text-light);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--teal);
    color: var(--white);
  }
  .tag.order { background: var(--blue-gray); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Gabriela", sans-serif;
    font-weight: 700; font-size: .85rem;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 50px;
    border: none; cursor: pointer; text-decoration: none;
    transition: var(--transition);
  }
  .btn-primary { background: var(--teal); color: var(--white); }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,107,90,.35); }
  .btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
  .btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
  .btn-ghost { background: rgba(255,255,255,.15); color: var(--white); border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
  .btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

  /* ─── FADE-IN ANIMATION ─── */
  .fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: .1s; }
  .fade-in-delay-2 { transition-delay: .2s; }
  .fade-in-delay-3 { transition-delay: .3s; }
  .fade-in-delay-4 { transition-delay: .4s; }

  /* ─── HEADER ─── */
  .site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,240,251,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,180,220,.3);
    transition: box-shadow var(--transition);
  }
  .site-header.scrolled { box-shadow: var(--shadow-md); }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 20px;
  }
  .logo {
    font-family: "Gabriela", sans-serif;
    font-size: 1.6rem; color: var(--text-dark);
    text-decoration: none; flex-shrink: 0;
    transition: color var(--transition);
  }
  .logo span { color: var(--teal); }
  .logo:hover { color: var(--teal); }

  /* ─── NAV ─── */
  .main-nav { display: flex; align-items: center; gap: 4px; }
  .main-nav a {
    font-size: .8rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-mid);
    text-decoration: none; padding: 8px 14px; border-radius: 8px;
    transition: var(--transition);
    position: relative;
  }
  .main-nav a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px; background: var(--teal); border-radius: 2px;
    transition: width var(--transition);
  }
  .main-nav a:hover { color: var(--teal); background: var(--teal-light); }
  .main-nav a:hover::after { width: 60%; }
  .main-nav a.active { color: var(--teal); }

  /* ─── DROPDOWN ─── */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
  .nav-dropdown > a .nav-chevron {
    width: 12px; height: 12px; transition: transform var(--transition);
    flex-shrink: 0;
  }
  .nav-dropdown:hover > a .nav-chevron { transform: rotate(180deg); }
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(4px);
    /* 12px сверху — невидимый «мост», мышь не выпадает из hover-зоны */
    padding: 12px 10px 10px;
    background: transparent;
    min-width: 200px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 200;
  }
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* белый блок с тенью внутри — отдельный элемент */
  .dropdown-menu-inner {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(96,120,153,.18);
    border: 1px solid rgba(200,180,220,.3);
    padding: 8px;
    position: relative;
  }
  /* визуальная стрелка */
  .dropdown-menu-inner::before {
    content: '';
    position: absolute; top: -5px; left: 50%;
    width: 10px; height: 10px;
    background: var(--white);
    border-left: 1px solid rgba(200,180,220,.3);
    border-top: 1px solid rgba(200,180,220,.3);
    transform: translateX(-50%) rotate(45deg);
    pointer-events: none;
  }
  .dropdown-menu-inner a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 9px;
    font-size: .8rem; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--text-mid);
    text-decoration: none; transition: var(--transition);
    white-space: nowrap;
  }
  .dropdown-menu-inner a .dm-icon {
    width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
  }
  .dropdown-menu-inner a .dm-icon svg { display: block; flex-shrink: 0; }
  .dropdown-menu-inner a:hover { background: var(--teal-light); color: var(--teal); }
  .dropdown-menu-inner a:hover .dm-icon { background: rgba(45,107,90,.12) !important; color: var(--teal); }
  .dm-c1 .dm-icon { background: #f0e6fa; }
  .dm-c2 .dm-icon { background: #e4eef8; }
  .dm-c3 .dm-icon { background: #dff0ea; }
  .dm-c4 .dm-icon { background: #faeee0; }
  .dm-c5 .dm-icon { background: #fde8ef; }
  .dm-c6 .dm-icon { background: #e8f4e4; }

  .header-right { display: flex; align-items: center; gap: 10px; }

  /* ─── SOCIAL ICONS ─── */
  .social-icons { display: flex; gap: 6px; align-items: center; }
  .social-icons a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1.5px solid rgba(200,180,220,.5);
    color: var(--text-mid);
    text-decoration: none; transition: var(--transition); flex-shrink: 0;
  }
  .social-icons a svg { width: 18px; height: 18px; display: block; }
  .social-icons a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }

  .header-fav {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--lavender-light); border: none; cursor: pointer;
    transition: var(--transition); flex-shrink: 0;
  }
  .header-fav svg { width: 18px; height: 18px; }
  .header-fav:hover { background: var(--lavender); transform: scale(1.1); }

  /* ─── SEARCH ─── */
  .search-wrap {
    position: relative; display: flex; align-items: center;
    height: 38px; flex-shrink: 0;
  }
  .btn-search {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--teal); color: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0; z-index: 2; position: relative;
  }
  .btn-search svg { width: 17px; height: 17px; }
  .btn-search:hover { background: var(--teal-dark); transform: scale(1.05); }
  .search-field {
    /* кнопка — правый якорь, поле растёт влево */
    position: absolute; right: 0; top: 0;
    height: 38px; width: 0; overflow: hidden;
    background: var(--white);
    
    border-radius: 50px;
    display: flex; align-items: center;
    transition: width .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease, border-color .4s ease;
    box-shadow: none;
  }
  .search-field.open {
    width: 240px;
    border-color: var(--lavender);
    box-shadow: 0 4px 20px rgba(200,180,220,.25);
  }
  .search-field input {
    border: none; outline: none; background: transparent;
    font-family: "Gabriela", sans-serif;
    font-size: .85rem; color: var(--text-dark);
    padding: 0 46px 0 18px;
    width: 100%; height: 38px;
    transition: opacity .3s ease .1s;
    opacity: 0;
    -webkit-appearance: none; appearance: none;
  }
  .search-field.open input { opacity: 1; }
  .search-field input::placeholder { color: var(--text-light); }
  .search-clear {
    position: absolute; right: 10px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--lavender-light); border: none; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    color: var(--text-mid); transition: var(--transition);
  }
  .search-clear svg { width: 10px; height: 10px; }
  .search-field.open .search-clear { display: flex; }
  .search-clear:hover { background: var(--lavender); }

  .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--blue-soft) 100%);
    position: relative; overflow: hidden;
    padding: 80px 0 60px;
  }
  .hero::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,180,220,.35) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220,230,245,.5) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 700; letter-spacing: .15em;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 20px;
  }
  .hero-kicker::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--teal);
  }
  .hero-title {
    font-family: "Gabriela", sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500; line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  .hero-title em { font-style: italic; color: var(--blue-gray); }
  .hero-desc { font-size: 1rem; color: #000; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(200,180,220,.4);
  }
  .hero-stat-value {
    font-family: "Gabriela", sans-serif;
    font-size: 2rem; font-weight: 600; color: var(--teal); line-height: 1;
  }
  .hero-stat-icon {
    width: 34px; height: 28px;
    display: block;
    color: var(--teal);
  }
  .hero-stat-icon .thread { stroke: var(--lavender); }
  .hero-stat-icon .soft { fill: var(--blue-soft); }
  .hero-stat-label { font-size: .78rem; color: var(--text-light); margin-top: 4px; }

  .hero-visual { position: relative; }
  .hero-img-wrap {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--blue-gray) 100%);
  }
  .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--white); border-radius: var(--radius);
    padding: 14px 20px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-badge-icon { font-size: 1.6rem; }
  .hero-badge-text { font-size: .78rem; color: var(--text-light); }
  .hero-badge-title { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
  .hero-float {
    position: absolute; top: -20px; right: -20px;
    background: var(--lavender); border-radius: var(--radius);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    font-family: "Gabriela", sans-serif;
    font-size: 1.1rem; font-weight: 500; color: var(--text-dark);
    text-align: center;
  }
  .hero-float small { display: block; font-family: "Gabriela", sans-serif; font-size: .7rem; color: var(--text-light); margin-top: 2px; }

  /* ─── CATEGORIES ─── */
  .categories { background: var(--white); }
  .cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .cat-card {
    border-radius: var(--radius); overflow: hidden;
    position: relative; aspect-ratio: 3/4;
    text-decoration: none; display: block;
    background: linear-gradient(135deg, var(--lavender-soft), var(--blue-soft));
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    min-width: 0;
  }
  .cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .cat-card-bg {
    position: absolute; inset: 0;
    background: var(--lavender-soft);
    transition: transform var(--transition);
  }
  .cat-card:hover .cat-card-bg { transform: scale(1.05); }
  .cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(45,107,90,.85) 0%, transparent 50%);
  }
  .cat-card-icon {
    position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
    width: 86px; height: 86px; border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(45,107,90,.10);
    color: var(--teal);
  }
  .cat-card-icon svg {
    width: 54px; height: 54px;
    display: block;
  }
  .cat-card-icon .soft { fill: var(--cream); }
  .cat-card-icon .accent { fill: var(--lavender-light); }
  .cat-card-icon .blue { fill: var(--blue-soft); }
  .cat-card-icon .thread { stroke: var(--lavender); }
  .cat-card-icon .teal-fill { fill: var(--teal); }
  .cat-card:hover .cat-card-icon {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 14px 34px rgba(45,107,90,.18);
  }
  .cat-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    min-width: 0;
    overflow: hidden;
  }
  .cat-card-name {
    font-family: "Gabriela", sans-serif;
    font-size: 1.6rem; font-weight: 600; color: var(--white);
    margin-bottom: 6px;
  }
  .cat-card-link {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.75); font-weight: 600;
    display: flex; align-items: center; gap: 6px;
  }
  .cat-card-link svg { transition: transform var(--transition); }
  .cat-card:hover .cat-card-link svg { transform: translateX(4px); }

  .cat-colors { display: flex; gap: 0; }
  .c1 .cat-card-bg { background: linear-gradient(135deg, #e8d8f4 0%, #d4b8e8 100%); }
  .c2 .cat-card-bg { background: linear-gradient(135deg, #d8e8f8 0%, #b8cee8 100%); }
  .c3 .cat-card-bg { background: linear-gradient(135deg, #d8f4ec 0%, #b8e0d0 100%); }
  .c4 .cat-card-bg { background: linear-gradient(135deg, #f4e8d8 0%, #e8d0b8 100%); }

  /* ─── BESTSELLERS ─── */
  .bestsellers { background: var(--lavender-soft); }
  .bs-header { text-align: center; margin-bottom: 50px; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative;
    display: flex; flex-direction: column;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .product-img {
    aspect-ratio: 1; overflow: hidden; position: relative;
    background: var(--blue-soft);
  }
  .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition); }
  .product-card:hover .product-img img { transform: scale(1.07); }
  .product-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
    color: var(--white); background: var(--teal);
  }
  .product-badge.order { background: var(--blue-gray); }
  .product-fav {
    position: absolute; top: 12px; right: 12px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--white); border: none; cursor: pointer;
    font-size: .95rem; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    opacity: 0;
  }
  .product-card:hover .product-fav { opacity: 1; }
  .product-fav:hover { background: var(--lavender); }
  .product-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-family: "Gabriela", sans-serif;
    font-size: 1.1rem; font-weight: 500; color: var(--text-dark);
    margin-bottom: 8px; line-height: 1.3; flex: 1;
  }
  .product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
  .product-price { font-size: 1.15rem; font-weight: 700; color: var(--teal); }
  .product-btn {
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--text-light);
    border: 1.5px solid rgba(100,120,150,.25);
    padding: 6px 14px; border-radius: 20px;
    background: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: var(--transition);
  }
  .product-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
  .products-carousel-controls { display: none; }

  /* ─── WHY US ─── */
  .why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-features { display: flex; flex-direction: column; gap: 28px; }
  .why-feature {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 10px; border-radius: var(--radius);
    transition: var(--transition); border: 1.5px solid transparent;
  }
  .why-feature:hover { background: var(--lavender-soft); border-color: rgba(200,180,220,.4); transform: translateX(6px); }
  .why-feature-icon {
    width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--lavender-light), var(--blue-soft));
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    box-shadow: 0 10px 24px rgba(45,107,90,.08);
  }
  .why-feature-icon svg {
    width: 42px; height: 42px;
    display: block;
  }
  .why-feature-icon .soft { fill: var(--cream); }
  .why-feature-icon .accent { fill: var(--lavender); }
  .why-feature-icon .blue { fill: var(--blue-soft); }
  .why-feature-icon .thread { stroke: var(--lavender); }
  .why-feature-icon .teal-fill { fill: var(--teal); }
  .why-feature:hover .why-feature-icon {
    background: var(--white);
    box-shadow: 0 14px 30px rgba(45,107,90,.14);
  }
  .why-feature-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
  .why-feature-desc { font-size: .9rem; color: #000; line-height: 1.6; }
  .why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-img-big { grid-column: 1 / -1; }
  .why-img {
    border-radius: var(--radius); overflow: hidden;
    background: var(--lavender-soft);
    box-shadow: var(--shadow-sm); transition: var(--transition);
  }
  .why-img-fallback::before {
    content: '';
    display: block;
    height: 260px;
  }
  .why-img-big.why-img-fallback::before { height: 280px; }
  .why-img:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .why-img img { width: 100%; display: block; object-fit: cover; }
  .why-img-big img { height: 280px; object-fit: cover; width: 100%; }
  .why-img img { height: 260px; }
  .why-img-label {
    padding: 12px 16px;
    font-family: "Gabriela", sans-serif;
    font-size: .95rem; font-weight: 500; color: var(--text-dark);
    display: flex; align-items: center; justify-content: space-between;
  }
  .why-img-price { font-weight: 700; color: var(--teal); font-family: "Gabriela", sans-serif; font-size: .9rem; }
  .why-cta { margin-top: 36px; }

  /* ─── BLOG ─── */
  .blog { background: var(--blue-soft); }
  .blog-header { text-align: center; margin-bottom: 50px; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .blog-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); text-decoration: none; display: flex; flex-direction: column;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--lavender-soft); }
  .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); display: block; }
  .blog-card:hover .blog-card-img img { transform: scale(1.06); }
  .blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .blog-card-date { font-size: .78rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
  .blog-card-title {
    font-family: "Gabriela", sans-serif;
    font-size: 1.2rem; font-weight: 500; color: var(--text-dark);
    line-height: 1.35; margin-bottom: 10px; flex: 1;
  }
  .blog-card-desc { font-size: .85rem; color: #000; line-height: 1.6; margin-bottom: 16px; }
  .blog-card-link {
    font-size: .78rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--teal);
    display: flex; align-items: center; gap: 6px;
    transition: gap var(--transition);
  }
  .blog-card:hover .blog-card-link { gap: 10px; }
  .blog-carousel-controls { display: none; }

  /* ─── ABOUT ─── */
  .about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-img-wrap {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--blue-gray) 100%);
  }
  .about-img-wrap img { width: 100%; display: block; object-fit: cover; height: 420px; }
  .about-decoration {
    position: absolute; bottom: -16px; right: -16px;
    width: 120px; height: 120px; border-radius: var(--radius);
    background: var(--lavender); z-index: -1;
  }
  .about-label {
    font-size: .78rem; font-weight: 700; letter-spacing: .15em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .about-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--teal); }
  .about-title { font-family: "Gabriela", sans-serif; font-size: 2.4rem; font-weight: 500; margin-bottom: 24px; line-height: 1.2; }
  .about-desc { font-size: .95rem; color: #000; line-height: 1.8; margin-bottom: 32px; }
  .about-cta { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ─── INFO STRIP ─── */
  .info-strip { background: var(--lavender-soft); border-top: 1px solid rgba(200,180,220,.4); border-bottom: 1px solid rgba(200,180,220,.4); padding: 48px 0; scroll-margin-top: 88px; }
  .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .info-item { display: flex; gap: 20px; align-items: flex-start; }
  .info-icon {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--teal);
  }
  .info-icon svg {
    width: 34px; height: 34px;
    display: block;
  }
  .info-icon .soft { fill: var(--cream); }
  .info-icon .accent { fill: var(--lavender-light); }
  .info-icon .blue { fill: var(--blue-soft); }
  .info-icon .thread { stroke: var(--lavender); }
  .info-icon .teal-fill { fill: var(--teal); }
  .info-item:hover .info-icon {
    box-shadow: 0 12px 28px rgba(45,107,90,.14);
  }
  .info-item-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
  .info-item-desc { font-size: .87rem; color: #000; line-height: 1.65; }

  /* ─── FOOTER ─── */
  .site-footer { background: var(--text-dark); color: var(--white); padding: 60px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand .logo { color: var(--white); margin-bottom: 14px; display: block; }
  .footer-brand .logo span { color: var(--lavender); }
  .footer-brand-desc { font-size: .87rem; line-height: 1.65; color: var(--white); margin-bottom: 24px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.10); border: 1px solid rgba(200,180,220,.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); text-decoration: none;
    transition: var(--transition);
  }
  .footer-social a svg { width: 22px; height: 22px; display: block; }
  .footer-social a:hover { background: var(--lavender); border-color: var(--lavender); color: var(--text-dark); transform: translateY(-2px); }
  .footer-col-title { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: var(--white); text-decoration: none; font-size: .88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
  .footer-links a:hover { color: var(--lavender); padding-left: 4px; }
  .footer-contact-item { font-size: .88rem; color: var(--white); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .footer-contact-item a { color: var(--white); text-decoration: none; }
  .footer-contact-item a:hover { color: var(--lavender); }
  .footer-contact-icon {
    width: 22px; height: 22px;
    flex: 0 0 22px;
    color: var(--lavender);
    margin-top: 1px;
  }
  .footer-contact-icon svg { width: 100%; height: 100%; display: block; }
  .footer-contact-icon .soft { fill: rgba(255,255,255,.12); }
  .footer-contact-icon .thread { stroke: var(--blue-light); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
    font-size: .8rem; color: var(--white);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-disclaimer { font-size: .8rem; color: var(--white); }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 200;
    background: #f5f0fb;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 24px;
    padding: 80px 24px 120px;
    transform: translateX(100%); transition: transform var(--transition);
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav > a {
    font-family: "Gabriela", sans-serif;
    font-size: 2rem; font-weight: 500;
    color: var(--text-dark); text-decoration: none;
    transition: color var(--transition);
  }
  .mobile-nav > a::after { display: none !important; }
  .mobile-nav > a:hover { color: var(--teal); background: none; }
  .mobile-nav-close {
    position: absolute; top: 24px; right: 24px;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--lavender-light); border: none; cursor: pointer;
    font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  }

  /* ─── MOBILE DROPDOWN ─── */
  .mobile-nav-item { width: 100%; text-align: center; }
  .mobile-nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: "Gabriela", sans-serif;
    font-size: 2rem; font-weight: 500;
    color: var(--text-dark); text-decoration: none;
    background: none; border: none; cursor: pointer;
    transition: color var(--transition); padding: 0;
  }
  .mobile-nav-toggle:hover { color: var(--teal); }
  .mobile-nav-toggle .nav-chevron {
    width: 16px; height: 16px; transition: transform var(--transition);
  }
  .mobile-nav-toggle.expanded .nav-chevron { transform: rotate(180deg); }
  .mobile-submenu {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; padding: 0 24px;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .mobile-submenu.open { max-height: 300px; padding: 14px 24px 4px; }
  .mobile-submenu a {
    display: flex; align-items: center; gap: 8px;
    font-family: "Gabriela", sans-serif;
    font-size: .85rem; font-weight: 600; letter-spacing: .05em;
    text-transform: none; color: var(--text-mid);
    background: var(--white); border-radius: 12px;
    padding: 10px 12px; text-decoration: none;
    transition: var(--transition); border: 1px solid rgba(200,180,220,.3);
  }
  .mobile-submenu a:hover { background: var(--teal-light); color: var(--teal); border-color: var(--teal-light); }
  .mobile-submenu a .dm-icon { font-size: 1.1rem; width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mobile-submenu a .dm-icon svg { display: block; }

  /* ─── MOBILE NAV SOCIAL ─── */
  .mobile-nav-social {
    position: absolute; bottom: 36px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 10px;
  }
  .mobile-nav-social a {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1.5px solid rgba(200,180,220,.5);
    color: var(--text-mid); text-decoration: none;
    font-size: inherit;
    transition: var(--transition);
  }
  .mobile-nav-social a svg { width: 20px; height: 20px; display: block; }
  .mobile-nav-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1200px) {
    .main-nav a { padding: 7px 10px; font-size: .75rem; letter-spacing: .07em; }
    .header-inner { gap: 14px; }
  }
  @media (max-width: 1080px) {
    .main-nav a { padding: 7px 8px; font-size: .72rem; }
    .social-icons a { width: 34px; height: 34px; }
    .social-icons a svg { width: 15px; height: 15px; }
    .social-icons { gap: 4px; }
    .header-inner { gap: 10px; }
  }
  @media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 980px) {
    .main-nav { display: none; }
    .social-icons { display: none; }
    .burger { display: flex; }
    .header-inner { gap: 12px; }
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-float { display: none; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .info-grid { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 640px) {
    .why-feature {
      gap: 14px;
      padding: 14px 0;
      align-items: flex-start;
    }
    .why-feature-icon {
      width: 58px; height: 58px;
      border-radius: 16px;
    }
    .why-feature-icon svg { width: 38px; height: 38px; }
    .section { padding: 56px 0; }
    .hero-title { font-size: 2.05rem; line-height: 1.12; }
    .cat-header { align-items: flex-start; gap: 14px; }
    .cat-header .section-title { font-size: 1.75rem; line-height: 1.16; }
    .cat-header .btn { padding: 12px 18px; font-size: .7rem; flex-shrink: 0; }
    .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .cat-card-icon { width: 76px; height: 76px; top: 22px; }
    .cat-card-icon svg { width: 46px; height: 46px; }
    .cat-card-body { padding: 20px 10px 18px; }
    .cat-card-name { font-size: 1rem; line-height: 1.08; white-space: nowrap; }
    .cat-card-link { font-size: .62rem; }
    .products-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 24px;
      margin: 0 -24px;
      padding: 4px 24px 18px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .products-grid::-webkit-scrollbar { display: none; }
    .product-card {
      flex: 0 0 min(78vw, 230px);
      scroll-snap-align: start;
      min-width: 0;
    }
    .product-card:hover { transform: none; }
    .product-fav { opacity: 1; }
    .product-body { padding: 16px 16px 18px; }
    .product-name { font-size: 1rem; }
    .product-footer { gap: 10px; }
    .product-btn { padding: 6px 12px; font-size: .64rem; }
    .products-carousel-controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 6px;
    }
    .products-carousel-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--teal);
      background: transparent;
      color: var(--teal);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .products-carousel-btn svg { width: 18px; height: 18px; display: block; }
    .products-carousel-btn:active { background: var(--teal); color: var(--white); }
    .blog-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 24px;
      margin: 0 -24px;
      padding: 4px 24px 18px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar { display: none; }
    .blog-card {
      flex: 0 0 min(80vw, 250px);
      scroll-snap-align: start;
      min-width: 0;
    }
    .blog-card:hover { transform: none; }
    .blog-card-body { padding: 18px; }
    .blog-card-title { font-size: 1rem; }
    .blog-card-desc { font-size: .8rem; line-height: 1.55; }
    .blog-card-link { font-size: .68rem; }
    .blog-carousel-controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 6px;
    }
    .blog-carousel-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--teal);
      background: transparent;
      color: var(--teal);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .blog-carousel-btn svg { width: 18px; height: 18px; display: block; }
    .blog-carousel-btn:active { background: var(--teal); color: var(--white); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
    .footer-brand,
    .footer-grid > div:nth-child(4),
    .footer-bottom { grid-column: 1 / -1; }
    .footer-social a { width: 42px; height: 42px; }
    .footer-social a svg { width: 20px; height: 20px; }
    .hero-stats { gap: 20px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .why-visual { grid-template-columns: 1fr; }
    .why-img-big { grid-column: 1; }
    .header-inner { gap: 12px; }
    /* поле поиска уже на мобильном */
    .search-field.open { width: 180px; }
  }
  @media (max-width: 400px) {
    .logo { font-size: 1.3rem; }
    .hero-title { font-size: 1.88rem; }
    .cat-header { display: block; }
    .cat-header .btn { margin-top: 16px; }
    .cat-grid { gap: 12px; }
    .cat-card-name { font-size: .96rem; }
    .footer-grid { gap: 30px 16px; }
    .footer-links a { font-size: .78rem; }
    .footer-col-title { font-size: .72rem; }
    .search-field.open { width: 150px; }

  }