:root {
    --brand-blue: #111d4a;
    --brand-blue-hover: #09102b;
    --brand-green: #70ac13;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    background-color: #ffffff;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Header & Navbar */
.header-bar {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.brand-logo-text {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
    color: var(--brand-blue);
    line-height: 1;
}

.brand-logo-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 2px;
}

.nav-link-custom {
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--brand-blue);
}

/* Hero Banner */
.hero-banner {
    background: #f8fafc;
    padding: 60px 0;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.btn-brand {
    background: var(--brand-blue);
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    transition: background 0.2s ease;
}

.btn-brand:hover {
    background: var(--brand-blue-hover);
    color: #fff;
}

/* EMI & Finance Badges */
.badge-finance {
    background: #fef3c7;
    color: #b45309;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.badge-finance.instant {
    background: #e0f2fe;
    color: #0369a1;
}

.badge-finance.online {
    background: #dcfce7;
    color: #15803d;
}

/* Product Cards */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.img-container {
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}