@charset "UTF-8";
/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   :root {
            --primary-red: #D90429;
            --secondary-gray: #8D99AE;
            --dark-gray: #2B2D42;
            --light-bg: #F8F9FA;
        }

        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #ffffff; }

        /* Navbar & Branding */
.navbar {
    background: white;
    border-bottom: 2px solid var(--primary-red);
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.badge-red {
    background-color: var(--primary-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1490578474895-699cd4e2cf59?auto=format&fit=crop&w=1350&q=80');
    height: 40vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

/* Product Cards */
.card-product {
    border: none;
    transition: 0.3s;
}

    .card-product:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.btn-red {
    background-color: var(--primary-red);
    color: white;
    border-radius: 0;
}

    .btn-red:hover {
        background-color: #b00320;
        color: white;
    }

.offer-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-red);
    color: white;
    padding: 2px 10px;
    font-size: 12px;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0;
}

.brand-logo {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 24px;
}
