/* ============================================================
   LOVE ON FIRE — Product Page Styles
   Dedicated product detail page: breadcrumb, hero, gallery,
   quantity, tabs, related products, and responsive overrides.
   ============================================================ */

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding-top: 120px;
  padding-bottom: 12px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb-list a {
  color: var(--text-2);
  transition: color var(--t-fast);
}
.breadcrumb-list a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.5;
  user-select: none;
}
.breadcrumb-current {
  color: var(--text-1);
  font-weight: 600;
}

/* ============================================================
   PRODUCT HERO — Two Column Layout
   ============================================================ */
.product-hero {
  padding: 32px 0 var(--section-py);
  position: relative;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRODUCT GALLERY — Left Column
   ============================================================ */
.product-gallery {
  position: sticky;
  top: 130px;
}

.product-gallery-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-gallery-main:hover img {
  transform: scale(1.05);
}

/* Slider Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--t-fast);
  opacity: 0;
}
.product-gallery-main:hover .gallery-arrow {
  opacity: 1;
}
.gallery-arrow:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.gallery-arrow.prev-arrow {
  left: 16px;
}
.gallery-arrow.next-arrow {
  right: 16px;
}
@media (max-width: 700px) {
  .gallery-arrow {
    opacity: 1; /* Always visible on mobile */
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.product-gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-gallery-badge .sc-badge {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}

/* Thumbnails */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.product-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast);
  background: var(--bg-card);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-thumb:hover img {
  transform: scale(1.08);
}
.product-thumb:hover,
.product-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ============================================================
   PRODUCT INFO — Right Column
   ============================================================ */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-rating .stars {
  display: flex;
  gap: 2px;
}
.product-rating .star {
  font-size: 15px;
  color: var(--gold);
}
.product-rating-count {
  font-size: 13px;
  color: var(--text-muted);
}
.product-rating-count strong {
  color: var(--text-2);
  font-weight: 600;
}

/* Price block */
.product-price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.product-price-now {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.product-price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-price-save {
  font-size: 12px;
  font-weight: 700;
  color: var(--red-light);
  background: var(--red-glow);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.product-price-off {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.product-tax-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Description */
.product-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Tags */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.product-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all var(--t-fast);
}
.product-tag:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-gold);
  color: var(--text-1);
}

/* Divider line inside product info */
.product-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 4px 0 24px;
}

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.product-qty-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}
.qty-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.qty-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-1);
}
.qty-btn:active {
  background: var(--red-glow);
}
.qty-value {
  width: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  font-family: var(--font-serif);
}

/* ============================================================
   ADD TO CART / BUY NOW BUTTONS
   ============================================================ */
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.product-actions .btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

/* Wishlist inline */
.product-actions .btn-wish {
  flex: 0;
  min-width: auto;
  width: 54px;
  height: 54px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all var(--t-fast);
}
.product-actions .btn-wish:hover,
.product-actions .btn-wish.active {
  background: var(--red-glow);
  border-color: var(--red);
  color: var(--red-light);
}

/* Trust Badges */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.trust-badge-item svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}
.trust-badge-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
}
@media (max-width: 500px) {
  .trust-badges-grid { gap: 8px; padding: 12px; }
  .trust-badge-item svg { width: 24px; height: 24px; }
  .trust-badge-item span { font-size: 10px; }
}

/* ============================================================
   PRODUCT FEATURE TABS (Full-width section)
   ============================================================ */
.product-tabs-section {
  padding: 0 0 var(--section-py);
  position: relative;
}

.product-tabs-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.product-tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.product-tab-btn {
  flex: 1;
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.product-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform var(--t-med);
}
.product-tab-btn:hover {
  color: var(--text-2);
  background: rgba(255,255,255,0.02);
}
.product-tab-btn.active {
  color: var(--gold);
}
.product-tab-btn.active::after {
  transform: scaleX(1);
}

.product-tab-content {
  display: none;
  padding: clamp(28px, 4vw, 48px);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  animation: fadeIn 0.35s ease;
}
.product-tab-content.active {
  display: block;
}

.product-tab-content .tab-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}
.product-tab-content .tab-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.product-tab-content .tab-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 11px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Specs grid variant */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.spec-item:hover {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.04);
}
.spec-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.spec-value {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 500;
}

/* ============================================================
   RELATED PRODUCTS — "You May Also Like"
   ============================================================ */
