/* Section vendor */
.ovabrw-vendor-section {
    margin-bottom: 50px;
    position: relative;
}

/* Titre vendor */
.vendor-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Item du carousel */
.ovabrw-vendor-carousel .ovabrw-carousel-item {
    padding: 10px;
    transition: transform 0.3s ease;
}
.ovabrw-vendor-carousel .ovabrw-carousel-item:hover {
    transform: translateY(-5px);
}

/* Flèches - Position par défaut (LTR) */
.ovabrw-vendor-carousel .owl-nav {
    position: absolute;
    top: -27px;
    right: 15px;
}

/* Flèches en RTL (arabe) - Position à gauche */
body.rtl .ovabrw-vendor-carousel .owl-nav,
html[dir="rtl"] .ovabrw-vendor-carousel .owl-nav,
.ovabrw-vendor-carousel[dir="rtl"] .owl-nav {
    right: auto;
    left: 15px;
	top: -25px;
}

.ovabrw-vendor-carousel .owl-nav button {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 12px;
    margin-left: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Ajuster les marges pour RTL */
body.rtl .ovabrw-vendor-carousel .owl-nav button,
html[dir="rtl"] .ovabrw-vendor-carousel .owl-nav button,
.ovabrw-vendor-carousel[dir="rtl"] .owl-nav button {
    margin-left: 0;
    margin-right: 5px;
}

.ovabrw-vendor-carousel .owl-nav button:hover {
    background: #ff3726;
    border-color: #ff3726;
    color: #fff;
}

/* Points */
.ovabrw-vendor-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}
.ovabrw-vendor-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    transition: background 0.3s;
}
.ovabrw-vendor-carousel .owl-dots .owl-dot.active span {
    background: #ff3726;
}

/* Fixer la hauteur des images des produits */
.ovabrw-product-image {
    height: 200px; /* Ajuste selon ton design */
    overflow: hidden;
    border-radius: 8px 8px 0 0; /* si tu veux arrondir le haut */
}

.ovabrw-product-image img.ovabrw-product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* l'image remplit le conteneur sans déformation */
}

/* Assurer que toutes les cartes ont la même hauteur globale */
.ovabrw-product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* étendre la carte pour que tout soit aligné */
}