:root {
    --primary-color: #2c3e50; /* Midnight Blue */
    --secondary-color: #ecf0f1; /* Light Grayish Blue */
    --accent-color: #3498db; /* Bright Blue */
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #fff;
    --font-family: 'Poppins', sans-serif;
}

.text-accent {
    color: var(--accent-color);
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- Header & Footer --- */
header, footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

header .navbar-brand, footer .navbar-brand {
    color: var(--white);
    font-weight: 700;
}

header .nav-link, footer .nav-link {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

header .nav-link:hover, footer .nav-link:hover {
    color: var(--white);
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b02a37; /* Darker red */
    border-color: #b02a37; /* Darker red */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); /* Red shadow */
}

/* --- Product Card --- */
.product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
    border-bottom: 1px solid #eee;
}

/* --- Homepage Sections --- */
.hero-banner {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/printer/banner-05.webp') no-repeat center center;
    background-size: cover;
}

.section-title {
    font-weight: 700;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

/* Cookie Alert */
.cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    padding: 15px;
    border: 2px dotted #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
    display: none; /* Hidden by default, shown by JS */
}

.cookie-alert p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.cookie-alert .btn-primary {
    width: 100%;
    padding: 8px 15px;
    border-radius: 5px;
}
