/* Amazon-like Style */
.navbar {
    background-color: #232f3e;
}

    .navbar .nav-link, .navbar-brand {
        color: #fff !important;
    }

.search-bar input {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.search-bar button {
    border-radius: 0 20px 20px 0;
}

.hero {
    color: white;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero h1 {
        font-weight: bold;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        background-color: rgba(0,0,0,0.5);
        padding: 10px 20px;
        border-radius: 10px;
    }

footer {
    background-color: #131a22;
}

    footer a {
        color: #ddd !important;
    }
/* Mobile tweaks */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }

        .search-bar input, .search-bar button {
            border-radius: 20px !important;
            margin: 5px 0;
            width: 100%;
        }
}


.product-rating {
    color: #FFA41C;
    margin-bottom: 10px;
}