/* ===============================================*/
/*    Style untuk Header (Navbar)                 */
/* ===============================================*/

/* Mengubah warna background navbar */
.navbar {
    background-color: #FFE4B3;
    /* Warna krem/beige seperti di gambar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mengubah style font pada link navigasi */
.navbar .nav-link {
    color: #383838;
    /* Warna teks agak gelap, tidak hitam pekat */
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    /* Sedikit memperbesar ukuran font */
    margin-left: 1rem;
    /* Memberi jarak antar menu */
}

/* Efek saat kursor mouse di atas link */
.navbar .nav-link:hover {
    color: #000000;
    /* Warna teks menjadi hitam saat di-hover */
}

/* ===============================================*/
/*    Animasi Fade-in untuk Header                */
/* ===============================================*/

/* Keadaan AWAL: Sembunyikan header di atas layar */
.header-fade-in {
    opacity: 0;
    transform: translateY(-100%);
    /* Geser ke atas sejauh tinggi header itu sendiri */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AKHIR: Munculkan header setelah class 'visible' ditambahkan */
.header-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    /* Kembali ke posisi normal */
}



/* ===============================================*/
/*    Style untuk Section Hero (Final)            */
/* ===============================================*/

#hero {
    position: relative;
    height: 85vh;
    overflow: hidden;

    /* Menetapkan background statis */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/papan_bunga.webp');
    background-size: cover;
    /* Memastikan gambar menutupi seluruh area */
    background-position: center;
    /* Memposisikan gambar di tengah */
    background-attachment: fixed;
    /* (Opsional) Efek parallax saat scroll */
}

.hero-text-box {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
}

/* TAMBAHKAN KODE BARU DI BAWAH INI */
.hero-logo-img {
    max-width: 400px;
    /* Batas lebar maksimum logo */
    width: 80%;
    /* Lebar relatif agar responsif */
    height: auto;
    /* Menjaga rasio aspek gambar */
    margin-bottom: 1.5rem;
    /* Jarak ke paragraf di bawahnya */
}

.hero-text-box p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    color: #FFF2D9;
    /* <-- UBAH NILAI INI */

}

.btn-hero:active{
border: 1px solid #f3d296 !important;
background-color: #f3d296 !important;

}

.fade-in-container .btn-hero {
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    background-color: transparent;
    border: 1px solid #FFF2D9;
    color: #FFF2D9;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.fade-in-container .btn-hero:hover {
    background-color: #FFF2D9;
    color: #353535;
    fill: #353535;
}

.fade-in-container .btn-hero svg {
    margin-left: 8px;
}


/* ===============================================*/
/*    Animasi Fade-in untuk Section Hero          */
/* ===============================================*/

/* Keadaan AWAL: Sembunyikan semua elemen di dalam kontainer */
.fade-in-container>* {
    opacity: 0;
    transform: translateY(20px);
    /* Sedikit bergeser ke bawah */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AKHIR: Munculkan elemen setelah class 'visible' ditambahkan */
.fade-in-container.visible>* {
    opacity: 1;
    transform: translateY(0);
    /* Kembali ke posisi semula */
}

/* Membuat efek muncul berurutan (staggered effect) */
.fade-in-container.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

/* Logo */
.fade-in-container.visible>*:nth-child(2) {
    transition-delay: 0.3s;
}

/* Paragraf */


/* ================================================= */
/* Style untuk Testimonial Slider di dalam Hero (FIX)*/
/* ================================================= */

/* (Kode Media Query untuk mobile tetap sama) */
@media (max-width: 768px) {
    .hero-text-box h1 {
        font-size: 3rem;
        line-height: 1.1;
        /* <-- TAMBAHKAN BARIS INI di media query */
    }

    .hero-text-box h1 span {
        font-size: 2rem;
    }

    .hero-text-box p {
        font-size: 1rem;
    }
}



/* ===============================================*/
/*    Style untuk Section Klien (Marquee)         */
/* ===============================================*/

#clients {
    background-color: #f8f9fa;
    /* Warna background abu-abu sangat muda */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* Menyembunyikan teks yang berada di luar area */
    white-space: nowrap;
    /* Mencegah teks turun ke baris baru */
}

