/* Modern Video Reviews Styling */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --light-gray: #f3f4f6;
  --border-radius: 0.75rem;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --transition: all 0.3s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  list-style: none;
}

.breadcrumb li:not(:last-child):after {
  content: '/';
  margin-left: 0.5rem;
  color: #9ca3af;
}

.breadcrumb a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

/* Liste Yapısı */
.pvr-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pvr-video-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  border: 1px solid #e5e7eb;
  padding: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pvr-video-item {
    flex-direction: column;
  }
}

.image {
  position: relative;
  width: 100%;
  max-width: 480px;
  flex: 1 1 480px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.overlay:before {
  content: '';
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>') no-repeat center;
  opacity: 0.9;
  transition: var(--transition);
}

.overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.overlay:hover:before {
  transform: scale(1.1);
}

.right {
  flex: 1 1 300px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  .pvr-video-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .right {
    padding: 1rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

.pvr-review {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pvr-review h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.mainProductReviewInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  justify-content: center;
}

.pvr-rating {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.fa-stack {
  font-size: 0.75rem;
  color: #fbbf24;
}

.pvr-text {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  max-width: 600px;
}

.videoReviewMoreBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.75rem 1rem;
  background: var(--primary-color);
  color: white !important;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  text-align: center;
  margin-top: 1rem;
}

.videoReviewMoreBtn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Pagination Styling */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination a, .pagination span {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: white;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary-color);
  color: white;
}

/* Colorbox Customization */
.pvr-popupOverlay {
  background: rgba(0, 0, 0, 0.75) !important;
}

.pvr-popup #cboxClose {
  top: -2rem !important;
  right: -2rem !important;
  background: white !important;
  border-radius: 50% !important;
  padding: 0.5rem !important;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .container {
    padding: 0.5rem;
  }
}

/* Facebook Comments */
#pvr-fb-comments {
  margin-top: 2rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
