body {
    font-family: 'Inter', sans-serif;
}

/* footer */
.footer {
    background: #fff;
}

.footer h5,
.footer h6 {
    color: #111;
}

.footer a:hover {
    color: #007bff !important;
}

.footer .fab {
    transition: color 0.3s;
}

.footer .fab:hover {
    color: #007bff;
}


/* Navbar */
.custom-navbar {
    height: 70px;
    background: #fff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-links .nav-link {
    margin-right: 20px;
    font-weight: 500;
    color: #333;
}

.nav-links .nav-link:hover {
    color: #007bff;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 6px;
    z-index: 1000;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.mobile-bottom-nav .nav-item .material-icons-outlined {
    font-size: 22px;
    margin-bottom: 2px;
}

/* Full Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.3s ease-in-out;
    z-index: 1050;
}

.mobile-sidebar.active {
    right: 0;
}

/* blog */

.card img {
    object-fit: cover;
    height: 200px;
}

.card-title {
    font-size: 1.1rem;
}

.card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


/* single blog */

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
    font-size: 1.05rem;
}

.blog-content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.blockquote {
    font-style: italic;
    font-size: 1rem;
    border-radius: 0.25rem;
}

/* product details */


.product-image img {
    transition: all 0.3s ease-in-out;
    border-radius: 0.75rem;
}

.thumb-img {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.thumb-img:hover {
    border-color: #0d6efd;
}

@media (max-width: 576px) {
    .thumb-img {
        width: 60px;
        height: 60px;
    }
}


.object-fit-cover {
    object-fit: cover;
}

.category-card:hover .btn {
    background-color: white !important;
    color: black !important;
}