/**
 * Custom Styles for JoomShopping Integration
 * DimaLMS Theme
 */

/* Custom styles for JoomShopping components */

/* Category Page Enhancements */
.jshopping-category-page {
  font-family: "Vazirmatn", sans-serif;
}

/* Product Cards Mobile Optimization */
@media (max-width: 768px) {
  .jshopping-category-page .course-card {
    max-width: 100%;
  }

  .jshopping-category-page .course-card .p-4 {
    padding: 1rem;
  }

  .jshopping-category-page .course-card h3 {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* Pagination Styles */
.jshopping-category-page .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.jshopping-category-page .pagination a,
.jshopping-category-page .pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  transition: all 0.2s;
}

.jshopping-category-page .pagination a:hover {
  background-color: #f9fafb;
}

.jshopping-category-page .pagination .active {
  background-color: #10b981;
  color: white;
  border-color: #10b981;
}

/* Product Detail Page */
.jshopping-product-page .prose {
  max-width: none;
  color: #374151;
  line-height: 1.8;
}

.jshopping-product-page .prose h2 {
  color: #1f2937;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.jshopping-product-page .prose p {
  margin-bottom: 1rem;
}

.jshopping-product-page .prose ul {
  list-style: disc;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

/* Cart Page Enhancements */
.jshopping-cart-page {
  min-height: calc(100vh - 400px);
}

/* Smooth Animations */
.course-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-4px);
}

/* Loading States */
.jshopping-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.jshopping-loading:after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top-color: #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* RTL Adjustments */
[dir="rtl"] .jshopping-category-page .course-card {
  text-align: right;
}

[dir="rtl"] .jshopping-product-page .prose ul {
  margin-right: 1.5rem;
  margin-left: 0;
}

/* Responsive Bottom Nav Spacing */
@media (max-width: 768px) {
  .jshopping-category-page,
  .jshopping-product-page,
  .jshopping-cart-page {
    padding-bottom: 100px;
  }
}
html body span#mxcpr{
   display:none!important;
}