/* ==========================================================================
   L'Aube Avenue - Product Detail Page Styles
   ========================================================================== */

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: var(--color-text-muted);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--color-text-muted);
}

.breadcrumb-list li a {
  color: var(--color-text-light);
  font-size: 11px;
}

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

.breadcrumb-list li.current {
  color: var(--color-text);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Product Detail Layout
   ========================================================================== */
.product-detail {
  padding: 40px 0;
  background: var(--color-bg);
}

.product-detail-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */
.product-gallery {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 140px;
}

.product-gallery-main {
  position: relative;
  margin-bottom: 15px;
  background: var(--color-bg-light);
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-favorite:hover {
  color: var(--color-sale);
  transform: scale(1.1);
}

.gallery-favorite.active {
  color: var(--color-sale);
}

.gallery-favorite.active i {
  font-weight: 900;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.thumb-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  background: var(--color-bg-light);
}

.thumb-item.active {
  border-color: var(--color-primary);
}

.thumb-item:hover {
  border-color: var(--color-text-muted);
}

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

/* ==========================================================================
   Product Info
   ========================================================================== */
.product-info {
  width: 420px;
  flex-shrink: 0;
}

.product-info-brand {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-info-brand a {
  color: var(--color-primary);
  font-weight: bold;
}

.product-info-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--color-text);
}

.product-info-price {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.price-current {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text);
}

.price-tax {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.product-info-section {
  margin-bottom: 20px;
}

.product-info-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-text);
}

.size-guide-link {
  font-size: 12px;
  font-weight: normal;
  color: var(--color-primary) !important;
  margin-left: 10px;
  text-decoration: underline !important;
}

/* Color Options */
.color-options {
  display: flex;
  gap: 10px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.active {
  border-color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-text);
}

/* Size Options */
.size-options {
  display: flex;
  gap: 8px;
}

.size-btn {
  min-width: 50px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 15px;
}

.size-btn:hover {
  border-color: var(--color-text);
}

.size-btn.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.size-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: var(--color-bg-light);
}

.qty-input {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
  outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.btn-add-cart {
  flex: 1;
  height: 50px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: var(--color-primary-dark);
}

.btn-add-cart i {
  margin-right: 8px;
}

.btn-add-favorite {
  width: 50px;
  height: 50px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
}

.btn-add-favorite:hover {
  border-color: var(--color-sale);
  color: var(--color-sale);
}

.btn-add-favorite.active {
  color: var(--color-sale);
  border-color: var(--color-sale);
}

/* Delivery Info */
.delivery-info {
  background: var(--color-bg-light);
  padding: 20px;
  margin-bottom: 20px;
}

.delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.delivery-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.delivery-item i {
  font-size: 16px;
  color: var(--color-primary);
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.delivery-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.delivery-item span {
  font-size: 11px;
  color: var(--color-text-muted);
}

.product-sku {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Product Description Section (Accordion)
   ========================================================================== */
.product-description-section {
  padding: 0 0 40px;
  background: var(--color-bg);
}

.detail-accordion {
  border-bottom: 1px solid var(--color-border);
}

.detail-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.3s ease;
}

.detail-accordion-header:hover {
  color: var(--color-primary);
}

.detail-accordion-header i {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.detail-accordion-header.active i {
  transform: rotate(180deg);
}

.detail-accordion-body {
  display: none;
  padding: 0 0 25px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.detail-accordion-body.open {
  display: block;
}

.detail-accordion-body h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text);
  margin: 20px 0 8px;
}

.detail-accordion-body h4:first-child {
  margin-top: 0;
}

.product-description-text {
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--color-text-light);
}

.product-features li i {
  color: var(--color-primary);
  margin-right: 8px;
  font-size: 12px;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 13px;
  text-align: left;
}

.spec-table th {
  width: 120px;
  font-weight: bold;
  color: var(--color-text);
  background: var(--color-bg-light);
}

.spec-table td {
  color: var(--color-text-light);
}

/* Size Table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.size-table th,
.size-table td {
  padding: 10px 15px;
  border: 1px solid var(--color-border-light);
  font-size: 13px;
  text-align: center;
}

.size-table thead th {
  background: var(--color-bg-light);
  font-weight: bold;
  color: var(--color-text);
}

.size-table tbody td:first-child {
  font-weight: bold;
  background: var(--color-bg-light);
  text-align: left;
}

.size-note {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Detail Page Sections (Styling, Related, Recent)
   ========================================================================== */
.detail-styling-section {
  padding: 50px 0;
  background: var(--color-bg-light);
}

.detail-related-section {
  padding: 50px 0;
  background: var(--color-bg);
}

.detail-recent-section {
  padding: 50px 0;
  background: var(--color-bg-light);
}

.recent-slider {
  margin: 0 -5px;
}

.recent-slider .slick-slide {
  padding: 0 5px;
}

.recent-slider .slick-prev,
.recent-slider .slick-next {
  z-index: 10;
  width: 30px;
  height: 30px;
}

.recent-slider .slick-prev {
  left: -15px;
}

.recent-slider .slick-next {
  right: -15px;
}

.recent-slider .slick-prev:before,
.recent-slider .slick-next:before {
  font-size: 24px;
  color: var(--color-text);
  opacity: 0.5;
}

/* ==========================================================================
   Review Summary (mini - in product info)
   ========================================================================== */
.product-info-review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars-mini i {
  color: #D4AF37;
  font-size: 14px;
}

.review-avg {
  font-size: 14px;
  font-weight: bold;
  margin-left: 4px;
}

.review-count-link {
  font-size: 12px;
  color: var(--color-primary) !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   Coupon / Points
   ========================================================================== */
.coupon-points-area {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.points-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #FFF8E7;
  border: 1px solid #F0D78C;
  border-radius: 4px;
  font-size: 12px;
  color: #8B6914;
}

.points-badge i {
  color: #D4AF37;
}

.coupon-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #FFF0F0;
  border: 1px solid #F0A0A0;
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-sale);
}

