/* Breadcrumb Section */
.breadcrumb-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
  padding: 10px 0;
}
.breadcrumb-section .breadcrumb {
  margin: 0;
}

/* Product Header */
.product-header {
  padding: 50px 0;
  background: var(--bg);
}
.product-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Image Section */
.product-image-section {
  position: relative;
}
.product-image-section .product-badge {
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  font-size: 13px;
}
.product-main-image {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 16px;
}
.product-main-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}
.product-gallery {
  display: flex;
  gap: 12px;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: all var(--duration);
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info Section */
.product-info-section {
  position: sticky;
  top: 180px;
}
.product-brand-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
}
.product-info-section h1 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  margin-bottom: 16px;
}
.product-rating-large {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}
.product-rating-large .stars i {
  font-size: 18px;
  color: var(--star);
}
.product-rating-large .rating-score {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--heading);
}
.product-rating-large .rating-label {
  font-size: 14px;
  color: var(--text-light);
}
.product-info-section .product-excerpt {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.product-price-section .price-label {
  font-size: 14px;
  color: var(--text-light);
}
.product-price-section .price-value {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--heading);
}
.prime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #232f3e;
  color: #fff;
  font-size: 12px;
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
}
.product-cta {
  margin-bottom: 20px;
}
.product-cta .btn {
  width: 100%;
  font-size: 16px;
  padding: 16px 24px;
}
.product-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.product-meta i {
  margin-right: 6px;
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.pros-box,
.cons-box {
  padding: 30px;
  border-radius: var(--radius-lg);
}
.pros-box {
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.cons-box {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}
.pros-box h2,
.cons-box h2 {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pros-box h2 {
  color: #155724;
}
.cons-box h2 {
  color: #721c24;
}
.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-box li,
.cons-box li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
}
.pros-box li:last-child,
.cons-box li:last-child {
  border-bottom: none;
}
.pros-box li {
  color: #155724;
}
.cons-box li {
  color: #721c24;
}
.pros-box li::before {
  content: "✓";
  margin-right: 10px;
  font-weight: bold;
}
.cons-box li::before {
  content: "✗";
  margin-right: 10px;
  font-weight: bold;
}

/* Rating Breakdown */
.rating-breakdown-grid {
  max-width: 600px;
  margin: 30px auto 0;
}
.rating-item {
  margin-bottom: 20px;
}
.rating-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.rating-item .rating-label {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text);
}
.rating-item .rating-value {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--primary);
}
.rating-bar {
  height: 10px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-full);
  transition: width 0.5s var(--ease);
}

/* Review Content (extends .content-block) */
.review-content h2 {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.review-content h3 {
  margin-top: 30px;
}
.review-content p {
  margin-bottom: 20px;
}
.review-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.review-content ul,
.review-content ol {
  margin: 20px 0;
  padding-left: 24px;
}
.review-content li {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.review-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-light);
}

/* Verdict */
.verdict-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.verdict-box h2 {
  font-size: 24px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.verdict-box h2 i {
  color: var(--primary);
}
.verdict-box p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.verdict-rating {
  margin-bottom: 24px;
}
.verdict-rating .score {
  font-size: 64px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  line-height: 1;
}
.verdict-rating .max {
  font-size: 24px;
  color: var(--text-muted);
}

/* Product Review Responsive */
@media (max-width: 992px) {
  .product-header-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-info-section {
    position: static;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb-section {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .product-header {
    padding: 30px 0;
  }
  .product-main-image {
    padding: 24px;
  }
  .product-rating-large {
    padding: 12px;
  }
  .product-rating-large .stars i {
    font-size: 14px;
  }
  .product-rating-large .rating-score {
    font-size: 24px;
  }
  .product-price-section .price-value {
    font-size: 26px;
  }
  .product-meta {
    flex-wrap: wrap;
    gap: 12px;
  }
  .verdict-rating .score {
    font-size: 48px;
  }

  .breadcrumb-section {
    margin-top: 30px;
  }

  .breadcrumb a {
    font-size: 12px !important;
  }
}
@media (max-width: 480px) {
  .gallery-thumb {
    width: 60px;
    height: 60px;
  }
}
