    :root {
      --bg: #f3ede7;
      --paper: rgba(255, 250, 245, 0.86);
      --paper-strong: rgba(255, 252, 249, 0.94);
      --text: #2f241f;
      --muted: #6b5a52;
      --accent: #7b5744;
      --accent-dark: #5f4132;
      --line: rgba(96, 65, 50, 0.16);
      --shadow: 0 24px 70px rgba(47, 36, 31, 0.16);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 16px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: Georgia, "Times New Roman", serif;
      color: var(--text);
      min-height: 100vh;
      background:
        linear-gradient(rgba(37, 27, 22, 0.34), rgba(37, 27, 22, 0.24)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat fixed;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,244,232,0.14), transparent 22%);
      pointer-events: none;
      z-index: 0;
    }

    .page {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .hero-wrap {
      width: min(1240px, calc(100% - 32px));
      margin: 24px auto 0;
      padding: 0;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 0;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--paper);
      border: 1px solid rgba(255,255,255,0.35);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }

    .hero-content {
      padding: 56px 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(123, 87, 68, 0.10);
      border: 1px solid rgba(123, 87, 68, 0.14);
      color: var(--accent-dark);
      font-size: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 20px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(34px, 5vw, 60px);
      line-height: 1.02;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    .lead {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.7;
      color: var(--muted);
      max-width: 760px;
      margin: 0 0 14px;
    }

    .lead strong {
      color: var(--text);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .btn {
      min-height: 54px;
      padding: 14px 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      text-decoration: none;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: linear-gradient(180deg, #88614d 0%, #6b4a3b 100%);
      color: #fff;
      box-shadow: 0 14px 30px rgba(107, 74, 59, 0.30);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.86);
      color: var(--text);
      border: 1px solid var(--line);
    }

    .hero-side {
      position: relative;
      min-height: 100%;
      display: flex;
      align-items: stretch;
      background:
        linear-gradient(180deg, rgba(66,45,35,0.40), rgba(66,45,35,0.24)),
        url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?auto=format&fit=crop&w=1200&q=80') center center / cover no-repeat;
    }

    .hero-side::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(0,0,0,0.16));
    }

    .side-card {
      position: relative;
      z-index: 1;
      margin: auto 28px 28px;
      padding: 24px;
      border-radius: 20px;
      width: calc(100% - 56px);
      background: rgba(255, 250, 245, 0.82);
      border: 1px solid rgba(255,255,255,0.42);
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    }

    .side-card h2 {
      margin: 0 0 12px;
      font-size: 28px;
      line-height: 1.15;
    }

    .side-card p {
      margin: 0 0 12px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.65;
      color: var(--muted);
    }

    .side-meta {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 18px;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      font-size: 15px;
    }

    .side-meta span {
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(123, 87, 68, 0.08);
    }

    .gallery-section {
      width: min(1240px, calc(100% - 32px));
      margin: 26px auto 0;
      border-radius: var(--radius-xl);
      background: var(--paper-strong);
      border: 1px solid rgba(255,255,255,0.35);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    .gallery-section.is-hidden {
      display: none;
    }

	.is-hidden {
      display: none;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.1;
    }

    .section-head p {
      margin: 8px 0 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      font-size: 1.5rem;
      color: var(--muted);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: #fff;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

.product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: center;    /* центрує текст */
 }

    .product-title {
      margin: 0;
      font-size: 18px;
      line-height: 1.35;
    }

    .product-price {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--accent-dark);
    }

    .product-link {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: 12px;
      text-decoration: none;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      background: rgba(123, 87, 68, 0.10);
      color: var(--accent-dark);
      border: 1px solid rgba(123, 87, 68, 0.14);
    }

.grid-full {
  grid-column: 1 / -1; /* розтягнути на всю ширину grid */
}

.catalog-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #8b6a58, #6b4a3b);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.catalog-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.2);
}

    .footer {
      width: min(1240px, calc(100% - 32px));
      margin: 26px auto 24px;
      border-radius: var(--radius-xl);
      background: rgba(41, 29, 23, 0.88);
      color: rgba(255,255,255,0.92);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 24px;
      padding: 32px;
    }

    .footer h3, .footer h4 {
      margin: 0 0 14px;
      color: #fff;
    }

    .footer p, .footer a {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.7;
      color: rgba(255,255,255,0.82);
      text-decoration: none;
    }

    .footer a:hover { color: #fff; }

    .footer-list {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      padding: 16px 32px 24px;
      border-top: 1px solid rgba(255,255,255,0.10);
      font-family: Arial, Helvetica, sans-serif;
      color: rgba(255,255,255,0.68);
      font-size: 14px;
    }

    @media (max-width: 1100px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .hero-side {
        min-height: 360px;
      }

      .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      body {
        background-attachment: scroll;
      }

      .hero-wrap,
      .gallery-section,
      .footer {
        width: min(100% - 20px, 1240px);
      }

      .hero-content,
      .gallery-section,
      .footer-inner,
      .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-content {
        padding-top: 30px;
        padding-bottom: 30px;
      }

      .actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .side-card {
        width: calc(100% - 28px);
        margin: auto 14px 14px;
        padding: 18px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .products-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }
	
	