.coupon-badge i {
  font-size: 14px;
}

.coupon-copy-btn {
  margin-left: auto;
  padding: 3px 10px;
  font-size: 11px;
  background: var(--color-sale);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.coupon-copy-btn:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Size - Soldout & Low Stock
   ========================================================================== */
.size-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 48px;
  padding: 4px 12px;
}

.size-soldout-label {
  font-size: 9px;
  color: var(--color-sale);
}

.size-low-stock {
  font-size: 9px;
  color: #D4AF37;
}

.size-btn.soldout {
  opacity: 0.5;
  position: relative;
}

.size-btn.soldout::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 1px;
  background: var(--color-text-muted);
  transform: translateY(-50%);
}

/* ==========================================================================
   Restock Notification
   ========================================================================== */
.restock-notify {
  margin-top: 12px;
  padding: 12px 15px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.restock-notify-text {
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.restock-notify-text i {
  color: var(--color-primary);
  margin-right: 4px;
}

.restock-notify-form {
  display: flex;
  gap: 8px;
}

.restock-email-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  outline: none;
}

.restock-email-input:focus {
  border-color: var(--color-primary);
}

.restock-submit-btn {
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.restock-submit-btn:hover {
  background: var(--color-primary-dark);
}

/* ==========================================================================
   Store Stock Button & Delivery Date
   ========================================================================== */
.store-stock-trigger {
  margin-bottom: 15px;
}

.btn-store-stock {
  width: 100%;
  padding: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text);
}

.btn-store-stock i {
  margin-right: 8px;
  color: var(--color-primary);
}

.btn-store-stock:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.delivery-date-section {
  margin-bottom: 15px;
  padding: 15px;
  background: var(--color-bg-light);
  border-radius: 4px;
}

.delivery-date-section .product-info-label {
  margin-bottom: 8px;
}

.delivery-date-section .product-info-label i {
  color: var(--color-primary);
  margin-right: 4px;
}

.delivery-date-form {
  display: flex;
  gap: 8px;
}

.zip-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  outline: none;
}

.zip-input:focus {
  border-color: var(--color-primary);
}

.zip-check-btn {
  padding: 8px 16px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  font-size: 12px;
  cursor: pointer;
}

.zip-check-btn:hover {
  background: var(--color-primary-dark);
}

.delivery-date-result {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  font-size: 13px;
}

.delivery-date-result .delivery-fastest {
  color: var(--color-primary);
  font-weight: bold;
}

/* ==========================================================================
   SNS Share
   ========================================================================== */
.sns-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--color-border-light);
}

.sns-share-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.sns-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.sns-btn:hover {
  opacity: 1;
}

.sns-line:hover { background: #06C755; color: #fff; border-color: #06C755; }
.sns-twitter:hover { background: #000; color: #fff; border-color: #000; }
.sns-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.sns-pinterest:hover { background: #E60023; color: #fff; border-color: #E60023; }
.sns-copy:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ==========================================================================
   Gallery Zoom Button
   ========================================================================== */
.gallery-zoom-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-zoom-btn:hover {
  background: var(--color-text);
  color: #fff;
}

/* ==========================================================================
   Zoom Modal
   ========================================================================== */
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: none;
  flex-direction: column;
}

.zoom-modal.open {
  display: flex;
}

.zoom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
}

.zoom-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.zoom-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s ease;
}

.zoom-close:hover {
  opacity: 0.7;
}

.zoom-modal-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}

.zoom-image-wrap {
  max-width: 80%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-image-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.zoom-prev { left: 20px; }
.zoom-next { right: 20px; }

.zoom-thumbs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 15px 20px;
  overflow-x: auto;
}

.zoom-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.zoom-thumb.active {
  border-color: #fff;
  opacity: 1;
}

.zoom-thumb:hover {
  opacity: 0.8;
}

.zoom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Store Stock Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2500;
  display: none;
}

.modal-overlay.open {
  display: block;
}

.store-stock-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-bg);
  z-index: 2501;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: none;
}

