/* ============================================= */
/* FONT CUSTOM CREATODISPLAY VARIAN */
/* ============================================= */

/* Catatan: Path 'fonts/' sudah dikoreksi (diasumsikan folder fonts ada di root) */

/* 1. REGULAR (Normal Weight) */
@font-face {
    font-family: 'CreatoDisplay';
    src: url('fonts/CreatoDisplay-Regular.otf') format('opentype');
    font-weight: 400; 
    font-style: normal;
    font-display: swap; 
}

/* 2. BOLD (Semi-Bold/Bold Weight) */
@font-face {
    font-family: 'CreatoDisplay';
    src: url('fonts/CreatoDisplay-Bold.otf') format('opentype');
    font-weight: 700; 
    font-style: normal;
    font-display: swap; 
}

/* 3. BLACK (Extra-Bold/Black Weight) */
@font-face {
    font-family: 'CreatoDisplay';
    src: url('fonts/CreatoDisplay-Black.otf') format('opentype');
    font-weight: 900; 
    font-style: normal;
    font-display: swap; 
}

/* 4. BLACK ITALIC (Black Weight & Italic Style) */
@font-face {
    font-family: 'CreatoDisplay';
    src: url('fonts/CreatoDisplay-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic; 
    font-display: swap; 
}

body {
    font-family: 'CreatoDisplay', sans-serif; 
    font-weight: 400;
    margin: 0;
    background-color: #f8f8f8;
}

h1, h2, h3, th {
    font-weight: 700;
}

/* ============================================= */
/* HEADER & NAVIGATION */
/* ============================================= */

/* HEADER UTAMA */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* KONTEN HEADER ATAS */
.header-top {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 20px 5% 5px 5%; /* Padding bawah kita kecilkan jadi 5px saja */
    position: relative;     
    min-height: 80px;       
    border: none;           
}

/* LOGO CONTAINER */
.logo-container {
    width: 300px;           
    display: flex;
    justify-content: center;
    border: none;           
}

.site-logo {
    width: 100%;            
    height: auto;           
    display: block;
}

/* SEARCH FORM - Mepet Kanan */
.search-form {
    position: absolute;     
    right: 5%;              
    display: flex;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    width: 250px;           
}

.search-form input {
    flex: 1;
    padding: 6px 12px;
    border: none;
    outline: none;
    font-size: 0.85em;
}

.search-form button {
    background-color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
}

/* NAVIGASI - JARAK KE LOGO DIPRES */
.main-nav {
    display: flex;
    justify-content: center;
    padding: 0 0 15px 0;    /* Padding ATAS kita buat 0 agar mepet ke logo */
    border: none;           
}

.main-nav a {
    text-decoration: none;
    color: #333;
    padding: 0 20px;
    border-right: 1px solid #ccc;
    font-weight: bold;
    font-size: 0.95em;
}

.main-nav a:last-child {
    border-right: none;
}

.main-nav a:hover, .main-nav a.active {
    color: #ff6600; 
}

/* ============================================= */
/* KONTEN UTAMA & SLIDER (index.php) */
/* ============================================= */

.main-content {
    max-width: auto;
    margin: 0 auto;
    height: auto;
}

/* ============================================= */
/* BANNER FIX PRESIISI 1600x692 (RASIO 2.31:1) */
/* ============================================= */
/* ============================================= */
/* FIX CENTER PRESIISI & AUTO-ADAPTIVE */
/* ============================================= */
.banner-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    line-height: 0;
}

.slider-viewport {
    width: 100%;
    aspect-ratio: 1600 / 692; /* Mengunci tinggi agar pas 1600x692 */
    position: relative;
    background: #000;
}

.banner-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    /* Pastikan TIDAK ADA display: flex; di sini */
}

.banner-slide {
    /* INI KUNCINYA: absolute agar menumpuk satu sama lain */
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

/* Yang ada class active akan muncul di depan */
.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Agar 100% gambar terlihat tanpa kepotong */
}

/* NEW ITEM & ARTIKEL HEADING */
h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* NEW ITEM SECTION: KONTROL TOTAL LEBAR & CENTERING */
.product-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 0;
    
    /* KUNCI CENTERING & LEBAR SAMA DENGAN BANNER: 1060px */
    max-width: 1060px;
    width: 1060px; /* Mengunci lebar total */
    margin: 0 auto 50px; /* Pusatkan */
}

