/* --- 1. PENGATURAN DASAR & GLOBAL --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.highlight { color: #ff7e41; }

/* --- 2. NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #0d0d0d;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-bottom: 1px solid #1a1a1a;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 45px;
    height: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff; 
    letter-spacing: 2px;
    line-height: 1;
}

.brand-cx { color: #ff7e41; }

.brand-sub {
    font-size: 0.8rem;
    color: #ff7e41;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: #ff7e41; }

.nav-contact {
    background: #ff7e41;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* --- 3. HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,1) 30%, rgba(0,0,0,0.5)), 
                url('img/background-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-tagline {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-desc {
    color: #bbb;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: #ff7e41;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e66a2f;
    transform: translateX(10px);
}

/* --- 4. PRODUK SECTION & CARDS --- */
.produk-section { 
    padding: 80px 20px; 
    background: #000000; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2rem; 
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.kartu-produk {
    background: #1c1917; 
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #2a2624; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.kartu-produk:hover { 
    transform: translateY(-10px);
    border-color: #ff7e41;
}

.kartu-produk img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.info-produk { padding: 20px; }
.info-produk h3 { color: #ffffff; margin-bottom: 10px; }

.badge { 
    background: #27ae60; 
    color: white; 
    padding: 4px 10px; 
    border-radius: 5px; 
    font-size: 0.7em; 
    display: inline-block;
    margin-bottom: 10px;
}

.deskripsi-singkat {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.btn-pesan {
    display: block;
    text-align: center;
    background: #ff7e41;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-pesan:hover { background: #e66a2f; }

/* --- 5. PAGE HEADER (PRODUK PAGE) --- */
.page-header {
    padding: 120px 10% 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    color: #ff7e41;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: #ff7e41;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- 6. FOOTER --- */
.footer-main {
    background: #0d0d0d !important;
    padding: 60px 10% 20px !important;
    border-top: 1px solid #222 !important;
    display: block !important;
}

.footer-container {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1.2fr !important;
    gap: 40px !important;
}

/* Pastikan kolom utama menyusun konten ke bawah */
.footer-col-brand {
    display: flex;
    flex-direction: column; 
    gap: 20px; /* Jarak antara logo dan tombol market */
}

/* Menyejajarkan Ikon dengan Blok Teks */
.footer-logo-brand {
    display: flex;
    align-items: center; /* Ikon dan teks sejajar di tengah secara vertikal */
    gap: 15px;
}

/* Memaksa Sub-footer berada di bawah Nama Brand */
.brand-text-content {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

.footer-logo {
    width: 45px !important;
    height: auto !important;
}

.brand-sub-footer {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #ff8c00; /* Warna oranye sesuai desain */
}

/* Marketplace Logos */
.market-box-container {
    display: flex !important;
    gap: 12px !important;
    margin-left: 60px !important;
    margin-top: 15px !important;
}

.market-box {
    width: 110px !important;
    height: 45px !important;
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px !important;
    transition: 0.3s !important;
    text-decoration: none !important;
}

.market-box img {
    max-width: 100% !important;
    max-height: 85% !important;
    object-fit: contain !important;
    filter: none !important; 
}

.market-box.shopee:hover {
    border-color: #ee4d2d !important;
    background: rgba(238, 77, 45, 0.1) !important;
}

.market-box.tokped:hover {
    border-color: #42b549 !important;
    background: rgba(66, 181, 73, 0.1) !important;
}

.market-box.tokped img { filter: saturate(1.5) !important; }

/* Footer Links & Contact */
.footer-col-links h4, .footer-col-contact h4 {
    color: #ff7e41 !important;
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
}

.footer-col-links ul { list-style: none !important; padding: 0 !important; }

.footer-col-links ul li a {
    color: #bbb !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
    transition: 0.3s;
}

.footer-col-links ul li a:hover { color: #ff7e41 !important; }

.contact-item {
    display: flex !important;
    align-items: center !important; /* KUNCI: Membuat ikon & teks sejajar tengah secara vertikal */
    gap: 15px !important;           /* Jarak antara ikon dan teks */
    margin-bottom: 15px !important;
    color: #bbb !important;
}

.contact-item i {
    color: #ff7e41 !important;
    width: 25px !important;         /* Paksa lebar ikon sama semua (25px) agar teks di bawahnya lurus vertikal */
    text-align: center !important;  /* Ikon berada di tengah-tengah area 25px tersebut */
    font-size: 1.1rem !important;
}

.contact-item span {
    line-height: 1 !important;      /* Menghapus ruang kosong di atas/bawah teks */
    display: inline-block !important;
}

/* Kemitraan & Sosmed */
.kemitraan-block {
    margin-top: 35px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.kemitraan-block h4 {
    color: #ff7e41 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.wa-link-green {
    color: #25d366 !important;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.wa-link-green:hover { filter: brightness(1.2); text-decoration: underline; }

.social-links-footer {
    margin-left: 60px;
    margin-top: 25px;
}

.social-links-footer p {
    color: #ff7e41 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.social-icons { display: flex; gap: 20px; }

.social-icons a {
    color: #bbb;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a .fa-instagram:hover { color: #E1306C; transform: translateY(-3px); }
.social-icons a .fa-tiktok:hover { color: #69C9D0; transform: translateY(-3px); }
.social-icons a .fa-facebook-f:hover { color: #1877F2; transform: translateY(-3px); }    
.social-icons a .fa-linkedin-in:hover { color: #0077B5; transform: translateY(-3px); }

.footer-bottom {
    margin-top: 40px !important;
    padding-top: 20px !important;
    border-top: 1px solid #222 !important;
    text-align: center !important;
    color: #444 !important;
}

/* --- 7. ANIMASI REVEAL (JS TRIGGER) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .section-title {
    opacity: 1;
    transform: translateY(0);
}

/* --- STYLING KEUNGGULAN --- */
.features-section {
    padding: 100px 10%;
    background: #050505;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item i {
    font-size: 3rem;
    color: #ff7e41;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-item p {
    color: #888;
    line-height: 1.6;
}

/* --- STYLING KRITIK & SARAN --- */
.feedback-section {
    padding: 80px 10%;
    background: linear-gradient(to bottom, #000, #0d0d0d);
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background: #111;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #222;
}

.feedback-info h2 {
    font-size: 2.5rem;
    color: #ff7e41;
    margin-bottom: 20px;
}

.feedback-info p {
    color: #bbb;
    line-height: 1.8;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.feedback-form input, .feedback-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.feedback-form input:focus, .feedback-form textarea:focus {
    border-color: #ff7e41;
}

.feedback-form textarea {
    height: 120px;
    resize: none;
}

/* Responsive Form */
@media (max-width: 768px) {
    .feedback-container { grid-template-columns: 1fr; }
    .input-row { flex-direction: column; }
}
/* --- STYLING GALERI PRODUKSI --- */
.gallery-section {
    padding: 80px 10%;
    background: #000;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden; /* Memotong gambar yang nge-zoom */
    border: 1px solid #222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efek Hover Gambar */
.gallery-item:hover img {
    transform: scale(1.1); /* Zoom masuk pelan */
}

/* Overlay Teks di Atas Gambar */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ff7e41;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
/* --- STYLING FAQ --- */
.faq-section {
    padding: 80px 10%;
    background: #000;
}

.faq-container {
    max-width: 850px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
    padding: 25px 0;
    transition: 0.3s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #ff7e41; /* Warna oranye briket */
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Efek sedikit terang saat kursor di atas pertanyaan */
.faq-item:hover {
    padding-left: 10px;
    border-bottom-color: #333;
}
/* --- PARTNERS PAGE STYLING --- */
.partners-section {
    padding: 100px 10%;
    background: #000;
    min-height: 100vh;
}

.form-container-premium {
    max-width: 700px;
    margin: 0 auto;
    background: #0d0d0d;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h1 {
    color: #ff7e41;
    font-size: 2rem;
    text-transform: uppercase;
}

.form-header p {
    color: #888;
    font-size: 0.9rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.premium-form input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.premium-form input:focus {
    border-color: #ff7e41;
}

.btn-submit-wa {
    width: 100%;
    background: #25d366;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit-wa:hover {
    background: #1eb954;
    transform: translateY(-2px);
}

/* Responsif untuk HP */
@media (max-width: 600px) {
    .input-grid { grid-template-columns: 1fr; }
}
/* --- GHOSTBRICX ABOUT PAGE VARIABLES --- */
:root {
    --orange: #ff7e41;
    --dark-bg: #0d0d0d;
    --black: #000;
    --grey-text: #bbb;
    --border-color: #222;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Common Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- ABOUT HERO RE-DESIGN --- */
.about-hero-v2 {
    position: relative;
    height: 70vh;
    background: url('assets/hero-bg.jpg'); /* Ganti dengan foto briket/batok yang artistik */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Efek gelap transparan di atas gambar */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    z-index: 1;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pre-title {
    color: #666;
    letter-spacing: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.about-hero-v2 h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    letter-spacing: 15px;
    margin: 0;
    line-height: 1;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: #ff7e41;
    margin: 25px auto;
}

.about-hero-v2 p {
    font-size: 1.1rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* --- ABOUT INTRO RE-DESIGN --- */
.about-intro-v2 {
    padding: 120px 0;
    background: #000;
}

.intro-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-accent-line {
    width: 4px;
    height: 150px;
    background: linear-gradient(to bottom, #ff7e41, transparent);
    border-radius: 2px;
}

.sub-heading {
    color: #ff7e41;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.intro-main-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-main-content p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.8;
    max-width: 800px;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .intro-main-content h2 { font-size: 2rem; }
    .about-hero-v2 h1 { letter-spacing: 5px; }
}

/* 3. Features Grid (Icon Box) */
.features-icons {
    padding: 80px 0;
    background: var(--black);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.icon-box {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.icon-box:hover {
    border-color: var(--orange);
    transform: translateY(-10px);
}

.icon-box i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.icon-box h4 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icon-box p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 4. Trust Badges (Eco, Lab, Export) */
.trust-badges {
    padding: 60px 0;
    background: var(--dark-bg);
    text-align: center;
    padding-bottom: 100px;
}
@media (max-width: 600px) {
    .certification-section {
        padding-bottom: 50px !important; /* Lebih kecil untuk layar HP */
    }
}

.badge-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-item i { font-size: 2.5rem; }
.badge-item span {
    color: #666;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Badge Colors */
.eco { color: #2ecc71; }
.lab { color: #3498db; }
.exp { color: #f1c40f; }

/* 5. Responsive Fix */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-logo { order: -1; } /* Logo pindah ke atas di HP */
    
    .badge-flex { gap: 30px; }
}
/* --- ECO COMMITMENT STYLING --- */
.eco-commitment {
    padding: 100px 0;
    background: #0d0d0d;
}

.eco-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.eco-image {
    flex: 1;
    text-align: center;
}

.eco-image i {
    font-size: 10rem;
    color: #40df3a; /* Warna Hijau Alam */
    opacity: 1;
}

.eco-text {
    flex: 1.5;
}

.eco-text h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.eco-text p {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.eco-list {
    list-style: none;
    padding: 0;
}

.eco-list li {
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.eco-list li i {
    color: #25d366;
}

/* Responsive */
@media (max-width: 768px) {
    .eco-flex { flex-direction: column; text-align: center; gap: 40px; }
}
/* --- COMING SOON PAGE --- */
.coming-soon-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    text-align: center;
    padding: 0 10%;
}

.cs-badge {
    color: #ff7e41;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.cs-container h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    color: #fff;
    letter-spacing: 10px;
    margin: 0;
    line-height: 1.1;
}

.cs-container p {
    color: #555;
    font-size: 1.1rem;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animasi Loader Oranye */
.cs-loader {
    width: 150px;
    height: 2px;
    background: #1a1a1a;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.cs-loader-bar {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #ff7e41;
    animation: cs-slide 2s infinite ease-in-out;
}

@keyframes cs-slide {
    0% { left: -50%; }
    100% { left: 100%; }
}

.btn-cs-home {
    display: inline-block;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #333;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-cs-home:hover {
    color: #ff7e41;
    border-color: #ff7e41;
    background: rgba(255, 126, 65, 0.05);
}
.detail-container { padding: 120px 10% 80px; background: #000; color: #fff; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.detail-image img { width: 100%; border-radius: 20px; border: 1px solid #222; }

.price { font-size: 2rem; color: #ff7e41; font-weight: bold; margin: 20px 0; }

.btn-xendit { 
    width: 100%; padding: 15px; background: #ff7e41; border: none; 
    color: #000; font-weight: bold; border-radius: 10px; cursor: pointer;
}

.separator { text-align: center; margin: 20px 0; border-bottom: 1px solid #222; line-height: 0.1em; }
.separator span { background: #000; padding: 0 10px; color: #555; }

.marketplace-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
.btn-shopee { background: #ee4d2d; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; color: #fff; }
.btn-tokped { background: #03ac0e; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; color: #fff; }
/* Batasi ukuran gambar agar tidak kegedean */
.main-product-img {
    width: 100%;
    max-width: 500px;      /* Batas lebar maksimal gambar */
    height: 500px;         /* Tentukan tinggi tetap agar seragam */
    object-fit: cover;     /* Gambar akan terpotong rapi, tidak gepeng */
    border-radius: 20px;   /* Sudut melengkung biar elegan */
    display: block;
    margin: 0 auto;        /* Biar posisi di tengah kalau di mobile */
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Penyesuaian untuk layar HP */
@media (max-width: 768px) {
    .main-product-img {
        height: 350px;     /* Lebih pendek sedikit di HP */
        max-width: 100%;
    }
}
/* --- DETAIL PRODUK MODERN STYLE --- */
.detail-section { padding: 120px 0 80px; background: #000; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Stepper Modern */
.modern-qty-container { margin: 35px 0; }
.modern-qty-container label { display: block; color: #555; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

.stepper-modern {
    display: flex;
    background: #111;
    width: fit-content;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid #222;
}
.stepper-modern button {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    color: #ff7e41;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}
.stepper-modern button:hover { background: rgba(255, 126, 65, 0.1); }
.stepper-modern input {
    width: 60px;
    background: transparent;
    border: none;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Marketplace Logo Buttons */
.btn-main-pay {
    width: 100%;
    height: 60px;
    background: #ff7e41;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}
.btn-main-pay:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 126, 65, 0.3); }

.divider { text-align: center; margin: 30px 0; border-bottom: 1px solid #1a1a1a; line-height: 0.1em; }
.divider span { background: #000; padding: 0 15px; color: #444; font-size: 0.75rem; text-transform: uppercase; }

/* --- MARKETPLACE LOGO BUTTONS (ALWAYS ON) --- */
.market-logo-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.market-icon-btn {
    height: 60px;
    background: #0d0d0d; /* Sedikit lebih terang dari hitam murni agar terlihat kontras */
    border: 1px solid #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Logo langsung berwarna (grayscale dihapus) */
.market-icon-btn img { 
    height: 26px; 
    filter: none; /* Menghapus efek abu-abu */
    opacity: 1;    /* Langsung terang 100% */
    transition: 0.3s; 
}

/* Tambahkan border warna brand secara halus agar terlihat "menyala" */
.market-icon-btn.shopee {
    border-color: rgba(238, 77, 45, 0.3); /* Oranye Shopee tipis */
}

.market-icon-btn.tokped {
    border-color: rgba(3, 172, 14, 0.3); /* Hijau Tokopedia tipis */
}

/* EFEK HOVER: Tetap ada agar tetap interaktif saat disentuh */
.market-icon-btn.shopee:hover { 
    background: rgba(238, 77, 45, 0.1); 
    border-color: #EE4D2D; /* Oranye Shopee asli */
    transform: translateY(-3px);
}

.market-icon-btn.tokped:hover { 
    background: rgba(3, 172, 14, 0.1); 
    border-color: #03AC0E; /* Hijau Tokopedia asli */
    transform: translateY(-3px);
}
/* Styling Tombol Logout Admin */
.btn-logout {
    background: rgba(255, 68, 68, 0.1); /* Merah transparan halus */
    color: #ff4444 !important;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ff4444;
    transition: 0.3s;
    font-size: 0.9em;
}

.btn-logout:hover {
    background: #ff4444;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

/* Tambahan: Penanda kalau kita lagi di Mode Admin */
.admin-indicator {
    background: #ff7e41;
    color: #000;
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 0;
    letter-spacing: 2px;
}
.btn-primary:hover {
    background: #fff;
    color: #ff7e41;
    transform: scale(1.05);
    transition: 0.3s;
}
/* ============================================================
   RESPONSIVE FINAL GHOSTBRICX (MOBILE READY)
   ============================================================ */

@media (max-width: 768px) {
    /* --- 1. NAVBAR (Logo Kiri, Menu Kanan) --- */
    .navbar {
        padding: 15px 20px !important;
        position: relative;
    }

    .nav-links {
        display: none !important; /* Sembunyikan menu asli */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        flex-direction: column;
        gap: 0 !important;
        border-bottom: 2px solid #ff7e41;
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #1a1a1a;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        width: 100%;
    }

    /* Hamburger Icon Styling */
    .menu-checkbox { display: none !important; }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #ff7e41;
        transition: 0.3s;
    }

    /* Logika Klik Menu Muncul */
    #menu-toggle:checked ~ .nav-links {
        display: flex !important;
    }

    /* --- 2. HERO SECTION (Tetap Rata Kiri) --- */
    .hero {
        padding: 0 5% !important; /* Kurangi padding samping di HP */
        justify-content: flex-start !important; /* Pastikan tetap di kiri */
    }

    .hero-content {
        text-align: left !important; /* Paksa tetap rata kiri sesuai permintaan */
        max-width: 100% !important;
    }

    .hero h1 {
        font-size: 2.2rem !important; /* Kecilkan font agar tidak berantakan */
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem !important;
        br { display: none; } /* Hilangkan breakline agar teks mengalir */
    }

    /* --- 3. FOOTER (Fit to Mobile) --- */
    .footer-container {
        grid-template-columns: 1fr !important; /* Jadikan 1 kolom saja */
        gap: 30px !important;
        text-align: left !important;
    }

    .brand-sub-footer, .market-box-container, .social-links-footer {
        margin-left: 0 !important; /* Hilangkan margin-left 60px yang buat miring */
        justify-content: flex-start !important;
    }

    .footer-logo-brand {
        justify-content: flex-start !important;
    }

    /* --- 4. GRID PRODUK & LAINNYA --- */
    .produk-grid, .features-grid, .gallery-grid, .icon-grid {
        grid-template-columns: 1fr !important; /* Semua grid jadi 1 kolom */
        padding: 0 10px;
    }

    .feedback-container {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .input-row {
        flex-direction: column;
    }

    /* Pastikan tidak ada scroll horizontal */
    body, html {
        overflow-x: hidden !important;
    }
}

/* Sembunyikan hamburger di Desktop */
@media (min-width: 769px) {
    .hamburger, .menu-checkbox {
        display: none !important;
    }
}
/* --- Perbaikan Responsive untuk HP --- */
@media (max-width: 768px) {
    /* 1. Ubah grid dari 2 kolom menjadi 1 kolom vertikal */
    .detail-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    /* 2. Pastikan gambar menyesuaikan lebar layar */
    .detail-image-wrapper {
        width: 100%;
    }

    .main-product-img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* 3. Atur info produk agar nyaman dibaca */
    .detail-info {
        text-align: left; /* Mengubah tulisan ke kiri */
        padding: 0 15px;
    }
    .badg3, .price-tag, .description-box, .modern-qty-container {
        text-align: left; /* Memastikan semua elemen di dalamnya ikut ke kiri */
    }

    .price-tag {
        font-size: 1.5rem;
    }

    /* 4. Pastikan area tombol pembayaran lebar penuh */
    .btn-main-pay {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }

    /* 5. Susun logo marketplace agar tetap rapi */
    .market-logo-grid {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .market-icon-btn img {
        width: 50px; /* Ukuran icon lebih kecil sedikit untuk HP */
    }
}
@media (max-width: 768px) {
    /* Membuat container tombol jadi penuh ke samping */
    .market-logo-grid {
        display: flex;
        gap: 10px; /* Jarak antar tombol */
        width: 100%;
        padding: 0 15px; /* Jarak dari pinggir layar HP */
        box-sizing: border-box;
    }

    /* Membuat masing-masing tombol punya lebar yang sama (bagi dua) */
    .market-icon-btn {
        flex: 1; /* Ini kuncinya agar lebar dibagi rata */
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1a1a1a; /* Warna background kotak tombol */
        padding: 12px;
        border-radius: 10px;
        border: 1px solid #333;
    }

    /* Mengatur ukuran logo di dalam tombol */
    .market-icon-btn img {
        width: 100%;
        max-width: 80px; /* Batas maksimal lebar logo agar tidak terlalu raksasa */
        height: auto;
    }
}
/*tentang oranye*/
.orange{
    color: #ff7e41;
}
/* --- Lacak Tombol --- */
.btn-lacak {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-lacak:hover {
    background-color: #ff8c00;
    color: #000;
}
/* --- GAYA SOP (TEMA GELAP / ESTETIK) --- */

/* Penyesuaian Bagian Utama */
.sop-section {
    padding: 80px 20px;
    background-color: #000000; /* Latar belakang hitam pekat sesuai tema */
    min-height: 100vh;
    color: #ffffff; /* Warna teks dasar putih */
}

/* Bagian Header SOP (Jika ada, agar warnanya menyatu) */
.sop-header {
    text-align: center;
    margin-bottom: 40px;
}

.sop-header h2 {
    color: #ffffff;
    font-size: 2rem;
}

.sop-header p {
    color: #a0a0a0;
}

/* Kontainer Daftar SOP */
.sop-list {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    max-width: 900px;
    margin: 0 auto;
}

/* Gaya Kartu SOP - Mode Gelap */
.step-card {
    display: flex;
    background-color: #0a0a0a; /* Abu-abu sangat gelap, beda tipis dengan background utama */
    border: 1px solid #1f1f1f; /* Garis tepi tipis agar kartu terbentuk */
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); /* Bayangan hitam pekat */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-left: 5px solid transparent; 
}

/* Efek Hover Kartu */
.step-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(255, 115, 0, 0.05); /* Glow tipis warna oranye */
    border-left: 5px solid #ff7300; /* Garis aksen oranye khas GHOSTBRICX */
    border-color: #333333;
}

/* Nomor Langkah */
.step-number {
    background-color: #111111; /* Sedikit lebih terang dari kartu */
    color: #ff7300; /* Angka warna oranye agar mencolok */
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px; 
    padding: 20px;
    border-right: 1px solid #1f1f1f;
}

/* Konten Teks di Dalam Kartu */
.step-content {
    padding: 30px;
    flex-grow: 1;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #ffffff; /* Judul warna putih */
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #a0a0a0; /* Teks deskripsi abu-abu terang agar nyaman dibaca di layar hitam */
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsif untuk Layar Mobile */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column; 
    }
    
    .step-number {
        min-width: auto;
        width: 100%;
        padding: 15px;
        font-size: 2rem;
        border-right: none;
        border-bottom: 1px solid #1f1f1f; /* Pindahkan garis batas ke bawah */
    }
}
/* --- HERO SOP SECTION --- */
.hero-sop {
    padding: 150px 20px 80px; /* Padding atas besar untuk menghindari tertutup navbar */
    background: linear-gradient(135deg, #000000 0%, #1a0b00 100%); /* Gradasi hitam ke oranye sangat gelap */
    text-align: center;
    border-bottom: 1px solid #1f1f1f;
}

.hero-sop-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge-orange {
    display: inline-block;
    background-color: rgba(255, 115, 0, 0.1);
    color: #ff7300;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 115, 0, 0.3);
}

.hero-sop h1 {
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-sop p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- HIGHLIGHT KUALITAS --- */
.kualitas-section {
    background-color: #000000;
    padding: 60px 20px 20px; /* Jembatan antara hero dan list SOP */
}

.kualitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.kualitas-card {
    background-color: #0a0a0a;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.kualitas-card:hover {
    transform: translateY(-5px);
    border-color: #ff7300;
}

.kualitas-card i {
    font-size: 2.5rem;
    color: #ff7300;
    margin-bottom: 20px;
}

.kualitas-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.kualitas-card p {
    color: #888888;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* --- Hapus padding atas di sop-section karena sudah diganti banner --- */
.sop-section {
    padding: 40px 20px 80px; 
    background-color: #000000;
    color: #ffffff;
}

/* --- CTA BAWAH --- */
.cta-sop {
    background-color: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-download {
    display: inline-block;
    background-color: #ff7300;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-download:hover {
    background-color: #e66600;
    transform: scale(1.05);
}

.btn-download i {
    margin-right: 8px;
}

/* Responsif Hero */
@media (max-width: 768px) {
    .hero-sop h1 {
        font-size: 2.2rem;
    }
}
/* ============================================================
   RESPONSIVE DESIGN UNTUK HALAMAN SOP (GHOSTBRICX)
   ============================================================ */

/* Untuk layar HP (Lebar maksimal 768px) */
@media screen and (max-width: 768px) {
    
    /* 1. Hero Section */
    .hero-sop {
        padding: 60px 20px; /* Kurangi padding agar tidak terlalu tinggi */
        text-align: center;
    }

    .hero-sop h1 {
        font-size: 28px; /* Kecilkan ukuran judul */
        line-height: 1.2;
    }

    .hero-sop p {
        font-size: 14px;
    }

    /* 2. Kualitas Section (Kartu 3 Kolom jadi 1 Kolom) */
    .kualitas-grid {
        display: grid;
        grid-template-columns: 1fr; /* Paksa jadi satu kolom saja */
        gap: 15px;
        padding: 20px;
    }

    .kualitas-card {
        padding: 20px;
    }

    /* 3. SOP Section (Daftar Langkah-langkah) */
    .sop-section {
        padding: 20px;
    }

    .step-card {
        flex-direction: column; /* Nomor dan teks jadi tumpuk vertikal */
        align-items: flex-start;
        padding: 20px;
        position: relative;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-bottom: 15px; /* Kasih jarak bawah setelah nomor */
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 4. CTA Section (Bagian Download) */
    .cta-sop {
        padding: 40px 20px;
        text-align: center;
    }

    .cta-sop h2 {
        font-size: 22px;
    }

    .btn-download {
        display: block; /* Buat tombol memenuhi lebar layar HP */
        width: 100%;
        padding: 15px;
        font-size: 16px;
        box-sizing: border-box; /* Pastikan padding tidak merusak lebar */
    }

    /* 5. Utility Spacing */
    .badge-orange {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* Untuk layar tablet (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .kualitas-grid {
        grid-template-columns: 1fr 1fr; /* Tampilan tablet jadi 2 kolom */
    }
}