/* Perbaikan Kontras untuk WooCommerce Store Notice (Pita Pemberitahuan) */
.woocommerce-store-notice, 
p.demo_store {
    background-color: yellow !important; /* Latar belakang hitam pekat */
    color: #000000 !important;           /* Teks putih bersih */
    border-top: 1px solid #000000      /* Garis pembatas agar lebih jelas */
    padding: 15px 0 !important;
}

/* Pastikan link "Tutup" atau "Dismiss" juga memiliki kontras tinggi */
.woocommerce-store-notice a.woocommerce-store-notice__dismiss-link {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: bold !important;
}

/* Efek saat link Tutup di-hover */
.woocommerce-store-notice a.woocommerce-store-notice__dismiss-link:hover {
    color: #ff0000 !important; /* Berubah jadi merah saat akan ditutup */
}

/* Perbaikan Kontras Tombol WhatsApp */
.cnb-action[data-action-type="WHATSAPP"] {
    background-color: #008000 !important; /* Hijau yang lebih tua untuk kontras lebih baik */
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
   /* padding: 10px 20px !important;
    border-radius: 0px;*/
    text-decoration: none !important;
}

/* Pastikan teks di dalamnya tebal dan putih pekat */
.cnb-action[data-action-type="WHATSAPP"] span,
.cnb-action[data-action-type="WHATSAPP"] i {
    color: #ffffff !important;
    font-weight: bold !important;
}

/* Memberikan ruang di atas body agar tidak tertutup bar */
body.woocommerce-demo-store {
    margin-top: 55px !important; /* Sesuaikan angka ini dengan tinggi bar Anda */
}

/* Penyesuaian untuk tampilan Mobile (biasanya bar lebih tinggi karena teks turun) */
@media (max-width: 768px) {
    body.woocommerce-demo-store {
        margin-top: 80px !important; /* Ruang lebih besar untuk mobile */
    }
}