.marquee-content {
    display: inline-block;
    /* Membuat div mengikuti lebar kontennya */
    /* Menerapkan animasi */
    animation: marquee 30s linear infinite;
}

/* Animasi akan berhenti saat kursor mouse di atasnya */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    display: inline-block;
    color: #353535;
    /* Warna teks abu-abu */
    font-size: 1.1rem;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    padding: 0 2rem;
    /* Jarak antar nama klien */
}

/* Mendefinisikan keyframe animasi */
@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
        /* Bergerak sejauh setengah dari total lebar */
    }
}



/* ===============================================*/
/*    Style untuk Section About Us                */
/* ===============================================*/

#about {

    margin-top: 120px;
    background-color: #ffffff;
    /* Background putih bersih */
}

.about-title {
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 2px;
    /* Jarak antar huruf */
    color: #353535;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* TAMBAHKAN KODE BARU DI BAWAH INI */
.about-logo-img {
    max-width: 260px;
    /* Batasi lebar maksimum logo */
    height: auto;
}

.about-text {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    /* Jarak antar baris agar mudah dibaca */
    color: #353535;
    text-align: justify;
}

/* Style untuk Video di Section About Us */
#about .col-md-6:nth-child(2) {
    /* 1. Buat kolom ini setinggi kolom sebelahnya agar layout seimbang */
    align-self: stretch;
    /* 2. Jadikan flex container untuk menengahkan video di dalamnya */
    display: flex;
    align-items: center;
}

#about video {
    width: 100%;
    height: 100%;
    /* Sesuai permintaan Anda */
    object-fit: cover;
    /* Kunci: Membuat video mengisi area tanpa menjadi gepeng */
    border-radius: 0.75rem;
    /* Sama seperti .rounded-3 Bootstrap */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    /* Sama seperti .shadow-lg Bootstrap */
    pointer-events: none;
    /* Membuat video tidak bisa diklik atau di-pause oleh user */
}


/* ===============================================*/
/*    Animasi Fade-in Saat Scroll                 */
/* ===============================================*/

/* Mencegah overflow horizontal yang disebabkan oleh animasi translateX */
.reveal-on-scroll {
    overflow-x: hidden;
}

/* Menargetkan semua kolom di dalam section yang akan dianimasikan */
.reveal-on-scroll .col-md-6 {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Keadaan AWAL untuk kolom KIRI */
.reveal-on-scroll .col-md-6:nth-child(1) {
    transform: translateX(-50px);
    /* Geser ke kiri */
}

/* Keadaan AWAL untuk kolom KANAN */
.reveal-on-scroll .col-md-6:nth-child(2) {
    transform: translateX(50px);
    /* Geser ke kanan */
}

/* Keadaan AKHIR: saat class 'visible' ditambahkan, kembalikan ke posisi normal */
.reveal-on-scroll.visible .col-md-6 {
    opacity: 1;
    transform: translateX(0);
}

/* Penyesuaian untuk layar kecil (Mobile) */
@media (max-width: 767px) {
    #about {
        text-align: center;
        margin-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-title {
        text-align: center;
        /* Menengahkan semua teks di mobile */
    }

    .about-heading span {
        margin-bottom: 1.5rem;
    }

    /* Memberi jarak atas pada kolom video di mobile */
    #about .col-md-6:nth-child(2) {
        margin-top: 2rem;
    }
}



/* ===============================================*/
/*    Style untuk Section Product                 */
/* ===============================================*/

#products {
    margin-top: 120px;
    background-color: #ffffff;
}

/* Judul section yang bisa dipakai ulang */
.section-title {
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 3px;
    color: #353535;
    text-transform: uppercase;
}

.product-card {
    text-align: center;
}

.product-card img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card h5 {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    color: #353535;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.product-desc {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    color: #353535;
    font-size: 0.9rem;
    height: 60px;
    /* Memberi tinggi tetap agar layout rapi */
}

.product-price {
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    color: #353535;
    margin-bottom: 1.5rem;
}