/* --- AESTHETIC ARROW STYLE (Tetap) --- */
.slider-arrow {
    background: none; 
    border: none;    
    padding: 0; 
    cursor: pointer;
    font-size: 0; 
    position: relative; 
    width: 30px; 
    height: 60px; 
    display: flex; 
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    z-index: 10;
    transition: transform 0.2s; 
}
.slider-arrow:hover {
    transform: scale(1.1); 
}
/* Desain Panah Kiri (prev) */
.slider-arrow.prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); 
    width: 25px; 
    height: 40px; 
    background-color: #ff6600; 
    opacity: 0.7;
    transition: background-color 0.2s, opacity 0.2s;
    clip-path: polygon(100% 0%, 20% 0%, 0% 50%, 20% 100%, 100% 100%);
}
.slider-arrow.prev:hover::before {
    background-color: #333; 
    opacity: 1;
}
/* Desain Panah Kanan (next) */
.slider-arrow.next::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%); 
    width: 25px; 
    height: 40px; 
    background-color: #ff6600; 
    opacity: 0.7;
    transition: background-color 0.2s, opacity 0.2s;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
}
.slider-arrow.next:hover::before {
    background-color: #333; 
    opacity: 1;
}
/* --- END ARROW STYLE --- */


/* KONTROL PRODUK CARD */
.product-card {
    border: 1px solid #ff6600;
    width: 250px;
    height: 320px; /* FIX: Tinggi kartu ditambah agar ada ruang untuk nama produk 2 baris */
    padding: 10px;
    flex-shrink: 0;
    background-color: white;

    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Gambar dan teks memiliki jarak yang baik */
}

/* KONTROL GAMBAR PRODUK (Agar Seragam) */
.product-card img {
    width: 100%; 
    height: 200px; /* FIX: Tinggi gambar seragam */
    object-fit: contain; /* KUNCI FIX: Agar gambar tidak terpotong dan terlihat penuh (proporsional) */
    object-position: center;
    margin-bottom: 10px; /* FIX: Jarak antara gambar dan teks */
    border: 1px solid #eee; /* Opsional: Border tipis untuk gambar */
}

/* KONTROL NAMA PRODUK (Agar Rapi) */
.product-card h3 {
    font-size: 0.95em;
    font-weight: 600;
    color: #333;
    margin: 0; /* FIX: Hapus margin default */
    padding: 0 5px; /* FIX: Beri sedikit padding horizontal agar tidak mepet */
    line-height: 1.3; /* Atur tinggi baris */
    text-align: center; 
    /* Batasi teks menjadi 2 baris dan tambahkan elipsis */
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

/* FIX KRITIS: Mengatur Viewport untuk 4 Produk */
.product-slider-viewport {
    /* HARUS 1060px untuk 4 kartu (4x250 + 3x20) */
    width: 1060px; 
    overflow: hidden; 
}
.product-grid-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* ARTIKEL */
.artikel-section {
    max-width: 1060px;
    width: 1060px;
    margin: 0 auto 50px; 
}

.artikel-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 0;
    max-width: 1060px;
    width: 1060px;
    margin: 0 auto 50px; 
}

/* Lebar viewport untuk 2 artikel (2x500 + 1x20) */
.artikel-slider-viewport {
    width: 1020px;
    overflow: hidden; 
}

.artikel-item {
    /* FIX: Lebar item artikel harus cukup besar (misalnya 480px) */
    width: 480px; 
    height: 250px; /* Tinggi seragam agar sejajar */
    display: flex;
    border: 2px solid #ff6600; /* Border oranye yang tegas */
    flex-shrink: 0;
    background-color: white;
    box-sizing: border-box;
    padding: 10px; /* Padding di sekitar konten */
}

.artikel-kiri {
    padding: 0; /* Hapus padding agar foto lebih dekat ke border */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 45%; /* Ambil sekitar 45% lebar artikel item */
}

.artikel-foto {
    border: none; /* Hapus border */
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative; /* Untuk menampung gambar */
}

.artikel-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.artikel-kanan {
    padding: 0 0 0 15px; /* Padding kiri agar ada jarak dari foto */
    font-size: 0.9em;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Untuk mendorong tanggal ke bawah */
    width: 55%;
}