.store-stock-modal.open {
  display: block;
}

.store-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.store-modal-header h3 {
  font-size: 16px;
  font-weight: bold;
}

.store-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-text-muted);
}

.store-modal-body {
  padding: 20px;
}

.store-stock-table {
  width: 100%;
  border-collapse: collapse;
}

.store-stock-table th,
.store-stock-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 13px;
  text-align: center;
}

.store-stock-table thead th {
  background: var(--color-bg-light);
  font-weight: bold;
  font-size: 12px;
}

.store-stock-table .store-name {
  text-align: left;
  font-weight: bold;
}

.store-stock-table .store-area {
  text-align: left;
  color: var(--color-text-muted);
  font-size: 11px;
}

.stock-available {
  color: #4CAF50;
  font-size: 10px;
}

.stock-unavailable {
  color: #ccc;
  font-size: 12px;
}

.store-stock-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 15px;
}

/* ==========================================================================
   Coordinate Section
   ========================================================================== */
.detail-coordinate-section {
  padding: 50px 0;
  background: var(--color-bg);
}

.coordinate-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.coordinate-card {
  display: flex;
  gap: 20px;
  background: var(--color-bg-light);
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
}

.coordinate-main-image {
  width: 200px;
  flex-shrink: 0;
  position: relative;
}

.coordinate-main-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.coordinate-staff-tag {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.coordinate-staff-tag span {
  display: block;
}

.coordinate-staff-tag span:first-child {
  font-weight: bold;
  color: var(--color-text);
  font-size: 12px;
}

.staff-height, .staff-shop {
  font-size: 10px;
  color: var(--color-text-muted);
}

.coordinate-items {
  flex: 1;
  min-width: 0;
}

.coordinate-items-label {
  font-size: 11px;
  font-weight: bold;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.coordinate-item-link {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: center;
}

.coordinate-item-link:last-child {
  border-bottom: none;
}

.coordinate-item-link img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.coordinate-item-info {
  min-width: 0;
}

.coordinate-item-brand {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
}

.coordinate-item-name {
  display: block;
  font-size: 12px;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coordinate-item-price {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-text);
}

/* ==========================================================================
   Review Section
   ========================================================================== */
.detail-review-section {
  padding: 50px 0;
  background: var(--color-bg);
}

.review-summary-box {
  display: flex;
  gap: 40px;
  padding: 30px;
  background: var(--color-bg-light);
  border-radius: 8px;
  margin-bottom: 30px;
  align-items: center;
}

.review-summary-left {
  text-align: center;
  min-width: 120px;
}

.review-big-score {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1;
}

.review-big-stars {
  color: #D4AF37;
  font-size: 16px;
  margin: 8px 0;
}

.review-total-count {
  font-size: 12px;
  color: var(--color-text-muted);
}

.review-summary-right {
  flex: 1;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.review-bar-label {
  font-size: 12px;
  width: 36px;
  text-align: right;
  color: var(--color-text-muted);
}

.review-bar-label i {
  color: #D4AF37;
  font-size: 10px;
}

.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #D4AF37;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.review-bar-count {
  font-size: 12px;
  color: var(--color-text-muted);
  width: 24px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  padding: 20px;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-card-stars i {
  color: #D4AF37;
  font-size: 13px;
}

.review-card-title {
  font-size: 14px;
  font-weight: bold;
}

.review-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.review-card-body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.review-card-footer {
  display: flex;
  justify-content: flex-end;
}

.review-helpful-btn {
  background: none;
  border: 1px solid var(--color-border);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.review-helpful-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.review-helpful-btn.voted {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .product-detail-inner {
    gap: 30px;
  }

  .product-info {
    width: 350px;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }

  .styling-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .product-detail {
    padding: 20px 0;
  }

  .product-detail-inner {
    flex-direction: column;
    gap: 25px;
  }

  .product-gallery {
    position: static;
  }

  .product-info {
    width: 100%;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .product-info-name {
    font-size: 17px;
  }

  .price-current {
    font-size: 20px;
  }

  .product-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 12px 15px;
    margin: 0;
    z-index: 900;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
  }

  .breadcrumb-list li.current {
    max-width: 150px;
  }

  .detail-styling-section,
  .detail-related-section,
  .detail-recent-section,
  .detail-coordinate-section,
  .detail-review-section {
    padding: 30px 0;
  }

  .coordinate-list {
    grid-template-columns: 1fr;
  }

  .coordinate-card {
    flex-direction: column;
  }

  .coordinate-main-image {
    width: 100%;
  }

  .review-summary-box {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .store-stock-modal {
    width: 95%;
    max-height: 90vh;
  }

  .store-stock-table {
    font-size: 11px;
  }

  .store-stock-table th,
  .store-stock-table td {
    padding: 8px 6px;
  }

  .zoom-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .zoom-prev { left: 10px; }
  .zoom-next { right: 10px; }

  /* Padding for fixed cart bar */
  .site-footer {
    padding-bottom: 70px;
  }
}
