/* Product Page Styles */
.product-hero {
  padding: 8rem 0 4rem;
}
/* استایل ستاره‌ها مثل ووکامرس اصلی */
.star-rating {
    position: relative;
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
    color: #ccc; /* رنگ ستاره‌های خالی */
}

.star-rating::before {
    content: "★★★★★";
    opacity: 0.3;
}

.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: gold; /* رنگ ستاره‌های پر */
}

.star-rating span::before {
    content: "★★★★★";
}
/* پنهان کردن متن عددی و فقط نمایش ستاره‌ها */
.star-rating span {
    text-indent: -9999px; /* متن رو مخفی می‌کنه */
    position: relative;
}

.star-rating {
    position: relative;
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
    color: #ccc; /* رنگ ستاره‌های خالی */
}

.star-rating::before {
    content: "★★★★★";
    opacity: 0.3; /* خاکستری */
}

.star-rating span::before {
    content: "★★★★★";
    position: absolute;
    left: 0;
    top: 0;
    color: gold; /* ستاره‌های پر */
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-image-section {
  position: sticky;
  top: 8rem;
}

.product-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-image-container:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image-container img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image-container:hover img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red-sale);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  z-index: 10;
}
.product-content .btn-add-to-cart {
	flex: 2;
	padding: 12px 20px;
	background-color: #e91e63;
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
}
.product-content .btn-view {
	flex: 1;
	padding: 8px 20px;
	background-color: transparent;
	color: #1a1a1a;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-image-container:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 3rem;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #f8fafc;
  transform: scale(1.1);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badge {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trust-badge svg {
  color: #10b981;
  margin-bottom: 0.5rem;
}

.trust-badge span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.product-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-text {
  font-size: 1.125rem;
  color: #374151;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 1.5rem;
  background: #d1d5db;
}

.sales {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 1.125rem;
}

.sales svg {
  color: #6b7280;
}

.price-section {
  background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(233, 30, 99, 0.1));
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.price-info {
  flex: 1;
}

.price-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink-accent);
}

.currency {
  font-size: 1.5rem;
  color: var(--pink-accent);
  font-weight: 600;
}

