/* --- 1. GLOBAL VARIABLES (High Contrast / Graphic Mode) --- */
:root {
    --primary-color: #f362ca; /* Solid Black */
    --secondary-color: #ffffff; /* Pure White */
    --accent-color: #a7ec99; /* HOT PINK - The Eye Catchy Color */
    
    --light-bg: #fff0f3; /* Soft Pink Background */
    --dark-bg: #000000;
    
    /* GRAPHIC EFFECTS */
    --card-shadow: 4px 4px 0px rgba(0,0,0,1); 
    --hover-shadow: 8px 8px 0px rgba(0,0,0,1);
    
    --border-radius: 12px;
    --border-black: 2px solid #000000;
}

body {
    background-color: var(--light-bg);
    font-family: 'Poppins', sans-serif;
    color: #000000 !important;
    overflow-x: hidden;
}

a { text-decoration: none; color: #000; transition: 0.2s; }
a:hover { color: var(--accent-color); }

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    color: #000000 !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

p, span, div, .text-secondary, .small {
    color: #000000 !important;
    font-weight: 500;
}

/* --- 3. NAVBAR --- */
.navbar {
    background: #ffffff !important;
    border-bottom: var(--border-black);
    padding: 15px 0;
    box-shadow: none !important;
}

.navbar-brand {
    font-size: 1.8rem;
    color: #000 !important;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px var(--accent-color);
}

.nav-link {
    color: #000 !important;
    font-weight: 700;
    margin: 0 10px;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 5px 15px !important;
}

.nav-link:hover, .nav-link.active {
    background: #000;
    color: #fff !important;
    border: 2px solid #000;
}

/* --- 4. GLASS PANEL & CARDS --- */
.glass-panel, .card {
    background: #ffffff !important;
    border: var(--border-black) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--card-shadow) !important;
    color: #000 !important;
}

.card-body {
    background: transparent;
}

/* --- 5. PRODUCT CARDS --- */
.card-product, .product-card {
    background: #fff;
    border: var(--border-black);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card-product:hover, .product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-color); /* Border turns pink on hover! */
}

/* --- 6. BUTTONS (UPDATED: Eye Catchy Pink) --- */
.btn, .btn-brand {
    border: var(--border-black) !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 25px;
    box-shadow: 3px 3px 0px #000 !important;
    transition: all 0.2s ease;
}

.btn:active {
    transform: translate(3px, 3px);
    box-shadow: none !important;
}

/* Default Black Buttons (For Admin/General) */
.btn-primary, .btn-dark {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* --- NEW: EYE CATCHY PRODUCT BUTTONS --- */
/* This targets the 'View' and 'Add' buttons specifically */
.product-card .btn, 
.card-product .btn, 
.btn-outline-dark, 
.btn-brand {
    background-color: var(--accent-color) !important; /* HOT PINK BACKGROUND */
    color: #ffffff !important; /* WHITE TEXT */
    border: 2px solid #000000 !important;
}

/* Hover Effect for Product Buttons */
.product-card .btn:hover, 
.card-product .btn:hover, 
.btn-outline-dark:hover, 
.btn-brand:hover {
    background-color: #000000 !important; /* Turns Black on Hover */
    color: #ffffff !important;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px rgba(0,0,0,1) !important; /* Shadow gets bigger */
}

/* --- 7. FORMS & INPUTS --- */
.form-control, .form-select, .search-input {
    background-color: #ffffff !important;
    border: var(--border-black) !important;
    color: #000 !important;
    border-radius: 10px;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.form-control:focus, .search-input:focus {
    box-shadow: 3px 3px 0px #000;
    outline: none;
    border-color: var(--accent-color) !important;
}

/* Badge Logic */
.badge {
    color: #fff !important;
    border: 1px solid #000;
    text-shadow: none;
}
.bg-warning { background-color: #ffcc00 !important; color: #000 !important; }
.bg-success { background-color: #00cc66 !important; }
.bg-danger { background-color: #ff3366 !important; }