/* Tombol Pesan (Warna Krem) */
.btn-pesan {
    background-color: #FFF2D9;
    /* Warna krem seperti di header */
    color: #383838;
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-pesan:active {
    background-color: #f0c16b  !important;
    border-color: #f0c16b  !important;
}

.btn-pesan:hover {
    background-color: #e9d3a2;
    border-color: #e9d3a2;
    color: #383838;
}

/* Box Pesanan Custom */
.custom-order-box {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.custom-order-box h6 {
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.2rem;

}

.custom-order-box p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    color: #353535;
    font-size: 0.9rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Tombol Pesanan Custom (Warna Gelap) */
.btn-custom {
    background-color: #353535;
    color: #FFF2D9;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 1px;
    border: 1px solid #2c2c2c;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-custom:active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;

}

.btn-custom:hover {
    background-color: #1d1d1d;
    border-color: #1d1d1d;
    color: #ffffff;
}

/* Keadaan AWAL untuk kolom Produk (col-lg-4) */
.reveal-on-scroll .col-lg-4 {
    opacity: 0;
    transform: translateY(50px);
    /* Geser dari bawah */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AWAL untuk judul dan box custom */
.reveal-on-scroll .col-md-8 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AKHIR: saat class 'visible' ditambahkan */
.reveal-on-scroll.visible .col-lg-4,
.reveal-on-scroll.visible .col-md-8 {
    opacity: 1;
    transform: translateY(0);
}

/* Efek muncul berurutan untuk produk */
.reveal-on-scroll.visible .col-lg-4:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-on-scroll.visible .col-lg-4:nth-child(2) {
    transition-delay: 0.3s;
}

.reveal-on-scroll.visible .col-lg-4:nth-child(3) {
    transition-delay: 0.5s;
}

/* Delay untuk box custom agar muncul setelah produk */
.reveal-on-scroll.visible .custom-order-box {
    transition-delay: 0.7s;
}



/* ===============================================*/
/*    Style untuk Section Gallery (dengan Transisi) */
/* ===============================================*/

#gallery {
    background-color: #ffffff;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    ;

}




.gallery-image {
    border-radius: 15px;
    /* Sudut lebih rounded seperti referensi */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===============================================*/
/*    Animasi Fade-in Saat Scroll (JS CONTROL)    */
/* ===============================================*/

/* --- HANYA ATURAN UNTUK SCROLL ANIMATION --- */

/* Keadaan AWAL untuk judul galeri */
.reveal-on-scroll #gallery .row:first-of-type {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AWAL HANYA untuk 8 item galeri pertama. */
.reveal-on-scroll .gallery-item-wrapper:nth-child(-n+8) {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Keadaan AKHIR untuk scroll: saat class 'visible' ditambahkan */
.reveal-on-scroll.visible #gallery .row:first-of-type,
.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(-n+8) {
    opacity: 1;
    transform: translateY(0);
}

/* Delay HANYA untuk 8 item pertama */
.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(2) {
    transition-delay: 0.15s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(4) {
    transition-delay: 0.25s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(5) {
    transition-delay: 0.3s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth--child(6) {
    transition-delay: 0.35s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(7) {
    transition-delay: 0.4s;
}

.reveal-on-scroll.visible .gallery-item-wrapper:nth-child(8) {
    transition-delay: 0.45s;
}


/* --- KEADAAN AWAL UNTUK ITEM YANG DI-LOAD --- */
/* Kita sembunyikan saja, tanpa transisi di sini */
.gallery-item-wrapper.hidden-gallery-item {
    display: none;
}


/* ===============================================*/
/*    Style untuk Section CTA                     */
/* ===============================================*/

#cta {
    padding: 100px 0;
    /* Memberi ruang atas-bawah yang lapang */
    position: relative;

    /* Mengatur background dengan overlay gelap */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/cta-background.webp');
    background-size: cover;
    background-position: center;
}

.cta-content h2 {
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
    color: #FFF2D9;
    font-size: 2.8rem;
}

.cta-content p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFF2D9;
    /* Warna putih gading agar tidak terlalu silau */
    max-width: 600px;
    /* Batasi lebar paragraf agar mudah dibaca */
    margin-left: auto;
    margin-right: auto;
}

/* Tombol CTA dengan outline */
.btn-cta {
    background-color: transparent;
    border: 2px solid #FFF2D9;
    color: #FFF2D9;
    padding: 12px 35px;
    border-radius: 4px;
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:active {
    background-color: #f3d296 !important;
    color: #353535 !important;
    border: 2px solid #f3d296 !important;
}

.btn-cta:hover {
    background-color: #FFF2D9;
    color: #353535;
}

/* Penyesuaian untuk layar kecil (Mobile) */
@media (max-width: 767px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}


/* ===============================================*/
/*    Style untuk Footer                          */
/* ===============================================*/

#contact {
    background-image: linear-gradient(#FFFFFF, #FFF2D9);
    /* Warna krem yang sama dengan header */
}


#contact .container {
    margin-top: 30px;
}

/* Style untuk logo di footer */
.footer-logo a {
    text-decoration: none;
}



/* Menggunakan Flexbox untuk menata info kontak */
.footer-contact-info {
    display: flex;
    justify-content: center;
    /* Menengahkan semua item */
    align-items: center;
    flex-wrap: wrap;
    /* Memastikan item turun ke bawah di layar kecil */
    gap: 1.5rem;
    /* Memberi jarak antar item */
}

.contact-item {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    color: #353535;
    font-size: 1rem;
}

/* Style untuk link di dalam contact item */
.contact-item a {
    color: #353535;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #000000;
}

/* GANTI DENGAN INI */
.footer-icon {
    width: 20px;
    /* Atur lebar ikon */
    height: 20px;
    /* Atur tinggi ikon */
    margin-right: 8px;
    /* Jarak antara ikon dan teks */
    vertical-align: middle;
    /* Membuat ikon sejajar di tengah dengan teks */
}

/* Style untuk copyright */
.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: #353535;
}


/* ===============================================*/
/*    Style untuk Tombol Back to Top              */
/* ===============================================*/
.back-to-top-btn {
    position: fixed;
    /* <-- Kunci agar menempel di layar */
    bottom: 25px;
    /* Jarak dari bawah */
    right: 25px;
    /* Jarak dari kanan */

    width: 40px;
    height: 40px;
    background-color: #353535;
    /* Warna gelap */
    color: #ffffff;
    /* Warna ikon putih */
    border-radius: 50%;
    /* Membuatnya bulat */

    display: flex;
    /* <-- Untuk menengahkan ikon */
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Ukuran ikon */

    z-index: 1000;
    /* Pastikan di atas semua elemen lain */

    /* Keadaan awal: tidak terlihat dan tidak bisa diklik */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    /* Sedikit di bawah posisi akhir */

    transition: all 0.4s ease;
    /* Transisi untuk semua properti */
}

/* State saat tombol aktif (memiliki class .visible) */
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Kembali ke posisi normal */
}

.back-to-top-btn:hover {
    background-color: #000000;
    /* Warna lebih gelap saat hover */
    color: #ffffff;
}

/* ===============================================*/
/*    Style untuk Modal Kontak Admin              */
/* ===============================================*/

.modal-content {
    border: none;
    outline: none;
}

.modal-title {
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.admin-contact-link {
    text-decoration: none;
    color: inherit;
}

.admin-card {
    border: 1px solid #FFF2D9;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #F8E5BE;
}

.admin-card i {
    font-size: 2.5rem;
    color: #25D366;
    /* Warna hijau WhatsApp */
    margin-right: 15px;
}

.admin-info {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.admin-info strong {
    font-size: 1.1rem;
}

.admin-info span {
    font-size: 0.9rem;
    color: #6c757d;
}



/* ===============================================*/
/*    FIX: Menghilangkan Padding Saat Modal Terbuka */
/* ===============================================*/

/* Saat modal terbuka, Bootstrap menambahkan class .modal-open ke body */
/* Kita paksa padding-right menjadi 0 */
body.modal-open {
    overflow: hidden;
    /* Biarkan overflow tetap hidden */
    padding-right: 0 !important;
}



/* ===============================================*/
/*    Style untuk Modal Form Pemesanan            */
/* ===============================================*/

/* Mengatur font dan tampilan umum di dalam modal */
#orderModal .modal-body {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
}

#orderModal .modal-title {
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
}

/* Style untuk judul sub-bagian form */
#orderFormPart h6 {
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 1rem;
    color: #353535;
}

/* Style untuk input dan label form */
#orderFormPart .form-label {
    font-size: 0.9rem;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    color: #353535;
}



#orderFormPart .form-control,
#orderFormPart .form-select {
    border-radius: 4px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#orderFormPart .form-control:focus,
#orderFormPart .form-select:focus {
    border-color: #F8E5BE;
    box-shadow: 0 0 0 0.25rem rgba(248, 229, 190, 0.5);
}

/* Style untuk tombol "Samakan Info Pengirim" */
.btn-link {
    font-size: 0.8rem !important;
    text-decoration: none;
    font-weight: normal;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Style untuk area Preview */
#previewArea {
    background-color: #f8f9fa;
    border-color: #e9ecef !important;
    min-height: 150px;
}

#previewText {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    text-align: center;
    white-space: pre-wrap;
    /* Memastikan baris baru dihormati */
    color: #212529;
    text-transform: uppercase;
}

