/* Custom Bootstrap Overrides for E-commerce */

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Attractive Navbar Enhancements */
.navbar {
    background-color: #343a40;
    box-shadow: 0 2px 8px rgba(52, 58, 64, 0.08);
    border-bottom: 2px solid #ffc107;
    transition: background 0.3s;
}
.navbar-nav .nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    transition: color 0.2s;
}
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-toggler {
    border-color: #ffc107;
}
/* .navbar-toggler-icon {
    background-image: linear-gradient(90deg, #ffc107 0%, #fff 100%);
} */
/* Navbar */

.navbar-brand, .navbar-nav .nav-link {
    color: #ffc107 !important;
}
.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}
.card a,tr a{
    color: #000000;
}
/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.2rem;
}

/* Product Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.card img {
    max-height: 200px;
    object-fit: cover;
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.card-text {
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Footer */
footer .p-3{
    background-color: #ffc107!important;
    /* color: #ffc107!important; */
    padding: 20px 0;
    text-align: center;
}
a {
    /* color: #ffc107!important; */
    text-decoration: none;
}
footer .p-3 a:hover {
    text-decoration: underline;
}