/*!
 * Copyright © 2026 SXR STORE
 * Unauthorized copying or redistribution is prohibited.
 */

/* ==========================================================================
   SXR STORE - Premium Dark UI/UX
   ========================================================================== */

:root {
    --color-bg: #050505; 
    --color-surface: #0E0E0E; 
    --color-surface-hover: #161616;
    --color-primary: #E50914; 
    --color-primary-hover: #FF0A16;
    --color-text: #FFFFFF;
    --color-text-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', sans-serif;
    --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: filter 0.3s ease; /* Transisi halus saat DevTools terdeteksi */
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background-color: var(--color-primary); border-radius: 4px; }

/* SPIDER WEB BACKGROUND */
#spider-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1; 
    pointer-events: none !important;
    opacity: 1;
}

/* CONTAINER & LAYOUT */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mb-5 { margin-bottom: 3rem; }

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; background: var(--color-primary);
    width: 0%; z-index: 10001; box-shadow: 0 0 10px var(--color-primary);
}

/* LOADING SCREEN */
.loader-container {
    position: fixed; inset: 0; background: var(--color-bg);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 10000; transition: opacity 0.6s var(--ease-standard);
}
.loader-brand { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.loader-spinner {
    width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--color-primary); border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text { font-size: 2rem; font-weight: 800; letter-spacing: 2px; }
.loader-text span { color: var(--color-primary); }
.loader-progress-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: var(--color-primary); animation: loadProg 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes loadProg { 0% { width: 0; } 100% { width: 100%; } }

/* DONATE BAR */
.donate-bar {
    background: linear-gradient(90deg, #A00000, #E50914); color: #FFF; padding: 12px 0;
    font-size: 0.9rem; font-weight: 600; position: relative; z-index: 9999;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}
.donate-content { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; }
.btn-donate {
    background: #FFF; color: var(--color-primary); padding: 6px 16px; border-radius: 20px;
    text-decoration: none; font-weight: 800; font-size: 0.85rem;
    animation: pulse 2s infinite; transition: transform 0.3s;
}
.btn-donate:hover { transform: scale(1.05); }

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background-color: #111; color: var(--color-text-muted);
    padding: 8px 0; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
    border-bottom: 1px solid var(--color-border); overflow: hidden; white-space: nowrap; position: relative; z-index: 2;
}
.marquee { display: inline-block; animation: marquee 25s linear infinite; }
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* NAVBAR */
.navbar {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 5, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent; transition: all 0.4s var(--ease-standard);
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85); border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 75px; }
.brand-logo { font-size: 1.6rem; font-weight: 800; color: var(--color-text); text-decoration: none; letter-spacing: -1px; }
.brand-logo span { color: var(--color-primary); }
.nav-menu { display: flex; gap: 32px; }
.nav-link { color: var(--color-text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-link:hover { color: var(--color-text); text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* SEARCH */
.nav-tools { display: flex; align-items: center; gap: 16px; }
.search-wrapper { position: relative; display: flex; align-items: center; }
.search-icon { position: absolute; left: 12px; width: 16px; height: 16px; color: var(--color-text-muted); pointer-events: none; }
.search-input {
    background: rgba(255,255,255,0.05); border: 1px solid var(--color-border);
    color: var(--color-text); padding: 8px 16px 8px 36px; border-radius: 20px;
    font-family: inherit; font-size: 0.85rem; width: 220px; outline: none; transition: all 0.4s var(--ease-standard);
}
.search-input:focus { width: 280px; border-color: var(--color-primary); background: rgba(0,0,0,0.8); }
.search-results {
    position: absolute; top: calc(100% + 10px); left: 0; width: 100%;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: 12px; display: none; flex-direction: column; max-height: 250px; overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
}
.search-item { padding: 14px 16px; font-size: 0.85rem; cursor: pointer; border-bottom: 1px solid var(--color-border); transition: 0.2s; }
.search-item:hover { background: rgba(229, 9, 20, 0.1); color: var(--color-primary); }

/* BUTTONS */
.btn-primary {
    background: var(--color-primary); color: #FFF; border: none;
    padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; text-decoration: none; display: inline-flex; justify-content: center; align-items: center;
    transition: all 0.3s var(--ease-standard); position: relative; overflow: hidden;
}
.glow-btn:hover { background: var(--color-primary-hover); transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4); }
.btn-outline {
    background: rgba(255,255,255,0.03); color: var(--color-text); border: 1px solid var(--color-border);
    padding: 8px 20px; border-radius: 20px; cursor: pointer; font-weight: 500; font-size: 0.85rem;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.ripple-effect {
    position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.3);
    transform: scale(0); animation: ripple 0.6s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle .bar { width: 24px; height: 2px; background: var(--color-text); transition: 0.3s; }
.mobile-menu {
    display: none; flex-direction: column; background: rgba(5,5,5,0.95); position: absolute; top: 75px; left: 0; width: 100%;
    border-bottom: 1px solid var(--color-border); padding: 10px 24px; backdrop-filter: blur(10px); z-index: 1000;
}
.mobile-menu.active { display: flex; }
.mobile-link { padding: 16px 0; color: var(--color-text); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* HERO SECTION */
.hero {
    position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 0 80px; overflow: hidden;
}
.hero-glow {
    position: absolute; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 900px; }
.tagline { display: block; font-size: 0.85rem; font-weight: 800; color: var(--color-primary); letter-spacing: 4px; margin-bottom: 20px; text-transform: uppercase;}
.hero-title { 
    font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px; color: #FFF;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.5), 0 0 30px rgba(229, 9, 20, 0.2); opacity: 0;
    animation: heroFadeIn 1.2s cubic-bezier(0.2, 0, 0, 1) 0.3s forwards;
}
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); text-shadow: 0 0 0 rgba(229, 9, 20, 0); }
    100% { opacity: 1; transform: translateY(0) scale(1); text-shadow: 0 0 15px rgba(229, 9, 20, 0.6), 0 0 30px rgba(229, 9, 20, 0.3), 0 4px 10px rgba(0,0,0,0.8); }
}
.hero-desc { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; color: var(--color-text-muted); margin-bottom: 45px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; justify-content: center; gap: 20px; }

/* PROMO BANNER */
.promo-banner { position: relative; z-index: 2; padding: 30px 24px; margin: 0 auto 60px; max-width: 1000px; }
.promo-content {
    background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(5,5,5,0.9));
    border: 1px solid rgba(229, 9, 20, 0.3); border-radius: 20px; padding: 40px; text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 40px rgba(229,9,20,0.05); backdrop-filter: blur(10px);
}
.promo-badge {
    display: inline-block; background: var(--color-primary); color: #FFF; font-size: 0.75rem; font-weight: 800;
    padding: 6px 14px; border-radius: 20px; letter-spacing: 1.5px; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(229,9,20,0.4);
}
.promo-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #FFF; letter-spacing: -1px; margin-bottom: 12px; }
.promo-desc { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 24px; }