/* Style untuk tombol di footer modal */
#orderModal .modal-footer {
    border-top: 1px solid #e9ecef;
}

#orderModal .modal-footer .btn-primary {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #FFE4B3;
    color: #353535;
    border: none;
}

#orderModal .modal-footer .btn-primary:active {
    background-color: #f1c063 !important;

}

#orderModal .modal-footer .btn-primary:hover {
    background-color: #f3ca7d;
}


/* --- Penyesuaian dari Fase Sebelumnya --- */
/* (Pastikan style ini ada untuk Pilihan Admin) */

.admin-card.selectable-admin {
    cursor: pointer;
    /* Menandakan elemen bisa diklik */
}


#orderModal .modal-footer .btn-secondary {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(238, 238, 238) !important;
    color: #353535 !important;
    border: none;

}

#orderModal .modal-footer .btn-secondary:active {
    background-color: #cccccc !important;
}

#orderModal .modal-footer .btn-secondary:hover {
    background-color: #e9e9e9 !important;
    color: #353535 !important;
}


#errorMessageText {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
}


.okk {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #FFE4B3 !important;
    color: #353535 !important;
    border: none;
}

.okk:hover {
    background-color: #f1c063 !important;
}


/* ===============================================*/
/*    Style untuk Overlay Error di Form           */
/* ===============================================*/

