/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-color: #004aad; /* Professional Blue */
    --accent-color: #f39c12; /* Gold/Yellow for Sale/CTA */
    --dark-color: #1a1a1a; /* Text Color */
    --light-bg: #f8f9fa; /* Light Gray Background */
    --white: #ffffff;
    --success: #2ecc71; /* Green for New items */
}

/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --- Top Announcement Bar --- */
.top-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

/* --- Header & Navigation --- */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--dark-color);
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.contact-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://images.unsplash.com/photo-1556742044-3c52d6e88c62?q=80&w=1200');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.shop-btn {
    background: var(--accent-color);
    color: #000;
}

.wa-btn {
    background: #25d366;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- Product Sections --- */
.inventory {
    padding: 70px 0;
}

.title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* --- Product Cards --- */
.card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.new { background: var(--success); }
.used { background: #e67e22; }
.sale { background: #e74c3c; }

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.card p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.inquire-btn {
    background: var(--dark-color);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.inquire-btn:hover {
    background: var(--primary-color);
}

/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h2 { font-size: 2.2rem; }
    nav ul { display: none; } /* Simplified for mobile */
    .grid { grid-template-columns: 1fr; }
}