.original-price {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-badge {
  background: var(--red-sale);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.discount-percentage {
  font-size: 1.5rem;
  font-weight: 700;
}

.discount-label {
  font-size: 0.875rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 200px;
  flex: 1;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
}

.meta-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.meta-value {
  color: #374151;
  font-weight: 500;
}

.quick-features {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.quick-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.quick-features ul {
  list-style: none;
  padding: 0;
}

.quick-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #374151;
}

.quick-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badge {
	background: white;
	padding: 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.trust-badge svg {
  color: #10b981;
}

.trust-badge span {
  font-size: 0.875rem;
  color: #6b7280;
}

.product-info {
  padding-right: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.product-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.125rem;
}

.rating-text {
  font-size: 1.125rem;
  color: #6b7280;
}

.divider {
  width: 1px;
  height: 1.5rem;
  background: #d1d5db;
}

.sales {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 1.125rem;
}

.sales svg {
  color: #6b7280;
}

.price-section {
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.1), rgba(236, 72, 153, 0.1));
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.price-info {
  flex: 1;
}

.price-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  display: block;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-container span bdi ,.price-container span ins bdi {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pink-accent);
}
.action-buttons .cart {
	display: flex;
	align-items: center;
	gap: 15px;
}
.action-buttons .quantity {
	display: none;
}
.currency {
  font-size: 1.5rem;
  color: var(--pink-accent);
}

.price-container span del bdi {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-badge {
  background: var(--red-sale);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.discount-percentage {
  font-size: 1.5rem;
  font-weight: 700;
}

.discount-label {
  font-size: 0.875rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
}

.meta-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.meta-value {
  font-weight: 600;
  color: #1f2937;
}

.quick-features {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.quick-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.quick-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.quick-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.quick-features li:last-child {
  border-bottom: none;
}

.quick-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Product Highlights */
.product-highlights {
  padding: 4rem 0;
  background: white;
}

.section-badge {
  display: inline-block;
  background: rgba(233, 30, 99, 0.1);
  color: var(--pink-accent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.highlight-item {
  position: relative;
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.highlight-item:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.highlight-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(233, 30, 99, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-item:hover::before {
  opacity: 1;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--orange-primary), var(--pink-accent));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10;
}

.highlight-item:hover h3 {
  color: var(--pink-accent);
}

.highlight-item p {
  color: #6b7280;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.highlight-item::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--orange-primary), var(--pink-accent));
  border-radius: 50%;
  opacity: 0.05;
  transition: opacity 0.3s ease;
}

.highlight-item:hover::after {
  opacity: 0.1;
}

.highlights-cta {
  background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(233, 30, 99, 0.1));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.highlights-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.highlights-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Product Screenshots */
.product-screenshots {
  padding: 4rem 0;
  background: #f8fafc;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.screenshot-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.screenshot-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.screenshot-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.screenshot-item:hover .screenshot-image img {
  transform: scale(1.1);
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.screenshot-item:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-info {
  color: white;
}

.screenshot-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.screenshot-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.zoom-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-item:hover .zoom-indicator {
  opacity: 1;
}

.screenshot-content {
  padding: 1.5rem;
}

.screenshot-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.screenshot-content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Product Tabs */
.product-tabs {
  padding: 4rem 0;
  background: white;
}

.tabs-container {
  max-width: 4xl;
  margin: 0 auto;
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--pink-accent);
  background: rgba(233, 30, 99, 0.05);
}

.tab-btn.active {
  color: var(--pink-accent);
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tabs-content {
  min-height: 400px;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
	display: block !important;
}
.tab-content {
  max-width: none;
}

.tab-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.tab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #1f2937;
}

.tab-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: #1f2937;
}

.tab-content p {
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1rem;
}


.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e40af;
}

.feature-card p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.target-audience {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.target-audience li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #374151;
}

.target-audience li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.features-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-category {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-category:hover {
  border-color: rgba(233, 30, 99, 0.3);
}

.feature-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--pink-accent);
}

.feature-category ul {
  list-style: none;
  padding: 0;
}

.feature-category li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #374151;
}

.feature-category li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.installation-steps {
  margin: 2rem 0;
}

.step {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--orange-primary), var(--pink-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.code-block {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #374151;
  margin: 0.5rem 0;
}

.info-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-box svg {
  color: #059669;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-title {
  color: #065f46;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-text {
  color: #047857;
  font-size: 0.875rem;
}

.system-requirements {
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  border: 2px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.system-requirements h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e40af;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.requirement-item {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
}

.requirement-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.requirement-value {
  color: #374151;
  font-weight: 500;
}

/* Reviews Section */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.review-summary {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.overall-rating {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stars svg {
  color: #fbbf24;
  width: 1.5rem;
  height: 1.5rem;
}

.review-count {
  color: #6b7280;
  text-align: center;
}

.rating-breakdown {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rating-bar span:first-child {
  width: 4rem;
  font-size: 0.875rem;
  color: #374151;
}

.bar {
  flex: 1;
  background: #e5e7eb;
  border-radius: 9999px;
  height: 0.75rem;
  overflow: hidden;
}

.fill {
  background: #fbbf24;
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.rating-bar span:last-child {
  width: 3rem;
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

.reviews-list {
  margin-top: 2rem;
}

.review-item {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.review-item:hover {
  border-color: rgba(233, 30, 99, 0.3);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--orange-primary), var(--pink-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-rating svg {
  color: #fbbf24;
  width: 1.25rem;
  height: 1.25rem;
}

.review-text {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Product FAQ */
.product-faq {
  padding: 4rem 0;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--orange-primary), var(--pink-accent));
  border-radius: 50%;
  margin-bottom: 1rem;
  color: white;
}

.faq-list {
  margin: 3rem 0;
}

.faq-item {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(233, 30, 99, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  text-align: right;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question svg {
  color: #6b7280;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 200px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

.faq-cta {
  background: white;
  border: 2px solid rgba(233, 30, 99, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.faq-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Related Products */
.related-products {
  padding: 4rem 0;
  background: #f8fafc;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pink-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: var(--pink-light);
}

.view-all-link svg {
  transition: transform 0.3s ease;
}

.view-all-link:hover svg {
  transform: translateX(0.25rem);
}
.related-products .section-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: #f8fafc;
  transform: scale(1.1);
}

.lightbox-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lightbox-info {
  text-align: center;
  margin-top: 1.5rem;
  color: white;
}

.lightbox-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.lightbox-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}