/*
Theme Name: Sumber Pelita Mataram Theme
Theme URI: https://sumberpelitamataram.com
Author: Sumber Pelita Team
Author URI: https://sumberpelitamataram.com
Description: Tema WordPress khusus distributor minuman dengan nuansa Merah Putih Elegan.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sumber-pelita
*/

/* File ini diperlukan agar WordPress mengenali ini sebagai tema.
   Styling utama menggunakan Tailwind CSS (CDN) yang dimuat di functions.php 
*/

/* Custom Scrollbar Overrides */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #B91C1C; /* Merah Elegan */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #991B1B;
}

.hero-bg {
    background-image: linear-gradient(rgba(60, 0, 0, 0.7), rgba(60, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544531586-fde5298cdd40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Toast Notification Style */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #1F2937;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}
#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}