.prod_card .product-title {
    /*height: 53px;*/
}

.prod_card img {
    height: 210px;
}

/** Start swiper in product details **/
.product-details-swiper {
    width: 100%;
    height: 418px;
    overflow: hidden;
    position: relative; /* needed for pagination to position correctly */
}

.product-details-swiper .img_box {
    height: 100%;
}

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

.product-details-swiper .swiper-pagination-bullet {
    background: #000; /* black bullets */
    opacity: 0.5;
}

.product-details-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff0000; /* active bullet color */
}

/** End swiper in product details **/

/***** Start Products Page ********/
/* ── Custom pagination ─────────────────────────── */
.products-pagination .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--secondary, #2c3e50);
    background: transparent;
    border: 1px solid #e0e0e0;
    transition: all .2s;
}

.products-pagination .page-btn:hover:not(.page-btn--disabled):not(.page-btn--active):not(.page-btn--ellipsis) {
    background: var(--primary, #f0a500);
    border-color: var(--primary, #f0a500);
    color: #fff !important;
}

.products-pagination .page-btn--active {
    background: var(--primary, #f0a500);
    border-color: var(--primary, #f0a500);
    color: #fff;
    pointer-events: none;
}

.products-pagination .page-btn--disabled {
    opacity: .35;
    pointer-events: none;
}

.products-pagination .page-btn--ellipsis {
    border: none;
    pointer-events: none;
}

/* ── Products loading state ────────────────────── */
#productsSection {
    transition: opacity .25s;
}

#productsSection.is-loading {
    opacity: .4;
    pointer-events: none;
}

#productsLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/***** Start Products Page ********/
