/* ========================================
   SINGLE KATALOG SERAGAM - ELEGAN & MEWAH
   ======================================== */

/* ========================================
   HEADER KATALOG
   ======================================== */

.single-katalog-seragam {
    padding: 0 0 80px;
    background: #f8f6f3;
}

.katalog-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0F1A2E 0%, #1B2F4A 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 26, 46, 0.25);
}

.katalog-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.katalog-header-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.katalog-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 168, 76, 0.15);
    color: #C9A84C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.katalog-title {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.katalog-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 0 24px 0;
}

.katalog-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.katalog-header-decoration {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.katalog-header-decoration svg {
    width: 120px;
    height: 120px;
    stroke: rgba(255, 255, 255, 0.05);
}

/* ========================================
   FILTER KATEGORI
   ======================================== */

.katalog-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tab {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #e8e5e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #5A5652;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-tab:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

.filter-tab.active {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #0F1A2E;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-count {
    font-size: 14px;
    color: #9E9A94;
    font-weight: 500;
}

/* ========================================
   GRID KATALOG - 50+ GAMBAR
   ======================================== */

.katalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* ========================================
   KATALOG ITEM
   ======================================== */

.katalog-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.katalog-item-inner {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.katalog-item-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.katalog-item-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f8f6f3;
}

.katalog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.katalog-item-inner:hover .katalog-item-image img {
    transform: scale(1.05);
}

/* Badge kategori */
.katalog-item-badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    background: rgba(15, 26, 46, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Overlay */
.katalog-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.katalog-item-inner:hover .katalog-item-overlay {
    opacity: 1;
}

.btn-zoom {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
    color: #0F1A2E;
}

.katalog-item-inner:hover .btn-zoom {
    transform: scale(1);
}

.btn-zoom:hover {
    background: #C9A84C;
    color: #FFFFFF;
    transform: scale(1.1);
}

.btn-zoom svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.btn-quick-view {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
    color: #0F1A2E;
    opacity: 0;
}

.katalog-item-inner:hover .btn-quick-view {
    transform: scale(1);
    opacity: 1;
}

.btn-quick-view:hover {
    background: #C9A84C;
    color: #FFFFFF;
    transform: scale(1.1);
}

.btn-quick-view svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Content */
.katalog-item-content {
    padding: 16px 18px 18px;
    text-align: center;
}

.katalog-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F1A2E;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.katalog-item-category {
    font-size: 12px;
    color: #9E9A94;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ========================================
   LOAD MORE
   ======================================== */

.katalog-load-more {
    text-align: center;
    margin-bottom: 50px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid #C9A84C;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #C9A84C;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-load-more:hover {
    background: #C9A84C;
    color: #0F1A2E;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.btn-load-more svg {
    transition: transform 0.3s ease;
}

.load-more-count {
    color: #9E9A94;
    font-weight: 400;
}

/* ========================================
   KONTEN ARTIKEL
   ======================================== */

.katalog-content {
    background: #FFFFFF;
    padding: 50px 60px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.katalog-content .entry-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0F1A2E;
    margin: 40px 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ede8;
}

.katalog-content .entry-content h2:first-child {
    margin-top: 0;
}

.katalog-content .entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F1A2E;
    margin: 30px 0 12px 0;
}

.katalog-content .entry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5A5652;
    margin-bottom: 16px;
}

.katalog-content .entry-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
}

.katalog-content .entry-content ul li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #5A5652;
    line-height: 1.6;
    border-bottom: 1px solid #f8f6f3;
}

.katalog-content .entry-content ul li:last-child {
    border-bottom: none;
}

.katalog-content .entry-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: #C9A84C;
    font-size: 14px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.katalog-cta {
    margin-top: 20px;
}

.katalog-cta-inner, .katalog-cta-inner2 {
    background: linear-gradient(135deg, #0F1A2E 0%, #1B2F4A 100%);
    padding: 50px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(15, 26, 46, 0.25);
}

.katalog-cta-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.katalog-cta-icon svg {
    stroke: #C9A84C;
}

.katalog-cta-text {
    flex: 1;
}

.katalog-cta-text h2, .katalog-cta-text h3{
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.katalog-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.katalog-cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.katalog-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.katalog-cta-buttons .btn-primary {
    background: #C9A84C;
    color: #0F1A2E;
}

.katalog-cta-buttons .btn-primary:hover {
    background: #B8943A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.katalog-cta-buttons .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.katalog-cta-buttons .btn-secondary:hover {
    border-color: #C9A84C;
    color: #C9A84C;
    transform: translateY(-2px);
}

/* ========================================
   MODAL ZOOM
   ======================================== */

.katalog-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.katalog-modal.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.katalog-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.katalog-modal-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;

    overflow: hidden;
}

.katalog-modal-image-wrapper img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.katalog-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 16px 16px;
}