/* Pastikan #orderFormPart menjadi 'induk' */
#orderFormPart {
    position: relative;
}

.form-error-overlay {
    position: absolute;
    /* Menutupi 'induk'-nya */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Hitam transparan */
    z-index: 1056;
    /* PENTING: Harus di atas form (z-index modal:1055) tapi di bawah modal error (z-index modal error: 1060) */

    /* Keadaan awal: tersembunyi */
    display: none;
}



/* ===============================================*/
/*    Style untuk Tombol Kontrol Musik            */
/* ===============================================*/

/* Kontainer untuk tombol musik */
.music-control-btn {
    position: fixed;
    bottom: 25px;
    right: 80px; /* Beri jarak dari tombol Back to Top (40px + 15px gap) */
    
    width: 40px;
    height: 40px;
    background-color: #353535;
    color: #ffffff;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* Ukuran ikon piringan */
    
    z-index: 1000;
    cursor: pointer;
    
    /* Keadaan awal: tersembunyi, akan dimunculkan oleh JS */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    
    transition: all 0.4s ease;
}

/* State saat tombol aktif (memiliki class .visible) */
.music-control-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.music-control-btn:hover {
    background-color: #000000;
}

/* State saat musik berputar (memiliki class .playing) */
.music-control-btn.playing i {
    /* Terapkan animasi 'spin' */
    animation: spin 3s linear infinite;
}


/* Definisi animasi putaran */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ===============================================*/
/*    Transisi Fade untuk Bagian Modal            */
/* ===============================================*/

/* Definisikan transisi untuk kedua bagian */
#adminSelectionPart,
#orderFormPart {
    transition: opacity 0.4s ease-in-out;
}

/* Keadaan "tersembunyi" */
#adminSelectionPart.hidden,
#orderFormPart.hidden {
    opacity: 0;
    visibility: hidden;
    /* Gunakan position absolute agar tidak memakan ruang saat transparan */
    position: absolute;
    width: 100%;
}

#adminSelectionPart.fade-out,
#orderFormPart.fade-out {
    opacity: 0;
}