/* SECTIONS & FILTERS */
.section { padding: 60px 0 100px; position: relative; z-index: 2; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 24px; }
.section-title { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.section-subtitle { color: var(--color-primary); font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }
.filters { display: flex; gap: 12px; background: rgba(255,255,255,0.03); padding: 6px; border-radius: 40px; border: 1px solid var(--color-border); }
.filter-btn { background: transparent; border: none; color: var(--color-text-muted); padding: 10px 24px; border-radius: 30px; cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--color-primary); color: #FFF; box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4); }

/* PRODUCT CARDS */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.card {
    background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border); border-radius: 20px; padding: 24px;
    display: flex; flex-direction: column; position: relative; transition: all 0.4s var(--ease-standard);
}
.card:hover { transform: translateY(-10px); border-color: rgba(229, 9, 20, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(229, 9, 20, 0.1); }
.card-badge {
    position: absolute; top: -10px; right: 20px; background: var(--color-primary); color: #FFF; font-size: 0.7rem; font-weight: 800; padding: 6px 12px; border-radius: 4px; letter-spacing: 1px; z-index: 2; box-shadow: 0 4px 10px rgba(229,9,20,0.4);
}
.card-image-box { width: 100%; aspect-ratio: 1; background: rgba(0,0,0,0.4); border-radius: 12px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.02); }
.card-image-box img { max-width: 80%; max-height: 80%; object-fit: contain; transition: transform 0.6s var(--ease-standard); filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); }
.card:hover .card-image-box img { transform: scale(1.15) translateY(-5px); }
.card-info { flex-grow: 1; display: flex; flex-direction: column; }
.card-cat { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
.card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.card-price { font-size: 1.5rem; font-weight: 800; color: #FFF; margin-bottom: 24px; }
.card-btn { margin-top: auto; width: 100%; }

/* CONTACT, FAQ & MISC UI */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.social-links { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.social-card { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--color-border); padding: 20px; border-radius: 16px; text-decoration: none; color: var(--color-text); transition: all 0.3s; }
.social-card:hover { background: rgba(255,255,255,0.08); transform: translateX(10px); border-color: rgba(255,255,255,0.2); }
.contact-box { background: rgba(20,20,20,0.6); padding: 40px; border-radius: 20px; border: 1px solid var(--color-border); text-align: center; display: flex; flex-direction: column; justify-content: center;}
.contact-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--color-text-muted); }
.wa-number { font-size: 2.2rem; font-weight: 800; color: #FFF; letter-spacing: 1px; margin-bottom: 20px; }
.skeleton { background: linear-gradient(90deg, rgba(20,20,20,0.6) 25%, rgba(40,40,40,0.6) 50%, rgba(20,20,20,0.6) 75%); background-size: 200% 100%; animation: loading-shimmer 1.5s infinite linear; border-radius: 20px; }
@keyframes loading-shimmer { to { background-position: -200% 0; } }
.skeleton-card { height: 440px; border: 1px solid var(--color-border); }

/* MODAL */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-standard); }
.modal.active { opacity: 1; visibility: visible; }
.modal-dialog { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 24px; width: 100%; max-width: 800px; position: relative; transform: translateY(40px) scale(0.95); transition: all 0.4s var(--ease-standard); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.9); }
.modal.active .modal-dialog { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 24px; right: 24px; background: rgba(0,0,0,0.5); border: 1px solid var(--color-border); color: #FFF; font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--color-primary); border-color: var(--color-primary); transform: rotate(90deg); }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image { background: #080808; padding: 50px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--color-border); }
.modal-image img { max-width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8)); }
.modal-details { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-category { font-size: 0.85rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 1px; }
.modal-title { font-size: 2rem; font-weight: 800; margin: 12px 0 20px; letter-spacing: -1px; line-height: 1.1; }
.modal-price { font-size: 1.8rem; font-weight: 800; color: #FFF; margin-bottom: 30px; }

/* FAQ & FOOTER */
.faq-container { max-width: 800px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--color-border); background: rgba(20,20,20,0.4); border-radius: 16px; margin-bottom: 16px; overflow: hidden; transition: 0.3s; }
.accordion-header { width: 100%; padding: 24px; background: none; border: none; color: #FFF; font-size: 1.1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-icon { font-size: 1.5rem; color: var(--color-primary); transition: transform 0.4s var(--ease-standard); }
.accordion-header.active .accordion-icon { transform: rotate(45deg); color: #FFF; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-standard); }
.accordion-body p { padding: 0 24px 24px; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; }
.footer { background: #030303; border-top: 1px solid var(--color-border); padding: 80px 0 30px; position: relative; z-index: 2;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.footer-brand span { color: var(--color-primary); }
.footer-links h4 { font-size: 1.1rem; margin-bottom: 24px; font-weight: 700; color: #FFF; }
.footer-links a { display: block; color: var(--color-text-muted); text-decoration: none; margin-bottom: 14px; font-size: 0.95rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--color-primary); transform: translateX(5px); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.9rem; }

/* FLOATING PANELS & ACTIONS */
.live-panel { position: fixed; bottom: 100px; right: 30px; background: rgba(15,15,15,0.95); border: 1px solid var(--color-border); border-radius: 16px; padding: 20px; width: 240px; z-index: 998; backdrop-filter: blur(10px); box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 15px rgba(229,9,20,0.2); }
.float-anim { animation: floatPanel 4s ease-in-out infinite; }
@keyframes floatPanel { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
.close-live { position: absolute; top: 10px; right: 10px; background: none; border: none; color: var(--color-text-muted); font-size: 1.2rem; cursor: pointer; transition: 0.2s; }
.close-live:hover { color: #FFF; }
.live-badge { display: inline-block; background: var(--color-primary); color: #FFF; font-size: 0.7rem; font-weight: 800; padding: 4px 8px; border-radius: 4px; margin-bottom: 10px; animation: pulse 2s infinite;}
.live-panel h4 { font-size: 1rem; margin-bottom: 4px; }
.live-panel p { font-size: 0.8rem; color: var(--color-text-muted); }
.float-wa { position: fixed; bottom: 30px; right: 90px; width: 56px; height: 56px; background: #25D366; color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.5); z-index: 999; transition: all 0.3s; }
.float-wa:hover { transform: scale(1.15) rotate(-10deg); background: #20BA56; }
.float-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: rgba(20,20,20,0.8); border: 1px solid var(--color-border); color: #FFF; border-radius: 50%; cursor: pointer; font-size: 1.2rem; font-weight: bold; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; z-index: 999; transition: all 0.3s; }
.float-top.active { opacity: 1; visibility: visible; }
.toast-area { position: fixed; bottom: 30px; left: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 16px; pointer-events: none; }
.toast { background: rgba(15,15,15,0.95); border-left: 4px solid var(--color-primary); padding: 16px 24px; border-radius: 8px; color: #FFF; font-weight: 600; font-size: 0.95rem; box-shadow: 0 12px 30px rgba(0,0,0,0.8); transform: translateX(-120%); transition: all 0.4s var(--ease-standard); pointer-events: auto; }
.toast.show { transform: translateX(0); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0, 0, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-anim { animation: filterFade 0.35s cubic-bezier(0.2, 0, 0, 1) forwards; }
@keyframes filterFade { 0% { opacity: 0; transform: scale(0.92) translateY(15px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }

/* RESPONSIVE */
@media (max-width: 992px) {
    .modal-content { grid-template-columns: 1fr; }
    .modal-image { padding: 30px; border-right: none; border-bottom: 1px solid var(--color-border); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-tools { display: none; }
    .menu-toggle { display: flex; }
    .promo-banner { padding: 20px 15px; }
    .promo-content { padding: 30px 20px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .filters { overflow-x: auto; width: 100%; padding-bottom: 10px; border-radius: 12px; }
    .filter-btn { white-space: nowrap; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a { width: 100%; }
    .donate-text { text-align: center; }
    .live-panel { display: none; }
}

/* ==========================================================================
   SECURITY PROTECTIONS
   ========================================================================== */

/* 1. Mencegah Teks Spesifik untuk Diblok/Disalin (Search Box tetap berfungsi) */
.hero-title, 
.hero-desc, 
.promo-title,
.promo-desc,
.card-title, 
.card-price, 
.card-cat,
.section-title, 
.section-subtitle,
.donate-text,
.footer-brand,
.wa-number {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* 2. Mencegah Gambar ditarik (Drag & Drop Protection) */
img {
    -webkit-user-drag: none;
    user-drag: none;
}