.katalog-modal-info h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.katalog-modal-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.katalog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.katalog-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.katalog-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.katalog-modal-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.katalog-modal-nav button {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.katalog-modal-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.katalog-modal-counter {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.katalog-empty {
    text-align: center;
    padding: 80px 40px;
    background: #FFFFFF;
    border-radius: 16px;
    grid-column: 1 / -1;
}

.katalog-empty svg {
    color: #e8e5e0;
    margin-bottom: 16px;
}

.katalog-empty h3 {
    font-size: 20px;
    color: #0F1A2E;
    margin: 0 0 8px 0;
}

.katalog-empty p {
    color: #9E9A94;
    font-size: 15px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .katalog-header {
        padding: 40px 40px;
    }
    
    .katalog-title {
        font-size: 32px;
    }
    
    .katalog-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 24px;
    }
    
    .katalog-cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .single-katalog-seragam {
        padding: 20px 0 50px;
    }
    
    .katalog-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        border-radius: 16px;
    }
    
    .katalog-header-decoration {
        display: none;
    }
    
    .katalog-title {
        font-size: 26px;
    }
    
    .katalog-subtitle {
        font-size: 14px;
        max-width: 100%;
    }
    
    .katalog-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .katalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .katalog-filter {
        flex-direction: column;
        padding: 12px 16px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-tab {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .katalog-content {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .katalog-content .entry-content h2 {
        font-size: 20px;
    }
    
    .katalog-cta-inner {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .katalog-cta-text h2 {
        font-size: 20px;
    }
    
    .katalog-cta-text p {
        font-size: 14px;
    }
    
    .katalog-cta-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .katalog-modal {
        padding: 16px;
    }
    
    .katalog-modal-info {
        padding: 20px 20px 16px;
    }
    
    .katalog-modal-info h3 {
        font-size: 15px;
    }
    
    .katalog-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .katalog-modal-nav button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .katalog-modal-counter {
        bottom: 70px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .katalog-header {
        padding: 24px 16px;
    }
    
    .katalog-title {
        font-size: 22px;
    }
    
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .katalog-item-title {
        font-size: 12px;
    }
    
    .katalog-item-badge-category {
        font-size: 9px;
        padding: 2px 10px;
        top: 8px;
        left: 8px;
    }
    
    .btn-zoom, .btn-quick-view {
        width: 40px;
        height: 40px;
    }
    
    .btn-zoom svg, .btn-quick-view svg {
        width: 18px;
        height: 18px;
    }
    
    .katalog-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .katalog-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .katalog-modal {
        padding: 10px;
    }
    
    .katalog-modal-nav {
        padding: 0 8px;
    }
    
    .katalog-modal-nav button {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}
.btn-zoom svg {
    stroke: #C9A84C;
}

.btn-quick-view svg {
    stroke: #2271b1;
}

.btn-zoom:hover {
    background: #C9A84C;
    color: #fff;
}

.btn-quick-view:hover {
    background: #2271b1;
    color: #fff;
}
/* Dekorasi header katalog */
.katalog-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px; /* Atau 180px, sesuaikan agar seimbang */
    height: 160px;
    flex-shrink: 0; /* Mencegah gambar mengecil */
    margin-left: 30px; /* Jarak dari teks judul */
    position: relative;
}

.katalog-header-decoration .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar mengisi kotak tanpa terdistorsi */
    border-radius: 50%; /* Membuat gambar menjadi bulat seperti avatar/medali */
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); /* Memberikan efek bayangan elegan */
    border: 4px solid #fff; /* Border putih agar terpisah dari background */
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .katalog-header {
        flex-direction: column; /* Ubah jadi kolom di mobile */
        align-items: center; /* Tengahkan elemen */
        text-align: center;
    }
    .katalog-header-decoration {
        margin-left: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }
}

    /* CSS UNTUK LOAD MORE & FILTER */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .katalog-item-extra {
        display: none !important;
    }
    
    .btn-load-more svg {
        transition: transform 0.3s ease;
    }

    /* STYLE BADGE WARNA */
    .katalog-item-badge-color {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(255, 255, 255, 0.92);
        color: #0F1A2E;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        letter-spacing: 0.5px;
        pointer-events: none;
        z-index: 2;
    }

    .filter-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .filter-tabs .filter-tab {
        margin-bottom: 5px;
    }

    /* CSS UNTUK CTA YANG DISISIPKAN DI MANA SAJA (Grid dan Atas Konten) */
    .katalog-grid-cta {
        grid-column: 1 / -1;
        margin: 30px 0;
        padding: 30px;
       background: #98823D;
        border: 1px solid #d4e3f5;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(34, 113, 177, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    .katalog-grid-cta .katalog-cta-inner {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
		background: #FFFFFF;
    }
	 .katalog-grid-cta .katalog-cta-inner2 {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
		background: #000000;
		color:#FFF;
    }
    .katalog-grid-cta .katalog-cta-icon svg {
        color: #2271b1;
        flex-shrink: 0;
    }
    .katalog-grid-cta .katalog-cta-text {
        flex: 1;
        min-width: 200px;
    }
	 .katalog-grid-cta .katalog-cta-text2 {
        flex: 1;
        min-width: 200px;
    }
    .katalog-grid-cta .katalog-cta-text h3 {
        font-size: 20px;
        margin: 0 0 4px 0;
        color: #0F1A2E;
    }
	.katalog-grid-cta .katalog-cta-text2 h3 {
        font-size: 20px;
        margin: 0 0 4px 0;
        color: #FFFF00;
    }
    .katalog-grid-cta .katalog-cta-text p {
        margin: 0;
        font-size: 14px;
        color: #555;
    }
	 .katalog-grid-cta .katalog-cta-text2 p {
        margin: 0;
        font-size: 14px;
        color: #FFF;
    }
	
    .katalog-grid-cta .katalog-cta-buttons .btn {
        padding: 10px 24px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* RESPONSIVE CTA DI TENGAH GRID & ATAS KONTEN */
    @media (max-width: 768px) {
        .katalog-grid-cta {
            padding: 20px;
            flex-direction: column;
            text-align: center;
        }
        .katalog-grid-cta .katalog-cta-inner {
            flex-direction: column;
            text-align: center;
        }
        .katalog-grid-cta .katalog-cta-buttons .btn {
            width: 100%;
            justify-content: center;
        }
    }
	
	/* ============================================================
   HERO SECTION - KATALOG SERAGAM
   (Sama dengan hero di katalog topi)
   ============================================================ */
.katalog-hero {
    position: relative;
    min-height: 420px;
    height: 60vh;
    max-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0 0 30px 0;
    border-radius: 24px;
    background: #0F1A2E;
}

.katalog-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.katalog-hero-bg .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.katalog-hero-bg .hero-bg-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E 0%, #2C2C4A 50%, #1A1A2E 100%);
}

.katalog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 46, 0.80) 0%,
        rgba(15, 26, 46, 0.50) 50%,
        rgba(15, 26, 46, 0.30) 100%
    );
    z-index: 1;
}

