/*product nav*/
/* Navbar Styling */
.product-nav nav {
    background-color: black;
    padding: 20px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-nav nav a,
.product-nav nav ol {
    color: white;
    transition: color 0.3s ease;
}


/* Product Page Styling */

.product-head {
    color: var(--default-color);
    position: relative;
}

.product-head .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-head .heading h1 {
    font-size: 38px;
    font-weight: 700;
}


/* Breadcrumb Navigation - Different from Top Navbar*/
.product-breadcrumbs ol li + li::before {
    content: ">";
    margin: 0 10px;
    color: var(--breadcrumb-separator-color);   
}   

.product-breadcrumbs {
    background-color: #f1f1f1;
    padding: 15px 0;
}

.product-breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.product-breadcrumbs ol li a {
    color: #007bff;
    text-decoration: none;
}

.product-breadcrumbs ol li a:hover {
    color: #0056b3;
}

.product-card {
    padding: 10px !important;
    margin-bottom: 15px !important;
    transition: .5s;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#product-head {
    margin-bottom: -50px; /* Reduce the gap */
}
.filter-btn {
    transition: all 0.3s ease;
    border-width: 2px;
}

.filter-btn.active {
    background-color: var(--bs-primary);
    color: white !important;
    border-color: var(--bs-primary);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-scroller {
    border-bottom: 1px solid #dee2e6;
}

.category-filter {
    color: #6c757d;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    background: none !important;
}

.category-filter.active {
    color: #0d6efd;
    font-weight: 500;
}

.category-filter.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

.category-filter:hover {
    color: #0d6efd;
    transform: translateY(-1px);
}