/* ── 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);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    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;
    }

    a {
      color: inherit;
      text-decoration: none;
    }


    @keyframes pulseGlow {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
      }

      50% {
        box-shadow: 0 4px 36px rgba(201, 168, 76, 0.55);
      }
    }

    /* ── CATALOGUE WRAPPER ── */
    .catalogue-wrap {
      width: 100%;
      flex: 1;
    }

    /* Custom Cover Styles deleted — catalogue.html now inherits the global hero section styles from style.css */
    }

    /* cover-right styles deleted — background-image covers the full section background */

    .cover-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
      top: -60px;
      right: -60px;
      pointer-events: none;
    }

    /* ── SECTIONS ── */
    .cat-products-section {
      padding: 80px 0;
      background: var(--dark-2);
    }

    .cat-why-section {
      padding: 60px 0 80px;
      background: var(--dark);
    }

    /* ── DIVIDER ── */
    .cat-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 40px 0 32px;
    }

    .cat-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border));
    }

    .cat-divider-line:last-child {
      background: linear-gradient(90deg, var(--border), transparent);
    }

    .cat-divider-icon {
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: 0.3em;
    }

    /* ── SECTION HEADER ── */
    .cat-section-header {
      margin-bottom: 28px;
    }

    .cat-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .cat-section-header h2 {
      font-family: "Playfair Display", serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* ── PRODUCT CARDS ── */


    .cat-product {
      background: linear-gradient(135deg, #141720 0%, #1a1e2a 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
    }

    .cat-product:hover {
      border-color: rgba(201, 168, 76, 0.45);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
      transform: translateY(-6px);
    }

    .cat-product::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .cat-product-img {
      position: relative;
      height: 160px;
      overflow: hidden;
    }

    .cat-product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .cat-product:hover .cat-product-img img {
      transform: scale(1.08);
    }

    .cat-product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 2;
    }

    .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);
    }

    .cat-product-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .cat-product-top {
      flex: 1;
    }

    .cat-product-icon {
      display: inline-block;
      font-size: 1.4rem;
      margin-bottom: 8px;
      margin-right: 6px;
      vertical-align: middle;
    }

    .cat-product-body h3 {
      display: inline-block;
      font-family: "Playfair Display", serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
      vertical-align: middle;
    }

    .cat-product-body>div>p {
      color: var(--text-secondary);
      font-size: 0.8rem;
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .cat-features {
      display: flex;
      flex-direction: column;
      gap: 6px;
      list-style: none;
      margin-bottom: 16px;
    }

    .cat-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: var(--text-secondary);
    }

    .feat-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .cat-product-footer {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }

    .cat-product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .avail-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .avail-value {
      font-size: 0.82rem;
      color: var(--gold);
      font-weight: 500;
      margin-top: 2px;
    }

    .explore-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold-light);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: var(--transition);
    }

    .explore-link:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .enquire-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--dark);
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      border: none;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      width: 100%;
      text-align: center;
    }

    .enquire-tag:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
      background: linear-gradient(135deg, #fff, var(--gold-light));
    }

    /* ── WHY US MINI ── */
    .cat-why {
      background: linear-gradient(135deg, #141720 0%, #1a1e2a 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      margin-top: 40px;
      margin-bottom: 64px;
    }

    .cat-pillars {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 28px;
    }

    .cat-pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      transition: var(--transition);
    }

    .cat-pillar:hover {
      background: rgba(201, 168, 76, 0.05);
      border-color: rgba(201, 168, 76, 0.15);
    }

    .pillar-emoji {
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cat-pillar strong {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      display: block;
      margin-bottom: 4px;
    }

    .cat-pillar p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ── CONTACT STRIP ── */
    .cat-contact {
      background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 20px;
      padding: 36px 40px;
      margin-top: 32px;
      margin-bottom: 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
    }

    .cat-contact h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: var(--text-secondary);
    }

    .contact-item-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(201, 168, 76, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .cat-qr-area {
      text-align: center;
    }

    .cat-qr-box {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px dashed rgba(201, 168, 76, 0.25);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.4;
      padding: 8px;
    }

    .cat-qr-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 6px;
    }

    /* Footer uses shared .footer styles from style.css */

    /* ── FLOATING DOWNLOAD ── */
    .float-download {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
    }

    .float-download button {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--dark);
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
      transition: var(--transition);
      animation: floatBounce 3s ease-in-out infinite;
    }

    .float-download button:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 12px 48px rgba(201, 168, 76, 0.6);
    }

    @keyframes floatBounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .float-download button:hover {
      animation: none;
    }

    /* ── PRINT DIALOG STYLES ── */
    .print-dialog-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
    }

    .print-dialog-overlay.show {
      display: flex;
    }

    .print-dialog {
      background: linear-gradient(145deg, #141720, #1a1e2a);
      border: 1px solid rgba(201, 168, 76, 0.25);
      border-radius: 24px;
      padding: 40px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
      animation: dialogPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes dialogPop {
      from {
        opacity: 0;
        transform: scale(0.85);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .dialog-icon {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .print-dialog h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      margin-bottom: 10px;
      color: var(--text-primary);
    }

    .print-dialog p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .print-steps {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 16px 20px;
      text-align: left;
      margin: 20px 0;
    }

    .print-steps ol {
      padding-left: 20px;
    }

    .print-steps li {
      font-size: 0.83rem;
      color: var(--text-secondary);
      margin-bottom: 6px;
      line-height: 1.5;
    }

    .print-steps li strong {
      color: var(--gold);
    }

    .dialog-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }

    .dialog-cancel {
      padding: 10px 24px;
      border-radius: 50px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-secondary);
      font-size: 0.88rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .dialog-cancel:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .dialog-print {
      padding: 12px 32px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--dark);
      font-size: 0.9rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .dialog-print:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — TABLET (max 900px)
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .cat-hero-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        padding: 60px 24px;
      }

      /* Custom cover-left tablet adjustments removed */

      .cat-products {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .cat-product:nth-child(1),
      .cat-product:nth-child(2),
      .cat-product:nth-child(3),
      .cat-product:nth-child(4) {
        grid-column: span 1;
      }

      .cat-product-img {
        height: 220px;
      }

      .cat-pillars {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — MOBILE (max 768px)
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── Cover / Hero Section ── */
      /* Custom cover responsive styles removed */

      .cover-badge {
        font-size: 0.62rem;
        padding: 4px 10px;
        margin-bottom: 12px;
      }

      .cover-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        margin-bottom: 6px;
      }

      .cover-sub {
        font-size: 0.85rem;
        margin-bottom: 12px;
      }

      .cover-tags {
        gap: 6px;
        margin-bottom: 14px;
        flex-wrap: wrap;
      }

      .cover-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
      }

      .cover-info {
        gap: 4px;
      }

      .cover-info span {
        font-size: 0.74rem;
      }

      /* ── Divider — tighter gap ── */
      .cat-divider {
        margin: 18px 0 14px;
      }

      .cat-divider-icon {
        font-size: 0.85rem;
      }

      /* ── Section header ── */
      .cat-section-header {
        margin-bottom: 16px;
      }

      .cat-section-header h2 {
        font-size: 1.3rem;
      }

      .cat-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 5px;
      }

      /* ── Product Cards ── */
      .cat-products {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .cat-product {
        border-radius: 16px;
      }

      .cat-product-img {
        height: 200px;
      }

      .cat-product-body {
        padding: 24px 20px;
      }

      .cat-product-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
      }

      .cat-product-body h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
      }

      .cat-product-body>div>p {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 16px;
      }

      .cat-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
      }

      .cat-features li {
        font-size: 0.77rem;
        gap: 5px;
      }

      .feat-dot {
        width: 5px;
        height: 5px;
      }

      /* ── Product footer buttons ── */
      .cat-product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 12px;
      }

      .enquire-tag {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        text-align: center;
        border-radius: 10px;
      }

      .avail-label {
        font-size: 0.68rem;
      }

      .avail-value {
        font-size: 0.8rem;
      }

      /* ── Why Us pillars ── */
      .cat-why {
        padding: 20px 16px;
        margin-top: 16px;
        border-radius: 14px;
        margin-bottom: 40px;
      }

      .cat-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 16px;
      }

      .cat-pillar {
        padding: 12px;
        gap: 8px;
        border-radius: 10px;
      }

      .pillar-emoji {
        font-size: 1.2rem;
      }

      .cat-pillar strong {
        font-size: 0.82rem;
        margin-bottom: 2px;
      }

      .cat-pillar p {
        font-size: 0.75rem;
      }

      /* ── Contact strip ── */
      .cat-contact {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        margin-top: 16px;
        gap: 14px;
        border-radius: 14px;
      }

      .cat-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
      }

      .contact-items {
        gap: 8px;
      }

      .contact-item {
        font-size: 0.8rem;
        gap: 8px;
      }

      .contact-item-icon {
        width: 26px;
        height: 26px;
        font-size: 0.82rem;
        border-radius: 6px;
      }

      .cat-qr-area {
        display: none;
      }

      /* Footer uses shared .footer styles from style.css */

      /* ── Floating Download ── */
      .float-download {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        z-index: 999;
      }

      .float-download button {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 0.88rem;
        border-radius: 12px;
        animation: none;
        box-shadow: 0 4px 24px rgba(201, 168, 76, 0.45);
      }

      /* ── Print dialog ── */
      .print-dialog {
        padding: 24px 18px;
        border-radius: 16px;
      }

      .dialog-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
      }

      .print-dialog h3 {
        font-size: 1.2rem;
      }

      .print-dialog p {
        font-size: 0.8rem;
      }

      .print-steps {
        padding: 10px 12px;
      }

      .print-steps li {
        font-size: 0.76rem;
        margin-bottom: 4px;
      }

      .dialog-btns {
        flex-direction: column;
        gap: 8px;
      }

      .dialog-cancel,
      .dialog-print {
        width: 100%;
        text-align: center;
        padding: 11px 16px;
        font-size: 0.86rem;
      }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — SMALL PHONE (max 420px)
    ══════════════════════════════════════════ */
    @media (max-width: 420px) {
      .cat-hero-container {
        padding: 30px 12px;
      }

      .cover-left {
        padding: 0;
      }

      .cover-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
      }

      .cat-stat-divider {
        display: block;
        width: 1px;
        height: 28px;
      }

      .cover-title {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
      }

      .cat-features {
        grid-template-columns: 1fr;
      }

      .cat-pillars {
        grid-template-columns: 1fr;
      }

      .cat-product-body {
        padding: 14px 12px 12px;
      }

      .cat-why {
        padding: 16px 12px;
        margin-bottom: 32px;
      }

      .cat-contact {
        padding: 16px 12px;
      }

      .float-download {
        bottom: 10px;
        right: 10px;
        left: 10px;
      }
    }

    /* ── PRINT MEDIA ── */
    @media print {
      body {
        background: #fff !important;
        color: #111 !important;
      }

      .navbar,
      .float-download,
      .print-dialog-overlay {
        display: none !important;
      }

      .catalogue-wrap {
        margin: 0;
        padding: 0;
      }

      .cat-cover,
      .cat-product,
      .cat-why,
      .cat-contact {
        background: #fff !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
      }

      .cat-cover-inner {
        grid-template-columns: 1fr;
      }

      .cover-right {
        display: none;
      }

      .cat-product {
        grid-template-columns: 160px 1fr;
      }

      .cat-product-img img {
        height: 160px;
      }

      * {
        color: #111 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
      }

      .cover-title span,
      .word {
        -webkit-text-fill-color: #111 !important;
      }

      .cat-eyebrow,
      .cover-badge,
      .enquire-tag,
      .cat-qr-box {
        color: #555 !important;
      }

      .gold-text,
      .cat-features li,
      .contact-item {
        color: #333 !important;
      }

      @page {
        size: A4;
        margin: 15mm;
      }
    }