/* ── Disable text selection ── */
    * {
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }

    input,
    textarea {
      -webkit-user-select: text;
      user-select: text;
    }

    :root {
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark: #a07830;
      --dark: #0a0c12;
      --dark-2: #0e1018;
      --dark-3: #141720;
      --dark-4: #1a1e2a;
      --text-primary: #f0e8d8;
      --text-secondary: #b8a990;
      --text-muted: #7a6f5d;
      --border: rgba(201, 168, 76, 0.2);
      --radius: 16px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: "Inter", sans-serif;
      background: var(--dark);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .catalogue-wrap {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 24px;
      flex: 1;
    }

    /* ── PRODUCT GRID ── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 24px;
      margin-bottom: 64px;
    }

    .product-item {
      background: var(--dark-3);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
    }

    .product-item:hover {
      border-color: rgba(201, 168, 76, 0.45);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.08);
      transform: translateY(-4px);
    }

    .product-item-img {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .product-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-item:hover .product-item-img img {
      transform: scale(1.06);
    }

    .product-item-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      border-radius: 50px;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 4;
    }

    .badge-blue {
      background: rgba(59, 130, 246, 0.85);
      color: #fff;
    }

    .badge-gold {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--dark);
    }

    .badge-silver {
      background: rgba(148, 163, 184, 0.9);
      color: var(--dark);
    }

    .product-item-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0;
      z-index: 3;
    }

    .product-item-code {
      display: block;
      width: 100%;
      text-align: center;
      background: linear-gradient(to top, rgba(10, 12, 18, 0.95) 0%, rgba(10, 12, 18, 0.7) 60%, transparent 100%);
      color: var(--gold-light);
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 24px 8px 10px;
      margin: 0;
    }

    /* Hide title, description, and footer on all screens */
    .product-item-title,
    .product-item-desc,
    .product-item-footer {
      display: none !important;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .catalogue-wrap {
        padding: 0 18px 24px;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .product-item-img {
        height: 200px;
      }

      .product-item-code {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 420px) {
      .catalogue-wrap {
        padding: 0 14px 24px;
      }

      .product-grid {
        gap: 10px;
      }

      .product-item-img {
        height: 170px;
      }

      .product-item-code {
        font-size: 0.74rem;
        padding: 20px 6px 6px;
      }
    }