/* style.css - Pusat Desain COASTALCHARM (MOBILE FRIENDLY READY) */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { background-color: #f8fafc; color: #0f172a; display: flex; min-height: 100vh; }

/* =========================================================
   1. DESAIN SIDEBAR & NAVIGASI
========================================================= */
/* Posisi Sidebar Terkunci di Kiri (Untuk Laptop/PC) */
.sidebar { 
    width: 260px; 
    background-color: #ffffff; 
    height: 100vh; 
    border-right: 1px solid #e2e8f0; 
    position: fixed; 
    left: 0; 
    top: 0; 
    z-index: 1000;
}

.sidebar-header { 
    padding: 25px 20px; 
    font-size: 20px; 
    font-weight: 800; 
    color: #4f46e5; 
    text-align: center; 
    border-bottom: 1px solid #e2e8f0; 
    letter-spacing: 0.5px; 
}

.nav-menu { list-style: none; padding: 20px 0; }

.nav-item { 
    padding: 14px 25px; 
    display: flex; 
    align-items: center; 
    color: #64748b; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 14px; 
    transition: all 0.3s ease; 
    border-left: 4px solid transparent;
}

.nav-item i { width: 30px; font-size: 18px; }

.nav-item:hover, .nav-item.active { 
    background-color: #f5f3ff; 
    color: #4f46e5; 
    border-left: 4px solid #4f46e5; 
}

/* =========================================================
   2. DESAIN AREA KONTEN UTAMA
========================================================= */
/* Area Konten Harus Memiliki Margin Kiri Sebesar Lebar Sidebar */
.main-content { 
    margin-left: 260px; 
    padding: 40px; 
    width: calc(100% - 260px); 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
}

/* Desain Header & Profil */
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; }
.header h1 { font-size: 28px; font-weight: 800; color: #0f172a; letter-spacing: -0.5px;}

.user-profile { 
    background: white; 
    padding: 6px 16px 6px 6px; 
    border-radius: 50px; 
    border: 1px solid #e2e8f0; 
    display: flex; 
    align-items: center; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.avatar-initial { 
    width: 36px; height: 36px; background: #4f46e5; color: white; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; font-weight: 800; margin-right: 12px; 
}

.profile-details { padding-right: 5px; }
.profile-name { font-weight: 700; color: #0f172a; display: block; line-height: 1.2; }
.profile-role { font-size: 10px; color: #4f46e5; font-weight: 800; text-transform: uppercase; }

/* Desain Kartu & Tabel Umum */
.card { background: white; padding: 25px; border-radius: 20px; border: 1px solid #f1f5f9; box-shadow: 0 4px 20px -2px rgba(0,0,0,0.03); margin-bottom: 30px; }
.card-title { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #0f172a; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }

/* BUNGKUSAN TABEL GLOBAL AGAR BISA DISWIPE DI HP */
.tabel-wrapper {
    overflow-x: auto; 
    width: 100%; 
    border-radius: 8px;
}

table { width: 100%; border-collapse: collapse; min-width: 600px; } /* Memaksa tabel tidak gepeng */
th, td { padding: 14px 15px; text-align: left; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
th { background-color: #f8fafc; font-weight: 700; color: #475569; }

footer { margin-top: auto; padding: 30px 0; text-align: center; border-top: 1px solid #e2e8f0; color: #94a3b8; font-size: 13px; }

/* =========================================================
   3. SISTEM WATERMARK GLOBAL (LOGIN & SEMUA HALAMAN)
========================================================= */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-image: url('watermark.png'); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 700px; 
    opacity: 0.15; 
    z-index: 9999; 
    pointer-events: none; 
}

/* =========================================================
   4. UI/UX ENHANCEMENTS (PREMIUM FEEL)
========================================================= */

/* Custom Scrollbar Elegan */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Animasi Fade-In Halus Setiap Load Halaman */
.main-content { animation: fadeInSmooth 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeInSmooth {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Efek Glowing Pada Tombol Utama */
.btn-submit { box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25); }
.btn-submit:hover { box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4); }

/* Efek Hover Tabel Yang Lebih Interaktif */
table tbody tr { transition: all 0.2s ease; }
table tbody tr:hover {
    background-color: #f1f5f9;
    transform: scale(1.005); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: relative; z-index: 2;
}

/* Dashboard Identity Panel */
.welcome-card {
    background: white; border: 1px solid #e2e8f0; display: flex; align-items: center; gap: 25px;
    padding: 30px; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.welcome-logo-box { flex-shrink: 0; width: 85px; height: 85px; background: #f8fafc; border-radius: 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #f1f5f9; }
.welcome-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.welcome-info { flex-grow: 1; }
.welcome-title { font-size: 24px; font-weight: 800; color: #0f172a; margin: 0 0 5px 0; letter-spacing: -0.5px; }
.welcome-desc { font-size: 14px; color: #64748b; font-weight: 500; margin: 0 0 15px 0; }
.welcome-badge { background: #eef2ff; color: #4f46e5; padding: 6px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; border: 1px solid #e0e7ff; }
.header-clock { font-weight: 600; color: #64748b; font-size: 14px; }

/* CSS UNTUK PAGINATION (Katalog Publik) */
.pagination-container { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; margin-bottom: 20px; }
.page-link { background: white; color: #4f46e5; border: 1px solid #cbd5e1; padding: 10px 16px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: 0.2s; }
.page-link:hover { background: #eef2ff; border-color: #4f46e5; }
.page-link.active { background: #4f46e5; color: white; border-color: #4f46e5; box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3); pointer-events: none;}


/* =========================================================
   5. KODE AJAIB RESPONSIVITAS (MOBILE FRIENDLY / HP)
========================================================= */
@media (max-width: 768px) {
    /* Mengubah arah susunan layar menjadi vertikal di HP */
    body { flex-direction: column; }

    /* Mengubah Sidebar menjadi Navigasi Atas yang bisa di-scroll horizontal */
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        z-index: 999;
    }

    .nav-menu {
        display: flex;
        overflow-x: auto; /* Mengaktifkan swipe menu horizontal */
        padding: 10px;
        white-space: nowrap; /* Mencegah menu turun ke bawah */
        scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
    }
    
    .nav-menu::-webkit-scrollbar { display: none; } /* Sembunyikan scrollbar menu di Chrome/Safari */

    .nav-item {
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px;
    }

    .nav-item:hover, .nav-item.active {
        border-left: none;
        border-bottom: 3px solid #4f46e5;
        background-color: transparent;
    }

    /* Mengembalikan Margin Konten Utama */
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 20px; /* Padding dikecilkan agar hemat ruang di HP */
    }

    /* Merapikan Header & Profil Pengguna */
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .header h1 { font-size: 22px; }

    /* Merapikan Kartu Selamat Datang (Dashboard) */
    .welcome-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .card { padding: 15px; } /* Padding kartu disesuaikan dengan layar HP */
    
    /* Pengecilan Watermark di HP */
    body::after { background-size: 350px; }
}

/* ========================================================== */
/* PENYESUAIAN RESPONSIF UNTUK PANEL ADMIN (TABLET & HP)      */
/* ========================================================== */

/* --- PENYESUAIAN LAYAR TABLET / iPAD (max-width: 992px) --- */
@media (max-width: 992px) {
    .max-form-container {
        max-width: 100% !important; /* Form memanfaatkan lebar penuh tablet */
    }
}

/* --- PENYESUAIAN LAYAR HP ANDROID & iPHONE (max-width: 768px) --- */
@media (max-width: 768px) {
    
    /* 1. MEROMBAK SIDEBAR: Dari menu samping, diubah menjadi menu bar atas di HP */
    .sidebar {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        padding: 15px !important;
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0;
    }

    /* Mengatur menu link di dalam sidebar agar berjejer horizontal dan rapi */
    .sidebar-menu {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-top: 15px !important;
    }

    .sidebar-menu a {
        padding: 8px 12px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
        margin-bottom: 0 !important;
    }

    /* 2. KONTEN UTAMA: Hilangkan margin kiri karena posisi sidebar sudah pindah ke atas */
    .main-content {
        margin-left: 0 !important;
        padding: 15px !important;
    }

    /* 3. HEADER ADMIN: Judul halaman dan foto profil ditumpuk vertikal agar tidak sesak */
    .header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .header h1 {
        font-size: 20px !important;
    }

    /* 4. FORM INPUT & GRID: Mengubah inputan 2 kolom menjadi 1 kolom penuh ke bawah */
    .max-form-container {
        margin-top: 15px !important;
    }

    /* Memaksa semua susunan grid pada form admin menjadi satu baris vertikal */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* 5. JURU SELAMAT TABEL DATA (Baju & Transaksi): Mencegah layar HP jebol ke kanan */
    .card {
        padding: 15px !important;
        overflow-x: auto !important; /* Membuat tabel di dalam card bisa digeser horizontal */
        -webkit-overflow-scrolling: touch;
    }

    /* Memaksa tabel tetap proporsional di dalam area geser */
    table {
        width: 100% !important;
        min-width: 650px !important; /* Batas minimal agar teks data baju tidak bertumpuk kaku */
    }
}

/* =========================================================
   1. DESAIN SIDEBAR SAAS PREMIUM (DEEP SLATE)
========================================================= */
.sidebar { 
    width: 260px; 
    height: 100vh; 
    background-color: #0f172a; 
    border-right: 1px solid #1e293b; 
    position: fixed; 
    left: 0; top: 0; z-index: 1000;
    display: flex; flex-direction: column;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
}

/* Modifikasi Scrollbar Khusus Sidebar */
.nav-menu { flex-grow: 1; overflow-y: auto; padding: 15px 12px; list-style: none; margin: 0; }
.nav-menu::-webkit-scrollbar { width: 4px; }
.nav-menu::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }

.sidebar-header { 
    padding: 24px; display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid #1e293b; color: white; font-weight: 800; font-size: 16px; letter-spacing: 1px;
}
.sidebar-logo-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.nav-section-title { font-size: 11px; font-weight: 700; color: #64748b; padding: 15px 12px 8px 12px; text-transform: uppercase; letter-spacing: 1.2px; }

.nav-item { 
    display: flex; align-items: center; padding: 11px 16px; color: #94a3b8; text-decoration: none; 
    font-weight: 500; font-size: 14px; transition: all 0.25s ease; border-radius: 10px; margin-bottom: 3px;
}
.nav-item i { width: 22px; font-size: 15px; margin-right: 12px; color: #64748b; transition: color 0.25s ease; }

.nav-item:hover { background-color: #1e293b; color: #ffffff; padding-left: 20px; }
.nav-item:hover i { color: #818cf8; }

.nav-item.active { background: linear-gradient(90deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 100%); color: #ffffff; font-weight: 600; border-left: 3px solid #6366f1; border-radius: 0 10px 10px 0;}
.nav-item.active i { color: #6366f1; }

.nav-divider { height: 1px; background-color: #1e293b; margin: 10px 12px; }

/* Warna Spesial Tombol */
.nav-voucher { color: #10b981; } .nav-voucher i { color: #10b981; }
.nav-voucher:hover { background: rgba(16, 185, 129, 0.1); color: white; }
.nav-logout { color: #fca5a5; } .nav-logout i { color: #ef4444; }
.nav-logout:hover { background: rgba(239, 68, 68, 0.1); color: white; }

.nav-kasir { justify-content: space-between; }
.badge-notif-kasir { background: #ef4444; color: white; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 8px; animation: pulseBadge 2s infinite; }
@keyframes pulseBadge { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Footer Profil Admin Mini */
.sidebar-footer-profile { padding: 16px 20px; background-color: #0b0f19; border-top: 1px solid #1e293b; display: flex; align-items: center; gap: 12px; }
.sb-avatar { width: 35px; height: 35px; border-radius: 50%; background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.sb-profile-info { overflow: hidden; }
.sb-profile-name { font-size: 13px; font-weight: 600; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-profile-role { font-size: 11px; color: #64748b; font-weight: 500; }

/* =========================================================
   6. TEMA GLASSMORPHISM (KHUSUS LOGIN & REGISTER)
========================================================= */
/* Class khusus agar background ini tidak merusak halaman Admin/Katalog */
.body-auth {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2070') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
    overflow-y: auto; 
    margin: 0;
}

/* Memaksa font Poppins hanya di halaman Auth */
.body-auth * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* --- Panel Kaca Utama --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);  
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%; display: flex; overflow: hidden; position: relative;
}
.glass-panel.login-size { max-width: 900px; }
.glass-panel.register-size { max-width: 950px; margin: 20px 0; }

.glass-panel::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: pantulanKaca 8s infinite; pointer-events: none;
}
@keyframes pantulanKaca { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* --- Sisi Kiri & Kanan --- */
.glass-branding {
    flex: 1.1; padding: 50px 40px; background: rgba(0, 0, 0, 0.15); 
    display: flex; flex-direction: column; justify-content: center;
}
.glass-branding h1 { font-size: 2.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.glass-branding p { font-size: 1rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, 0.85); }

.glass-form { flex: 1.2; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.glass-form h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 5px; }
.glass-form .subtitle { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 25px; }

/* --- Input & Tombol (HANYA BERLAKU DI HALAMAN KACA) --- */
.body-auth .input-group { position: relative; margin-bottom: 18px; }
.body-auth .input-group i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: rgba(255, 255, 255, 0.6); font-size: 1.1rem; transition: 0.3s; }
.body-auth .input-group input {
    width: 100%; padding: 14px 14px 14px 50px; background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 12px; font-size: 0.95rem; color: #ffffff; outline: none; transition: 0.3s ease;
}
.body-auth .input-group input::placeholder { color: rgba(255, 255, 255, 0.4); }
.body-auth .input-group input:focus { background: rgba(255, 255, 255, 0.15); border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
.body-auth .input-group input:focus + i, .body-auth .input-group input:not(:placeholder-shown) + i { color: #ffffff; }

/* Mengunci Autofill agar font putih hanya di halaman kaca */
.body-auth input:-webkit-autofill, 
.body-auth input:-webkit-autofill:hover, 
.body-auth input:-webkit-autofill:focus, 
.body-auth input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.5) inset !important;
    -webkit-text-fill-color: white !important; transition: background-color 5000s ease-in-out 0s;
}

/* Captcha (Register) (HANYA BERLAKU DI HALAMAN KACA) */
.body-auth .captcha-box { display: flex; align-items: center; gap: 15px; background: rgba(255, 255, 255, 0.05); padding: 12px 18px; border-radius: 12px; margin-bottom: 20px; border: 1px dashed rgba(255, 255, 255, 0.4); }
.body-auth .captcha-box span { font-size: 1.2rem; font-weight: 700; color: #ffffff; letter-spacing: 2px; }
.body-auth .captcha-box input { flex: 1; padding: 10px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; font-size: 1rem; color: white; text-align: center; font-weight: bold; outline: none; transition: 0.3s; }
.body-auth .captcha-box input:focus { border-color: #ffffff; background: rgba(255, 255, 255, 0.2); }
/* Tombol Submit */
.btn-submit-glass {
    width: 100%; padding: 15px; background: #ffffff; color: #0f172a; border: none; border-radius: 12px;
    font-size: 1rem; font-weight: 700; cursor: pointer; transition: 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); margin-top: 10px;
}
.btn-submit-glass:hover { transform: translateY(-2px); background: #f1f5f9; box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); }
.btn-submit-glass i { margin-right: 8px; }

/* Link & Navigasi */
.glass-link-container { text-align: center; margin-top: 20px; }
.glass-link { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.95rem; transition: 0.3s; display: inline-block; }
.glass-link span { color: #ffffff; font-weight: 600; }
.glass-link:hover, .glass-link:hover span { color: #ffffff; text-shadow: 0 0 8px rgba(255,255,255,0.5); text-decoration: underline; }

.back-catalog { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 25px; color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.back-catalog:hover { color: #ffffff; transform: translateX(-5px); }

/* Responsive HP & Tablet */
@media (max-width: 900px) {
    .glass-panel { flex-direction: column; max-width: 550px !important; }
    .glass-branding { padding: 40px 30px 20px 30px; text-align: center; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .glass-branding h1 { font-size: 2.2rem; margin-bottom: 10px; }
    .glass-form { padding: 30px; }
}
@media (max-width: 500px) {
    .body-auth { padding: 15px; }
    .glass-panel { border-radius: 20px; }
    .glass-branding { display: none; } /* Hilangkan gambar di HP */
    .glass-form { padding: 35px 25px; }
    .glass-form h2 { font-size: 1.6rem; }
}

/* =========================================================
   7. TEMA GLASSMORPHISM UNTUK HALAMAN UTAMA (KATALOG)
========================================================= */

/* --- 1. Navigasi Atas (Navbar) Efek Kaca Mengambang --- */
.glass-header {
    background: rgba(255, 255, 255, 0.75) !important; 
    backdrop-filter: blur(12px) !important;           
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

/* --- 2. Banner Utama (Hero Section) Mewah --- */
.glass-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=2070') center/cover no-repeat fixed !important;
    padding: 80px 20px !important;
    text-align: center;
    color: white !important;
    border-radius: 0 0 40px 40px; 
    margin-bottom: -30px; /* Menarik konten bawah agar sedikit menimpa banner */
    position: relative;
    z-index: 1;
}

.glass-hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    display: inline-block;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* --- 3. Sentuhan Kaca pada Kartu Produk --- */
.glass-product-card {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    position: relative;
    z-index: 2;
}

.glass-product-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12) !important;
}
