  body { font-family: 'Montserrat', sans-serif; background: #f8f8f8; }

        /* ── Hero ── */
        .cat-hero {
            position: relative;
            height: 260px;
            background: #1a1a1a;
            overflow: hidden;
        }
        .cat-hero img {
            width: 100%; height: 100%;
            object-fit: cover; opacity: 0.5;
        }
        .cat-hero .hero-text {
            position: absolute; inset: 0;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            color: #fff; text-align: center; padding: 0 20px;
        }
        .cat-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 700; letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }

        /* ── Breadcrumb ── */
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }
        .breadcrumb-item a { color: #8B6914; text-decoration: none; }

        /* ── Product Count Badge ── */
        .count-bar {
            padding: 18px 0 6px;
            display: flex; align-items: center;
            justify-content: space-between;
        }
        .count-bar .total-badge {
            font-size: 13px; color: #777; font-weight: 500;
        }
        .count-bar .total-badge strong { color: #1a1a1a; }

        /* ── Product Card ── */
        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.13);
            color: inherit;
        }
        .product-card .img-box {
            background: #fff;
            padding: 12px;
            text-align: center;
        }
        .product-card .img-box img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
        }
        .product-card .card-info {
            padding: 14px 16px;
            border-top: 1px solid #f0f0f0;
        }
        .product-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem; font-weight: 700;
            color: #1a1a1a; margin-bottom: 4px;
            white-space: nowrap; overflow: hidden;
            text-overflow: ellipsis;
        }
        .product-card .code-badge {
            display: inline-block;
            background: #f5f0e8;
            color: #8B6914;
            font-size: 0.75rem; font-weight: 600;
            padding: 3px 10px; border-radius: 20px;
        }

        /* ── SHIMMER EFFECT ── */
        .shimmer-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            height: 100%;
        }
        .shimmer-box {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.4s infinite;
        }
        .shimmer-img   { height: 200px; }
        .shimmer-line  { height: 14px; border-radius: 6px; margin: 10px 16px 6px; }
        .shimmer-line.short { width: 60%; height: 12px; margin-bottom: 14px; }

        @keyframes shimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* ── Load More Button ── */
        .load-more-wrap { text-align: center; padding: 36px 0 50px; }
        .btn-load-more {
            padding: 12px 40px;
            border: 2px solid #8B6914;
            color: #8B6914;
            background: transparent;
            border-radius: 30px;
            font-size: 0.9rem; font-weight: 700;
            cursor: pointer; font-family: inherit;
            transition: all 0.3s;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-load-more:hover { background: #8B6914; color: #fff; }
        .btn-load-more:disabled { opacity: 0.5; cursor: not-allowed; }
        .btn-load-more .spinner {
            display: none;
            width: 16px; height: 16px;
            border: 2px solid currentColor;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ── Empty State ── */
        .empty-state {
            text-align: center; padding: 80px 20px; color: #999;
        }
        .empty-state i { font-size: 3rem; color: #ddd; margin-bottom: 16px; display: block; }
        .empty-state h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #555; }