﻿


.carousel-wrap {
  margin:auto;
  padding: 0 0;
  position: relative;
  border-radius:5px;
  margin:100px;
}
.carousel-wrap {
  margin:auto;
  position: relative;
}

.owl-carousel .itemBody {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
  border-radius:10px;
  overflow:hidden;
  height:300px;
}


.owl-carousel .itemBody .imagediv {
    height: 200px;
}
.owl-carousel .itemBody .imagediv img {
    object-fit: cover;
    object-position: top;
    display: block;
    height: 100%;
    width: 100%;
}

.owl-carousel .itemBody .textdiv {
      direction:rtl;
      text-align:center;
      font-size:14px;
      color:#717171;
      padding:10px 5px;
}

.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #808080;
  height: 40px;
  width: 40px;
  padding-top:8px;
  border:1px solid #e8e8e8;
  border-radius: 50%;
  overflow:hidden;
  text-align:center;
}

.owl-nav i {
  font-size: 14px;
}

.owl-nav .owl-prev {
  left: 0px;
}

.owl-nav .owl-next {
  right: 0px;
}







    :root {
    --C202502271257581411675primary-color: #D83344;
    --C202502271257581411675text-color: #333333;
    --C202502271257581411675background-color: #f5f5f7;
    --C202502271257581411675card-background: #ffffff;
    --C202502271257581411675card-description: #666;
    --C202502271257581411675card-btnhover : #C71729;
}

.X202502271257581411675 {
    background-color: var(--C202502271257581411675card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin:30px 0px;
}

.X202502271257581411675:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.X202502271257581411675__image {
    height: 250px;
    overflow: hidden;
}

.X202502271257581411675__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.X202502271257581411675:hover .X202502271257581411675__image img {
    transform: scale(1.05);
}

.X202502271257581411675__info {
    padding: 20px;
    height:100px;
    overflow:hidden;
}

.X202502271257581411675__title {
    line-height:20px;
    text-align:center;
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--C202502271257581411675text-color);
}

.X202502271257581411675__description {
    font-size: 0.8rem;
    color: var(--C202502271257581411675card-description);
    margin-bottom: 20px;
}

.X202502271257581411675__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.X202502271257581411675__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--C202502271257581411675primary-color);
}

.X202502271257581411675__btn {
    background-color: var(--C202502271257581411675primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration:none;
}

.X202502271257581411675__btn:hover {
    background-color: var(--C202502271257581411675card-btnhover);
}

@media (max-width: 480px) {
    .X202502271257581411675__image {
        height: 200px;
    }

    .X202502271257581411675__title {
        font-size: 1.0rem;
    }

    .X202502271257581411675__description {
        font-size: 0.8rem;
    }

    .X202502271257581411675__price {
        font-size: 1.1rem;
    }

    .X202502271257581411675__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}