.artikel-judul {
    font-weight: 900; /* Lebih tebal */
    font-size: 1.2em;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 10px;
    
    /* Batasi judul agar tidak terlalu panjang */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Batasi hingga 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artikel-cuplikan {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
    
    /* Batasi cuplikan agar tidak terlalu panjang */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi hingga 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artikel-meta {
    text-align: right;
    font-size: 0.8em;
    color: #999;
}

.artikel-penulis, .artikel-tanggal {
    display: block;
    margin: 2px 0;
}

.artikel-grid-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* ============================================= */
/* FOOTER & KATEGORI (product.php) */
/* ============================================= */
.main-footer {
    background-color: #ff6600 !important; 
    /* Gunakan ../ lek file CSS-mu nang jero folder 'css', 
       tapi lek 'style.css' sak level ambek folder 'images', cukup ngeneki: */
    background-image: url('images/pattern-atk.png') !important; 
    
    background-repeat: repeat;
    background-size: 150px; /* Coba cilikno dhisik ukurane biar ketok polane */
    background-blend-mode: multiply; /* Ganti multiply lek overlay gak muncul */
    color: white;
    padding: 30px 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-link a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
}

/* Kategori Grid (product.php) */
.kategori-grid-section {
    padding: 20px 5%;
}

.kategori-grid-container {
    display: grid;
    /* FIX: Gunakan auto-fill dan lebar kolom tetap (250px) agar tidak meluas jika item sedikit */
    grid-template-columns: repeat(auto-fill, 250px); 
    gap: 20px; 
    justify-content: center; /* Pusat Kategori Grid */
    margin: 0 auto; 
    max-width: 1060px; /* Batasi lebar maksimal 4 kolom */
}

.kategori-card {
    /* Lebar tetap seperti yang diinginkan */
    width: 250px; 
    flex-shrink: 0;
    margin-right: 20px; /* Jarak Horizontal Tetap */
    margin-bottom: 20px; /* Jarak Vertikal Tetap */
    
    display: block;
    text-decoration: none;
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box; 
}

.kategori-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.kategori-photo-box {
    width: 100%;
    /* FIX 4: Sesuaikan tinggi agar foto terlihat lebih besar dan proporsional */
    height: 200px; /* DIPERBESAR dari 180px */ 
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #ff6600;
}

.kategori-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kategori-card h3 {
    font-size: 1em;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* --- STYLE UNTUK PRODUCT_BY_CATEGORY.PHP & PRODUCT_DETAIL.PHP --- */

.product-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
}
.product-card-style {
    border: 1px solid #ff6600;
    box-shadow: none;
}
.product-photo-box {
    height: 200px;
}
.product-info-text {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

/* --- PRODUCT DETAIL LAYOUT (product_detail.php) --- */

.product-detail-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.product-photo-gallery {
    display: flex;
    gap: 20px;
    width: 60%; 
}

.main-photo-box {
    border: 1px solid #ff6600;
    width: 75%;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main-photo-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.main-photo-box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: 700;
    opacity: 0.1;
    pointer-events: none;
}

.gallery-thumbs {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-box {
    border: 1px solid #ff6600;
    width: 100%;
    height: 90px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}
.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.thumb-box:hover, .thumb-box.active {
    border-color: #333;
    opacity: 1;
}
.thumb-box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: 700;
    font-size: 0.8em;
    opacity: 0.1;
    pointer-events: none;
}

.product-info-area {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-description-box {
    margin-bottom: 20px;
}
.product-description-box h2 {
    font-size: 1.2em;
    text-align: left;
    margin: 0 0 10px 0;
}
.description-content {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.buy-button-container {
    text-align: right;
}
.buy-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255,102,0,0.4);
    transition: background-color 0.2s;
}
.buy-button:hover {
    background-color: #e65c00;
}

/* --- PRODUK SERUPA --- */
.related-products-section {
    padding: 0 5%;
    margin-top: 50px;
}
.related-products-section h2 {
    text-align: left;
    border-top: 1px solid #000;
    padding-top: 30px;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    gap: 20px;
    justify-content: flex-start; /* Posisikan item dari kiri */
    margin: 0 5% 50px;
    max-width: 100%;
}

#floating-chat-widget {
    position: fixed; /* KUNCI: Membuatnya mengambang terlepas dari scrolling */
    bottom: 30px;
    right: 30px;
    z-index: 2000; /* Pastikan di atas semua elemen */
    font-family: Arial, sans-serif;
}

/* Tombol Ikon Chat (WhatsApp Style) */
#chat-icon-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366; 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s;
}

#chat-icon-button:hover {
    transform: scale(1.05);
}

/* Jendela Konten Chat */
#chat-box-content {
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 75px; 
    right: 0;
    
    display: none; 
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

/* Class yang akan ditambahkan oleh JS saat dibuka */
#chat-box-content.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background-color: #ff6600; 
    color: white;
    padding: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

#close-chat-button {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.chat-body {
    padding: 15px;
    text-align: center;
}

.chat-body p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.chat-wa-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #25D366; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.chat-wa-button i {
    margin-right: 5px;
}

.chat-wa-button:hover {
    background-color: #1DA851;
}

/* ============================================= */
/* MEDIA QUERIES (RESPONSIVE DESIGN) */
/* ============================================= */

