/* Slider - معرض الصور */
.mm-slider{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

.mm-track{
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform .35s ease;
}

.mm-slide{
  min-width: 100%;
  height: 420px;
  background: #f8fafc;
}

.mm-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* أزرار التنقل */
.mm-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(2,6,23,.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: all .2s;
  z-index:10;
}

.mm-nav:hover{
  background: rgba(2,6,23,.6);
  transform: translateY(-50%) scale(1.05);
}

.mm-prev{
  left: 12px;
}

.mm-next{
  right: 12px;
}

/* نقاط التنقل */
.mm-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index:10;
}

.mm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition:all .2s;
}

.mm-dot.active{
  background: #fff;
  transform: scale(1.2);
}

/* استجابة */
@media (max-width: 680px){
  .mm-slide{
    height: 280px;
  }
  .mm-nav{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
/* إضافة تنسيقات جدول الأسعار */
.price-table-wrap{
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}

.price-table{
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.price-table thead th{
  background: #f8fafc;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.price-table tr:last-child td{
  border-bottom: none;
}

.price-table .green{
  color: #16a34a;
}

.price-table .muted{
  color: var(--muted);
}

.price-table .badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-table .badge.ok{
  background: rgba(34,197,94,.12);
  color: #166534;
}

.price-table .badge.no{
  background: rgba(239,68,68,.12);
  color: #991b1b;
}

.price-table .empty{
  color: var(--muted);
  text-align: center;
}

/* باقي تنسيقات السلايدر */
.mm-slider{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

