.p4u-featured-products {
  margin-bottom: 20px;
}

.p4u-featured-products.loading .p4u-products-container {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.p4u-featured-products.loading .p4u-products-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #232323;
  border-radius: 50%;
  animation: p4u-spin 1s linear infinite;
}

@keyframes p4u-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.p4u-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 0;
}

.p4u-pagination-nav {
  background: #000;
  border: 1px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.p4u-pagination-nav:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.p4u-pagination-nav.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.p4u-pagination-nav .material-icons {
  font-size: 20px;
  color: #fff;
}

.p4u-pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p4u-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.p4u-page-link:hover {
  color: #1d0a4a;
  text-decoration: none;
}

.p4u-page-link.active {
  color: #1d0a4a;
  cursor: default;
}

.p4u-page-dots {
  padding: 0 4px;
  color: #d9d9d9;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
}

@media (max-width: 768px) {
  .p4u-pagination {
    justify-content: center;
  }

  .p4u-pagination-nav {
    width: 36px;
    height: 36px;
  }

  .p4u-page-link,
  .p4u-page-dots {
    font-size: 24px;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
  }
}
