/* ========================================
   07) CATALOGUE SECTION
======================================== */
        .catalogue-wrapper {
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 10px;
        }
        .catalogue-hero {
            position: relative;
            overflow: hidden;
            padding: 26px 24px;
            border: 1px solid rgba(248, 180, 44, 0.28);
            border-radius: 24px;
            background:
              radial-gradient(circle at top right, rgba(248,180,44,0.24), transparent 26%),
              radial-gradient(circle at bottom left, rgba(36,53,68,0.08), transparent 28%),
              linear-gradient(135deg, #fffaf1 0%, #fff6e7 50%, #ffffff 100%);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
        }
        .catalogue-hero:before,
        .catalogue-hero:after {
            content: "";
            position: absolute;
            border-radius: 999px;
            pointer-events: none;
        }
        .catalogue-hero:before {
            width: 150px;
            height: 150px;
            top: -42px;
            right: -38px;
            background: rgba(248, 180, 44, 0.14);
        }
        .catalogue-hero:after {
            width: 118px;
            height: 118px;
            left: -32px;
            bottom: -38px;
            background: rgba(36, 53, 68, 0.06);
        }
        .catalogue-grid {
            position: relative;
            z-index: 1;
            display: block;
        }
        .catalogue-copy {
            min-width: 0;
            max-width: 620px;
            padding: 10px 0;
        }
        .catalogue-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(36,53,68,0.08);
            color: #8e6004;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .catalogue-title {
            margin: 14px 0 10px;
            color: #243544;
            font-size: clamp(30px, 5vw, 46px);
            line-height: 0.98;
            letter-spacing: -0.03em;
        }

        .catalogue-subtitle {
            max-width: 520px;
            margin: 0;
            color: #5f6773;
            font-size: 15px;
            line-height: 1.75;
        }
        .catalogue-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }
        .catalogue-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 18px;
            border-radius: 999px;
            background: #F8B42C;
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 12px 24px rgba(248, 180, 44, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .catalogue-btn:hover {
            background: #e9a521;
            transform: translateY(-1px);
            box-shadow: 0 14px 26px rgba(248, 180, 44, 0.28);
        }
        .catalogue-chip {
            display: inline-flex;
            align-items: center;
            min-height: 48px;
            padding: 0 16px;
            border-radius: 999px;
            border: 1px solid #f1dfb5;
            background: rgba(255,255,255,0.82);
            color: #5f6773;
            font-size: 14px;
            font-weight: 500;
        }
        .catalogue-preview-card,
        .catalogue-info-card {
            position: relative;
            overflow: hidden;
            border: 1px solid #f1dfb5;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
            box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
        }
        .catalogue-preview-card {
            padding: 16px;
        }
        .catalogue-browser {
            overflow: hidden;
            border-radius: 18px;
            background: #fff;
            box-shadow: inset 0 0 0 1px rgba(241, 223, 181, 0.7);
        }
        .catalogue-browser-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 14px;
            background: linear-gradient(180deg, rgba(248,180,44,0.14) 0%, rgba(248,180,44,0.03) 100%);
            border-bottom: 1px solid #f4e4bd;
        }
        .catalogue-browser-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(36, 53, 68, 0.18);
        }
        .catalogue-browser-body {
            position: relative;
            min-height: 360px;
            padding: 22px;
            background:
              radial-gradient(circle at top right, rgba(248,180,44,0.16), transparent 28%),
              linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
        }
        .catalogue-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 11px;
            border-radius: 999px;
            background: rgba(36,53,68,0.08);
            color: #8e6004;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .catalogue-cover {
            margin-top: 16px;
            padding: 20px 18px;
            border-radius: 20px;
            background:
              linear-gradient(135deg, rgba(248,180,44,0.16) 0%, rgba(255,255,255,0) 48%),
              linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
            box-shadow: inset 0 0 0 1px rgba(241, 223, 181, 0.7);
        }
        .catalogue-cover img {
            width: 132px;
            max-width: 100%;
            height: auto;
            display: block;
        }
        .catalogue-cover-title {
            margin: 16px 0 8px;
            color: #243544;
            font-size: 32px;
            font-weight: 700;
            line-height: 0.98;
            letter-spacing: -0.03em;
        }
        .catalogue-cover-text {
            margin: 0;
            color: #5f6773;
            font-size: 14px;
            line-height: 1.7;
        }
        .catalogue-link-strip {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            padding: 12px 14px;
            border-radius: 16px;
            background: #fffaf1;
            box-shadow: inset 0 0 0 1px rgba(241, 223, 181, 0.75);
        }
        .catalogue-link-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: #27ae60;
            box-shadow: 0 0 0 6px rgba(39, 174, 96, 0.12);
            flex-shrink: 0;
        }
        .catalogue-link-text {
            min-width: 0;
            color: #243544;
            font-size: 13px;
            font-weight: 600;
            overflow-wrap: anywhere;
        }
        .catalogue-info-card {
            padding: 18px;
        }
        .catalogue-info-title {
            margin: 4px 0 12px;
            color: #243544;
            font-size: 18px;
            font-weight: 700;
        }
        .catalogue-info-list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .catalogue-info-item {
            padding: 12px 14px;
            border: 1px solid #f3e5c1;
            border-radius: 14px;
            background: linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
            color: #243544;
            font-size: 14px;
            line-height: 1.7;
        }
        .catalogue-gallery {
            margin-top: 18px;
        }
        .catalogue-page-card {
      overflow: hidden;
      max-width: 1180px;
      margin: 0 auto;
      padding: 20px;
      border: 1px solid #f1dfb5;
      border-radius: 24px;
      background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
      box-shadow: 0 18px 34px rgba(17, 24, 39, 0.07);
  }
        .catalogue-stage-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .catalogue-stage-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(36,53,68,0.08);
            color: #8e6004;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .catalogue-stage-count {
            color: #7c8590;
            font-size: 14px;
            font-weight: 600;
        }
        .catalogue-stage-media {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: min(84vh, 1180px);
      padding: 28px 72px;
      border-radius: 22px;
      background: linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
      box-shadow: inset 0 0 0 1px rgba(241, 223, 181, 0.75);
  }
        .catalogue-page-image {
      width: auto;
      max-width: 100%;
      max-height: min(80vh, 1080px);
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 14px 28px rgba(17, 24, 39, 0.10);
      image-rendering: auto;
  }
        .catalogue-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border: 1px solid rgba(36, 53, 68, 0.1);
            border-radius: 999px;
            background: rgba(255,255,255,0.94);
            color: #243544;
            font-size: 22px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .catalogue-slider-arrow:hover {
            background: #fff7e8;
        }
        .catalogue-slider-arrow.prev {
            left: 28px;
        }
        .catalogue-slider-arrow.next {
            right: 28px;
        }
        .catalogue-slider-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-top: 14px;
        }
        .catalogue-slider-dots {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .catalogue-slider-dot {
            width: 10px;
            height: 10px;
            border: none;
            border-radius: 999px;
            padding: 0;
            background: rgba(36, 53, 68, 0.18);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .catalogue-slider-dot.active {
            width: 28px;
            background: #F8B42C;
        }
        .catalogue-slider-caption {
            color: #6d7682;
            font-size: 14px;
            font-weight: 600;
            text-align: right;
        }

/* ========================================
   CATALOGUE MOBILE UX IMPROVEMENTS
======================================== */
.catalogue-stage-media {
    touch-action: pan-y;
}

@media (max-width: 768px) {
    .catalogue-wrapper {
        padding: 0;
    }

    .catalogue-hero {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .catalogue-copy {
        max-width: none;
        padding: 0;
    }

    .catalogue-title {
        margin: 12px 0 10px;
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.02;
    }

    .catalogue-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .catalogue-actions {
        gap: 10px;
        margin-top: 16px;
    }

    .catalogue-btn,
    .catalogue-chip {
        min-height: 44px;
        font-size: 14px;
    }

    .catalogue-page-card {
        padding: 14px;
        border-radius: 18px;
    }

    .catalogue-stage-head {
        margin-bottom: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-stage-label {
        font-size: 11px;
        padding: 7px 10px;
    }

    .catalogue-stage-count {
        font-size: 13px;
    }

    .catalogue-stage-media {
        min-height: auto;
        padding: 12px 12px 18px;
        border-radius: 18px;
    }

    .catalogue-page-image {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 240px);
        border-radius: 12px;
        box-shadow: 0 10px 18px rgba(17, 24, 39, 0.10);
    }

    .catalogue-slider-arrow {
        display: none;
    }

    .catalogue-slider-arrow.prev {
        left: 12px;
    }

    .catalogue-slider-arrow.next {
        right: 12px;
    }

    .catalogue-slider-footer {
        margin-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .catalogue-slider-dots {
        width: 100%;
        justify-content: center;
    }

    .catalogue-slider-caption {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .catalogue-hero {
        padding: 18px 14px;
    }

    .catalogue-page-card {
        padding: 12px;
    }

    .catalogue-stage-media {
        padding: 10px 10px 16px;
    }

    .catalogue-page-image {
        max-height: calc(100vh - 220px);
    }

}