@media (max-width: 768px) {
    /* --- HEADER & NAVIGASI --- */
    
    .header-top {
        flex-direction: column; 
        align-items: center;
        padding-bottom: 5px;
    }
    .logo-container {
        width: 150px;
        height: auto;
        margin-bottom: 10px;
    }
    .search-form {
        width: 90%;
        max-width: 350px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        padding: 5px 0;
    }
    .main-nav a {
        padding: 5px 10px;
        border-right: none;
        font-size: 0.9em;
    }

    /* --- NEW ITEM (Slider Produk) --- */
    
    .product-slider-container {
        padding: 0 2%; 
    }

    .product-slider-viewport {
        width: 395px; 
        max-width: 85vw;
        overflow: hidden; 
    }
    
    .product-card {
    border: 1px solid #ff6600;
    width: 250px; /* Lebar kartu tetap 250px */
    height: 320px; /* FIX: Tambah tinggi kartu agar nama produk punya ruang */
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box; /* Pastikan padding dihitung dalam width/height */
    text-align: center; /* Pusat nama produk */
    display: flex; /* Gunakan flexbox untuk tata letak internal */
    flex-direction: column; /* Item dalam kartu disusun vertikal */
    justify-content: space-between; /* Gambar di atas, nama di bawah, ada jarak */
    }

    .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .product-card img {
    width: 100%; /* Gambar mengisi seluruh lebar yang tersedia di dalam kartu */
    height: 200px; /* FIX: Tinggi gambar seragam (sesuaikan jika perlu) */
    object-fit: contain; /* FIX: Agar gambar tidak terpotong dan tampil penuh */
    object-position: center; /* Posisikan gambar di tengah jika ada ruang sisa */
    margin-bottom: 10px; /* FIX: Beri jarak antara gambar dan nama produk */
    border: 1px solid #eee; /* Opsional: Border tipis untuk gambar */
    }

    .product-card h3 {
    font-size: 0.9em; /* Ukuran font nama produk */
    font-weight: 600;
    color: #333;
    margin: 0; /* FIX: Hapus margin default agar tidak mepet */
    padding: 0 5px; /* FIX: Beri sedikit padding horizontal */
    line-height: 1.3; /* FIX: Atur tinggi baris agar teks tidak terlalu rapat */
    /* text-align: center; (sudah diatur di .product-card) */
    flex-grow: 1; /* Biarkan nama produk mengambil sisa ruang vertikal jika panjang */
    display: -webkit-box; /* Untuk memotong teks yang terlalu panjang */
    -webkit-line-clamp: 2; /* Batasi nama produk menjadi 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Tambahkan elipsis jika teks terpotong */
    }

    /* --- ARTIKEL SLIDER --- */
    
.artikel-slider-container {
    /* Hapus padding 5% */
    padding: 0;
    
    /* KUNCI CENTERING & LEBAR */
    max-width: 1060px;
    width: 1060px;
    margin: 0 auto 50px; 
    }
    .artikel-grid-slider {
    display: flex, gap: 20px, overflow-x: hidden, scroll-behavior: smooth
    }
    .artikel-slider-viewport {
    /* Perhitungan: (2 artikel * 500px) + (1 gap * 20px) = 1020px */
    width: 1020px;
    overflow: hidden;
    }
    .artikel-item {
        width: 90vw;
        max-width: 350px;
        flex-direction: column;
        text-align: center;
    }
    .artikel-kiri {
        justify-content: center;
        padding: 10px;
    }
    .artikel-kanan {
        padding: 10px 20px;
    }
    
    /* --- FOOTER --- */
    .footer-link {
        flex-direction: column;
        align-items: center;
    }
    .footer-link a {
        margin: 5px 0;
    }

    /* --- KATEGORI GRID (product.php) --- */
    .kategori-grid-container {
        /* Mobile: 2 kolom */
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
    
    /* --- PRODUCT DETAIL PAGE --- */
    .product-detail-layout {
        flex-direction: column;
        gap: 20px;
    }
    .product-photo-gallery, .product-info-area {
        width: 100%;
    }
    .gallery-thumbs {
        flex-direction: row; /* Ubah thumbnail jadi horizontal di mobile */
        width: 100%;
        height: auto;
    }
    .thumb-box {
        width: 80px;
        height: 80px;
    }
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

/* ============================================= */
/* GARIS JUDUL OTOMATIS (TARUH DI LUAR MEDIA QUERY) */
/* ============================================= */
.section-title-wrapper {
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
    margin: 80px auto 40px !important; /* Jarak atas bawah lebih lega */
    max-width: 1060px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.section-title-wrapper::before,
.section-title-wrapper::after {
    content: "" !important;
    flex: 1 !important;
    height: 2px !important; /* Tebal garis */
    background-color: #333 !important; /* Warna hitam tegas */
    display: block !important;
}

.section-title-wrapper h2 {
    margin: 0 30px !important;
    white-space: nowrap !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    color: #333 !important;
    font-family: 'CreatoDisplay', sans-serif !important;
    /* Reset margin bawah default h2 agar tidak miring */
    margin-bottom: 0 !important; 
}

