/* ============================================
   Products Section
   ============================================ */

.products-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.category-tabs {
    margin-bottom: 3rem;
}

.category-tabs .nav-link {
    color: var(--medium-grey);
    background-color: transparent;
    min-width: 120px;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin: 0 0.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.category-tabs .nav-link:hover {
    color: var(--dark-grey);
    background-color: rgba(26, 43, 77, 0.1);
}

.category-tabs .nav-link.active {
    background-color: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--black);
}

.products-carousel-wrapper {
    position: relative;
}

.product-range-carousel {
    position: relative;
}

/* OwlCarousel Navigation */
.product-range-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.product-range-carousel .owl-nav button {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.product-range-carousel .owl-nav button:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
}

.product-range-carousel .owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

.product-range-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.product-range-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: var(--light-grey);
    transition: all 0.3s ease;
}

.product-range-carousel .owl-dot.active span {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* OwlCarousel base styles */
.owl-carousel {
    display: block;
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    justify-content: center;
}
