.proride-products{
    padding:80px 0 0 0;
    background:#fafafa;
    overflow:hidden;
}

.proride-products-header{
    width:min(1400px,90%);
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:10px;
}

.products-tag{
    color:#ed1d24;
    font-size:14px;
    letter-spacing:4px;
    font-weight:700;
    display:block;
    margin-bottom:18px;
}

.proride-products h2{
    font-size:64px;
    margin:0;
    font-weight:700;
    line-height:1;
}

.proride-products h2 span{
    color:#ed1d24;
}

.proride-products p{
    margin-top:18px;
    font-size:22px;
    color:#666;
}

.products-btn{
    padding:18px 38px;
    border:2px solid #111;
    text-decoration:none;
    color:#111;
    font-weight:700;
    transition:.35s;
}

.products-btn:hover{
    background:#ed1d24;
    border-color:#ed1d24;
    color:#fff;
}

/* =========================
   SWIPER
========================= */

.proride-swiper{
    width:min(1450px,90%);
    margin:auto;
    overflow:hidden;
    padding:20px 5px 70px;
}

.proride-swiper .swiper-wrapper{
    align-items:stretch;
}

.proride-swiper .swiper-slide{
    display:flex;
    height:auto !important;
}

/* =========================
   PRODUCT CARD
========================= */

.proride-card{
    width:100%;
    height:100%;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    display:flex;
    flex-direction:column;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    transition:transform .35s, box-shadow .35s;
}

.proride-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(237,29,36,.15);
}

.product-image{
    padding:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:300px;
    background:#fafafa;
    flex-shrink:0;
}

.product-image img{
    max-width:100%;
    max-height:240px;
    transition:.35s;
}

.proride-card:hover .product-image img{
    transform:scale(1.08);
}

.product-info{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
    min-height:340px;
}

.product-info h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
    color:#111;
}

.product-info h3 a{
    color:inherit;
    text-decoration:none;
}

.fitment{
    display:block;
    margin-top:10px;
    font-size:16px;
    color:#888;
}

/* =========================
   PRICE — scoped hard so theme/WooCommerce cannot override it
========================= */

.proride-card .price,
.proride-card .proride-price{
    margin-top:auto !important;
    margin-bottom:20px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-end !important;
    gap:10px !important;
    font-weight:700 !important;
    line-height:1 !important;
}

.proride-card .price .sale,
.proride-card .price .sale *,
.proride-card .price ins,
.proride-card .price ins *,
.proride-card .price > .amount,
.proride-card .price > .amount *,
.proride-card .price bdi{
    font-size:34px !important;
    font-weight:900 !important;
    color:#ed1d24 !important;
    line-height:1 !important;
    text-decoration:none !important;
}

.proride-card .price .woocommerce-Price-currencySymbol{
    font-size:inherit !important;
    font-weight:inherit !important;
    color:inherit !important;
    line-height:inherit !important;
    vertical-align:baseline !important;
}

.proride-card .price .regular,
.proride-card .price .regular *,
.proride-card .price del,
.proride-card .price del *{
    font-size:22px !important;
    color:#999 !important;
    opacity:.8 !important;
    font-weight:700 !important;
    text-decoration:line-through !important;
}

/* =========================
   ADD TO CART
========================= */

.add-cart{
    margin-top:0;
    display:flex;
    justify-content:center;
    align-items:center;
    height:58px;
    border-radius:12px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:background .3s, transform .3s;
    flex-shrink:0;
}

.add-cart:hover{
    background:#ed1d24;
    color:#fff;
    transform:translateY(-2px);
}

/* =========================
   SWIPER NAV
========================= */

.proride-swiper .swiper-button-next,
.proride-swiper .swiper-button-prev{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    color:#111;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.proride-swiper .swiper-button-next:hover,
.proride-swiper .swiper-button-prev:hover{
    background:#ed1d24;
    color:#fff;
}

.proride-swiper .swiper-button-next::after,
.proride-swiper .swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

.proride-swiper .swiper-button-prev{
    right:20px;
    left:auto;
}

.proride-swiper .swiper-button-next{
    left:20px;
    right:auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1400px){
    .product-info h3{
        font-size:24px;
    }

    .product-image{
        height:250px;
        padding:30px;
    }
}

@media (max-width:1024px){
    .product-info{
        padding:22px;
        min-height:320px;
    }

    .product-info h3{
        font-size:22px;
    }

    .proride-card .price .sale,
    .proride-card .price .sale *,
    .proride-card .price ins,
    .proride-card .price ins *,
    .proride-card .price > .amount,
    .proride-card .price > .amount *,
    .proride-card .price bdi{
        font-size:30px !important;
    }
}

/*==================================================
MOBILE VERSION
==================================================*/

@media (max-width:768px){

    .proride-products{
        padding:50px 0 0 0;
    }

    .proride-products-header{
        width:95%;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:18px;
        margin-bottom:28px;
    }

    .proride-products h2{
        font-size:42px;
        line-height:1;
    }

    .proride-products p{
        font-size:16px;
        margin-top:10px;
    }

    .products-btn{
        padding:14px 28px;
    }

    .proride-swiper{
        width:96%;
        margin:auto;
        padding:0 0 25px;
    }

    .proride-swiper .swiper-wrapper{
        gap:0;
        align-items:stretch;
    }

    .proride-swiper .swiper-slide{
        display:flex;
        height:auto !important;
    }

    .proride-swiper .swiper-button-next,
    .proride-swiper .swiper-button-prev{
        display:none;
    }

    .proride-card{
        border-radius:14px;
        height:100%;
        display:flex;
        flex-direction:column;
    }

    .product-image{
        height:180px;
        padding:8px;
    }

    .product-image img{
        width:100%;
        height:100%;
        object-fit:contain;
        max-height: 165px;
    }

    .product-info{
        padding:8px;
        min-height:235px;
        display:flex;
        flex-direction:column;
        flex:1;
    }

    .product-info h3{
        font-size:18px;
        line-height:1.2;
        min-height:66px;
    }

    .fitment{
        font-size:12px;
        margin-top:4px;
    }

    .proride-card .price,
    .proride-card .proride-price{
        margin-top:auto !important;
        margin-bottom:10px !important;
        min-height:28px;
    }

    .proride-card .price .sale,
    .proride-card .price .sale *,
    .proride-card .price ins,
    .proride-card .price ins *,
    .proride-card .price > .amount,
    .proride-card .price > .amount *,
    .proride-card .price bdi{
        font-size:22px !important;
    }

    .proride-card .price .regular,
    .proride-card .price .regular *,
    .proride-card .price del,
    .proride-card .price del *{
        font-size:13px !important;
    }

    .add-cart{
        height:42px;
        font-size:14px;
        border-radius:8px;
    }
}

@media (max-width:420px){
    .product-info{
        min-height:200px;
    }

    .product-info h3{
        font-size:17px;
        min-height:62px;
    }

    .product-image{
        height:165px;
    }
}




/* =========================
   RTL ARROW ICON FIX
   Use real chevrons instead of Swiper's RTL-flipped icon font.
========================= */


.proride-swiper .swiper-button-next::after,
.proride-swiper .swiper-button-prev::after{
    font-family:Arial, Helvetica, sans-serif !important;
    font-size:34px !important;
    font-weight:400 !important;
    line-height:1 !important;
    transform:none !important;
}

.proride-swiper .swiper-button-next::after{
    content:'›' !important;
}

.proride-swiper .swiper-button-prev::after{
    content:'‹' !important;
}
