html,
body {
    height: 100%;
    /* Ensures the page height spans the viewport */
    margin: 0;
    font-family: 'Arial', sans-serif;

}

body {
    display: flex;
    flex-direction: column;
    /* Use column layout for body */
    min-height: 100vh;
    /* Minimum height is the full viewport */
    font-family: 'Arial', sans-serif;
}

.flex-grow-1 {
    flex: 1;
    /* Ensures the main content takes up remaining space */
}

.social-icons a {
    font-size: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    font-size: 0.9rem;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #007bff;
}

.badge {
    font-size: 0.75rem;
}

/* Hero Banner Styling */
.hero-banner {
    /* background: linear-gradient(to right, #f06e6e, #f8c1c1); */
    background-image: url('../assets/images/bannershop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: white;
}

.hero-banner h4 {
    color: #ff8c94;
}

.hero-banner .btn-pink {
    background-color: #ff8c94;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.hero-banner .btn-pink:hover {
    background-color: #ff6b6b;
    color: white;
}

/* Category Cards */
.category-card {
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    transition: box-shadow 0.3s;
}

.category-card:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.category-card .text-pink {
    color: #ff8c94;
    text-decoration: none;
}

.category-card .text-pink:hover {
    text-decoration: underline;
}

/* Sidebar */
.list-group-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.list-group-item img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Best Sellers */
.best-sellers img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

/* Product Grid */
.card {
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-radius: 10px 10px 0 0;
}

.text-green {

    color: green;

}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    font-size: 0.9rem;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

footer p,
footer a {
    font-size: 0.9rem;
    color: #ccc;
}

footer a:hover {
    color: #ff8c94;
    text-decoration: none;
}

footer .btn-pink {
    background-color: #ff8c94;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    transition: background-color 0.3s ease-in-out;
}

footer .btn-pink:hover {
    background-color: #ff6b6b;
    color: white;
}

footer .social-icons i {
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

footer .social-icons i:hover {
    color: #ff8c94;
}

.pagination .page-item.active .page-link {
    background-color: #343a40;
    border-color: #343a40;
}

.pagination .page-link {
    color: rgb(149, 149, 149);

}

.pagination .page-link:hover {
    color: #ff8c94;
}

.product-img-wrapper {
    position: relative;
}

.cart-product-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    cursor: pointer;
}

.product-img-enlarge {
    display: none;
    position: absolute;
    top: -10px;
    left: 70px;
    z-index: 10;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}

.product-img-wrapper:hover .product-img-enlarge {
    display: block;
}

.product-img-enlarge img {
    max-width: 200px;
    max-height: 200px;
}

.toast {
    z-index: 1055 !important;
}