.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2196f3 !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #2196f3;
}

.navbar-nav .nav-link.active {
    color: #007bff;
    font-weight: bold;
}

#cart-count {
    border-radius: 50%;
    padding: 2px 3px;
    font-size: 12px;
    margin-left: 5px;
}

nav ul {
    list-style: none;
}

nav li {
    margin-right: 20px;
    float: left;
}

nav li a {
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
}

a {
    text-decoration: none;
}

#uini:hover {
    color: lightseagreen;
    transform: scale(1.1) 1s;
}

nav li a:active {
    color: black;
}

nav li a:hover {
    color: lightseagreen;
    transform: scale(1.5);
}

#but {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge #149CEA;
    outline: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#but::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
    transform-origin: center;
}

#but::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
}

#but:hover::before, #but:hover::after {
    transform: scale(0);
}

#but:hover {
    box-shadow: inset 0px 0px 25px #1479EA;
}

.about-us {
    padding: 30px;
}

.testimonials {
    padding: 30px;
}

.ad-banner {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar {
    width: 200px;
    float: right;
    margin-left: 20px;
}

.vtm-cart {
    width: 250px;
}

/* Cards styling */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    height: auto;
}

.card:hover {
    transform: translateY(-5px);
}

/* Buttons styling */
.btn-primary {
    background-color: #2196f3;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1976d2;
    transform: scale(1.05);
}

/* Rating stars */
.rating {
    color: #ffd700;
    margin: 0.5rem 0;
}

/* Product images */
.card-img-top {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.03);
}

/* Search bar */
.form-control {
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
}

/* Cart icon */
.fa-cart-shopping {
    color: #2196f3;
    transition: transform 0.3s ease;
}

.fa-cart-shopping:hover {
    transform: scale(1.2);
}

/* Footer styling */
footer {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

footer a {
    color: #2196f3 !important;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Custom container padding */
.container {
    padding: 2rem 1rem;
}

/* Card title */
.card-title {
    font-weight: 600;
    color: #333;
}

/* Price styling */
.card-text strong {
    color: #2196f3;
}

/* Hero section */
.card-img-overlay {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}




