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

  :root {
    --bg:        #FAFAF8;
    --bg-card:   #F2EDE6;
    --ink:       #1C1C1A;
    --ink-2:     #6B6860;
    --ink-3:     #A8A59F;
    --accent:    #F26B22;
    --accent-dk: #C9540F;
    --border:    #E4DED5;
    --white:     #FFFFFF;
    --r:         12px;
    --r-sm:      8px;
  }

  html { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,248,.88); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 110px;
  }
  .logo { display: inline-flex; flex-direction: column; align-items: flex-start; text-decoration: none; flex-shrink: 0; gap: 4px; }
  .logo img { height: 48px; width: auto; display: block; }
  .logo-tagline { font-family: 'Noto Sans', 'Arial Black', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .22em; color: #F26B22; text-transform: uppercase; line-height: 1; white-space: nowrap; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14px; transition: color .2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--ink); }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .cart-btn {
    display: flex; align-items: center; gap: 7px;
    background: var(--ink); color: var(--white);
    border: none; border-radius: 100px; padding: 9px 18px;
    font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500;
    cursor: pointer; transition: background .2s;
  }
  .cart-btn:hover { background: #333; }
  .cart-count {
    background: var(--accent); color: var(--white);
    border-radius: 100px; font-size: 11px; font-weight: 500;
    padding: 1px 6px;
  }

  /* ── HERO ── */
  /* ── CAROUSEL ── */
  .hero {
    padding: 0;
    display: block;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .carousel {
    position: relative;
    width: 100%;
    height: 476px;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
  }
  .carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
  }
  .carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .carousel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    pointer-events: none;
  }
  .carousel-fixed-text {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.52) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
    display: flex; align-items: flex-end;
    padding: 48px 48px 56px;
    pointer-events: none; z-index: 5;
  }
  .carousel-fixed-text h1 {
    font-family: 'Noto Sans', 'Arial Black', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -.5px;
    color: #fff; margin: 0;
  }
  .carousel-fixed-text h1 em { font-style: normal; color: #F26B22; }
  .carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.4);
    color: #fff; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 10; backdrop-filter: blur(4px);
  }
  .carousel-btn:hover { background: rgba(255,255,255,.32); }
  .carousel-btn.prev { left: 20px; }
  .carousel-btn.next { right: 20px; }
  .carousel-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
  }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.45); border: none; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .carousel-dot.active { background: #fff; transform: scale(1.3); }

  /* ── FILTERS ── */
  .filters-bar {
    padding: 20px 40px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky; top: 110px; z-index: 90;
  }
  .filter-label { font-size: 12px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-right: 6px; }
  .pill {
    border: 1px solid var(--border); background: transparent; color: var(--ink-2);
    border-radius: 100px; padding: 7px 16px; font-size: 13px; font-family: 'Inter', sans-serif;
    cursor: pointer; transition: all .18s; white-space: nowrap;
  }
  .pill:hover { border-color: var(--ink); color: var(--ink); }
  .pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
  .filters-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
  .sort-select {
    border: 1px solid var(--border); background: transparent; color: var(--ink-2);
    border-radius: var(--r-sm); padding: 7px 12px; font-size: 13px; font-family: 'Inter', sans-serif;
    cursor: pointer; appearance: none; padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6860' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
  }

  /* ── SUBFILTERS ── */
  .subfilters-bar {
    padding: 10px 40px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky; top: 166px; z-index: 80;
  }
  .subfilters-bar.hidden { display: none; }
  .sublabel { font-size: 11px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-right: 4px; }
  .subpill {
    border: 1px solid var(--border); background: transparent; color: var(--ink-2);
    border-radius: 100px; padding: 5px 14px; font-size: 12px; font-family: 'Inter', sans-serif;
    cursor: pointer; transition: all .18s; white-space: nowrap;
  }
  .subpill:hover { border-color: var(--accent); color: var(--accent); }
  .subpill.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

  /* ── PROMO BAR ── */
  .promo-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 40px;
    background: #EDE5D8;
    border-top: 1px solid #D8CEBF;
    border-bottom: 1px solid #D8CEBF;
    gap: 16px;
  }
  .promo-bar-text {
    font-family: 'Noto Sans', 'Arial Black', sans-serif;
    font-size: 16px; font-weight: 900;
    color: #A8A59F; letter-spacing: -.01em;
  }
  .promo-bar-text span { color: #A8A59F; }
  .btn-constructor {
    background: #F26B22; color: #fff;
    border: none; border-radius: 100px; padding: 10px 24px;
    font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500;
    cursor: pointer; white-space: nowrap; flex-shrink: 0;
    transition: background .2s;
  }
  .btn-constructor:hover { background: #C9540F; }

  /* ── GRID ── */
  .catalog-wrap { padding: 32px 40px 80px; }
  .section-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 20px; }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  /* ── CARD ── */
  .card {
    background: var(--bg-card);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
    position: relative;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
  .card-img {
    position: relative; overflow: hidden;
    height: 240px; background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
  }
  .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
  .card:hover .card-img img { transform: scale(1.04); }

  .card-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--white); color: var(--ink); font-size: 11px; font-weight: 500;
    border-radius: 100px; padding: 4px 10px; letter-spacing: .04em;
  }
  .card-badge.new { background: var(--accent); color: var(--white); }

  .card-actions {
    position: absolute; bottom: 14px; right: 14px;
    display: flex; gap: 8px;
    opacity: 0; transform: translateY(6px);
    transition: opacity .25s, transform .25s;
  }
  .card:hover .card-actions { opacity: 1; transform: translateY(0); }
  .btn-configure {
    background: var(--ink); color: var(--white);
    border: none; border-radius: 100px; padding: 9px 16px;
    font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 500;
    cursor: pointer; transition: background .2s; white-space: nowrap;
  }
  .btn-configure:hover { background: var(--accent); }
  .btn-fav {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.9); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: background .2s;
  }
  .btn-fav:hover { background: var(--white); }
  .btn-fav.liked { color: #E24B4A; }

  .card-body { padding: 18px 18px 20px; }
  .card-category { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
  .card-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; line-height: 1.25; margin-bottom: 6px; }
  .card-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-bottom: 16px; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; }
  .card-price { font-size: 17px; font-weight: 500; letter-spacing: -.3px; }
  .card-price span { font-size: 13px; font-weight: 400; color: var(--ink-2); }
  .card-modules { font-size: 12px; color: var(--ink-3); }

  /* ── PLACEHOLDER IMG (SVG) ── */
  .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

  /* ── LOAD MORE ── */
  .load-more-wrap { text-align: center; margin-top: 48px; }
  .btn-load {
    border: 1.5px solid var(--border); background: transparent; color: var(--ink-2);
    border-radius: 100px; padding: 13px 36px; font-size: 14px; font-family: 'Inter', sans-serif;
    cursor: pointer; transition: all .2s;
  }
  .btn-load:hover { border-color: var(--ink); color: var(--ink); }

  /* ── EMPTY ── */
  .empty { text-align: center; padding: 80px 20px; color: var(--ink-3); }
  .empty p { font-size: 15px; margin-top: 8px; }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .carousel { height: 300px; }
    .filters-bar { padding: 14px 20px; }
    .catalog-wrap { padding: 24px 20px 60px; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
  }