.related-section {
  padding: 0 0 var(--section-py);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.related-card-img {
  position: relative;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.related-card:hover .related-card-img img {
  transform: scale(1.06);
}
.related-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #6B3FA0, #4B2A80);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-card-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.related-card-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
.related-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
.related-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.related-card-price .price-now {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.related-card-price .price-old {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.related-card-actions {
  display: flex;
  gap: 10px;
}
.related-card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE — Product Page
   ============================================================ */
@media (max-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    position: relative;
    top: auto;
    max-width: 560px;
    margin: 0 auto;
  }
  .product-info {
    max-width: 600px;
    margin: 0 auto;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .breadcrumb {
    padding-top: 110px;
  }
  .product-tab-buttons {
    flex-direction: column;
  }
  .product-tab-btn {
    text-align: left;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .product-tab-btn.active {
    border-left-color: var(--gold);
    border-bottom-color: transparent;
  }
  .product-tab-btn::after {
    display: none;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn {
    min-width: 100%;
  }
  .product-actions .btn-wish {
    width: 100%;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .product-trust-micro {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 500px) {
  .product-thumbs {
    gap: 6px;
  }
  .product-price-now {
    font-size: 34px;
  }
  .product-name {
    font-size: 30px;
  }
}

/* ============================================================
   STICKY ADD TO CART
   ============================================================ */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sticky-atc.show {
  transform: translateY(0);
}
.sticky-atc-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-atc-img {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  object-fit: cover;
  border: 1px solid var(--border);
}
.sticky-atc-text {
  display: flex;
  flex-direction: column;
}
.sticky-atc-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
}
.sticky-atc-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.sticky-atc-btn {
  padding: 12px 32px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .sticky-atc-info { display: none; }
  .sticky-atc { justify-content: center; padding: 12px 16px; }
  .sticky-atc-btn { width: 100%; text-align: center; justify-content: center; padding: 16px 24px; font-size: 16px; }
}

/* ============================================================
   PRODUCT REVIEWS SECTION
   ============================================================ */
.product-reviews-section {
  padding: var(--section-py) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews-summary {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.reviews-overall {
  text-align: center;
}

.reviews-overall-rating {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--text-1);
  margin-bottom: 8px;
}

.reviews-overall-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 4px;
}

.reviews-overall-count {
  font-size: 14px;
  color: var(--text-2);
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
}

.review-bar-label {
  min-width: 45px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-bar-label svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  fill: currentColor;
}

.review-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.reviews-list {
  column-count: 2;
  column-gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reviews-list {
    column-count: 3;
    column-gap: 20px;
  }
}

.pr-card {
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  width: 100%;
}
.reviews-pagination button {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
}
.reviews-pagination button:hover {
  color: var(--text-1);
}
.reviews-pagination button.active {
  color: var(--gold);
  font-weight: bold;
}

.pr-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pr-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
}

.pr-name {
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pr-verified {
  color: #4CAF50;
  font-size: 11px;
  background: rgba(76, 175, 80, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.pr-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pr-stars {
  color: var(--gold);
  font-size: 14px;
}

.pr-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.pr-text {
  color: var(--text-2);
  line-height: 1.6;
  font-size: 15px;
}

/* Write Review Modal */
.review-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.review-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.review-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.review-modal-overlay.active .review-modal-content {
  transform: translateY(0);
}
.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.review-form-group {
  margin-bottom: 16px;
}
.review-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-1);
  font-size: 14px;
  font-weight: 600;
}
.review-form-group input,
.review-form-group textarea {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--r-sm);
  color: var(--text-1);
  font-family: var(--font-sans);
}
.review-form-group input:focus,
.review-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.star-rating-select {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,0.1);
  font-size: 24px;
  cursor: pointer;
}
.star-rating-select .star {
  transition: color 0.2s;
}
.star-rating-select .star.active {
  color: var(--gold);
}
@media (max-width: 600px) {
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* Photo Reviews Gallery */
.photo-reviews-gallery {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.05);
}
.photo-reviews-gallery::-webkit-scrollbar {
  height: 6px;
}
.photo-reviews-gallery::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.photo-reviews-gallery::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.photo-review-item {
  flex: 0 0 auto;
  width: 200px;
  height: 250px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-body);
}

.photo-review-item img {
  width: 100%;
  height: 65%;
  object-fit: cover;
  display: block;
}

.photo-review-details {
  padding: 12px;
  height: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-review-details .pr-stars {
  font-size: 10px;
  margin-bottom: 4px;
}
.photo-review-details .pr-title {
  font-size: 13px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.photo-review-details .pr-name {
  font-size: 11px;
  color: var(--text-2);
}

/* File input styling */
.review-file-input {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--bg-body);
  border: 1px dashed var(--border);
  border-radius: var(--r-sm);
  color: var(--text-2);
  cursor: pointer;
  margin-top: 4px;
}
.review-file-input::-webkit-file-upload-button {
  background: var(--gold);
  color: var(--bg-body);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 12px;
  font-weight: 600;
}

/* Fullscreen Image Modal */
.fullscreen-image-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.fullscreen-image-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-image-modal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.fullscreen-image-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  line-height: 1;
}
