: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: 5px;
    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;
}


/* Pulse animation for the "Current" status */
.animate-pulse {
    box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7);
    animation: pulse 1.5s infinite;
}


/* Targeting only p and a tags inside the footer */
.footer-brandmen p,
.footer-brandmen a {
    color: white !important;
    text-decoration: none; /* Keeps links from having underlines */
}

    /* Optional: Change link color slightly on hover so users know it's clickable */
    .footer-brandmen a:hover {
        color: #ff4d4d !important; /* Brand Men Red on hover */
    }


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(217, 4, 41, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0);
    }
}