body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #212529;
    margin: 0;
}

.navbar {
    background-color: #ffc107; 
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 800;
    color: #212529 !important;
    display: flex;
    align-items: center;
}

.nav-pills .nav-link {
    background-color: #6f42c1; 
    color: white !important;
    border-radius: 50px; 
    padding: 8px 20px;
    margin-left: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(111, 66, 193, 0.2); 
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #5a32a3;
    transform: translateY(-2px);
}

.nav-pills .nav-link i {
    margin-right: 8px;
}

.main-content {
    padding: 40px 0;
}

.section-title {
    font-weight: 800;
    color: #212529;
    margin-bottom: 30px;
    font-size: 2rem;
}

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card-img-top {
    height: 220px;
    object-fit: cover; 
    border-bottom: 3px solid #f4f7f6;
}

.product-card-body {
    padding: 25px;
    text-align: center;
}

.product-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #212529;
}

.product-card-price {
    font-weight: 800;
    font-size: 1.4rem;
    color: #6f42c1; 
    display: block;
    margin-bottom: 10px;
}

.product-card-text {
    color: #6c757d; 
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-product-details {
    background-color: #6f42c1; 
    border: none;
    border-radius: 50px; 
    padding: 10px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-product-details:hover {
    background-color: #5a32a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(111, 66, 193, 0.4);
}