.katalog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 20px;
}

.katalog-hero-text {
    max-width: 720px;
    color: #fff;
}

.katalog-hero-text .katalog-badge {
    display: inline-block;
    background: #D4AF37;
    color: #0F1A2E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.katalog-hero-text .katalog-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.katalog-hero-text .katalog-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 0 24px 0;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.katalog-hero-text .katalog-stats {
    display: flex;
    gap: 40px;
    margin-top: 8px;
}

.katalog-hero-text .stat-item {
    display: flex;
    flex-direction: column;
}

.katalog-hero-text .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 10px rgba(212, 175, 55, 0.3);
}

.katalog-hero-text .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* ============================================================
   RESPONSIVE HERO
   ============================================================ */
@media (max-width: 992px) {
    .katalog-hero {
        min-height: 380px;
        height: 50vh;
        max-height: 550px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .katalog-hero {
        min-height: 320px;
        height: 45vh;
        max-height: 460px;
        border-radius: 16px;
        margin: 0 0 20px 0;
    }
    .katalog-hero-text .katalog-title {
        font-size: clamp(26px, 7vw, 36px);
    }
    .katalog-hero-text .katalog-subtitle {
        font-size: 15px;
    }
    .katalog-hero-text .katalog-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .katalog-hero-text .stat-number {
        font-size: 22px;
    }
    .katalog-hero-text .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .katalog-hero {
        min-height: 260px;
        height: 40vh;
        max-height: 380px;
        border-radius: 12px;
        margin: 0 0 16px 0;
    }
    .katalog-hero-content {
        padding: 20px 16px;
    }
    .katalog-hero-text .katalog-badge {
        font-size: 11px;
        padding: 4px 14px;
    }
    .katalog-hero-text .katalog-title {
        font-size: 22px;
    }
    .katalog-hero-text .katalog-subtitle {
        font-size: 14px;
    }
    .katalog-hero-text .katalog-stats {
        gap: 14px;
    }
    .katalog-hero-text .stat-number {
        font-size: 18px;
    }
    .katalog-hero-text .stat-label {
        font-size: 10px;
    }
}