/**
 * NUTU GRUP - Single Product Page Styles
 */

.single-product-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.container .site-breadcrumbs .container {
  padding-inline: 0;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--spacing-10);
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 1024px) {
  .product-summary-grid {
    grid-template-columns: 100%;
    gap: var(--spacing-6);
  }
}

.product-gallery-col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */
.product-gallery {
  display: flex;
  gap: var(--spacing-3);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  width: 80px;
  min-width: 0;
  flex-shrink: 0;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb-item {
  width: 80px;
  height: 60px;
  flex: 0 0 80px;
  flex-shrink: 0;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid var(--color-border);
  cursor: pointer;
  background: #F1F5F9;
  transition: border-color var(--transition-fast);
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
  border-color: var(--color-primary);
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main-view {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: #F8FAFC;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-main-view img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.gallery-arrow:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

.gallery-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-zoom-btn:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  transform: scale(1.08);
}

/* ==========================================================================
   Product Gallery Lightbox (Zoom Modal)
   ========================================================================== */
.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 3vw, 2.5rem);
  box-sizing: border-box;
  user-select: none;
}

.lightbox-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-figure img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: block;
}

.lightbox-counter {
  color: #F8FAFC;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.75rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.lightbox-btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-btn-close:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.lightbox-btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-btn-nav:hover {
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-btn-nav.prev {
  left: 1.5rem;
}

.lightbox-btn-nav.next {
  right: 1.5rem;
}

@media (max-width: 640px) {
  .lightbox-dialog {
    padding: 0.5rem;
  }
  .lightbox-btn-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }
  .lightbox-btn-nav {
    width: 38px;
    height: 38px;
  }
  .lightbox-btn-nav.prev {
    left: 0.5rem;
  }
  .lightbox-btn-nav.next {
    right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column-reverse;
    gap: var(--spacing-2);
  }
  .gallery-thumbs {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: var(--spacing-2);
  }
  .gallery-thumb-item {
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
    flex-shrink: 0;
  }
  .gallery-main-view {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }
  .gallery-arrow {
    width: 34px;
    height: 34px;
  }
  .gallery-arrow svg {
    width: 16px;
    height: 16px;
  }
  .gallery-arrow.prev { left: 8px; }
  .gallery-arrow.next { right: 8px; }
}


/* ==========================================================================
   Product Info & Meta (Matching Mockup)
   ========================================================================== */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-info-header {
  margin-bottom: var(--spacing-3);
}

/* Category tag & ID/SKU top row */
.product-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-2);
}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-category-tag::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.product-id-sku {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.875rem;
  color: #94A3B8;
  font-weight: 600;
  line-height: 1.3;
}

/* Title & Stock badge row */
.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-2);
}

.product-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

.badge-stock-in {
  background-color: #DCFCE7;
  color: #166534;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.badge-stock-in svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.badge-stock-out {
  background-color: #FEE2E2;
  color: #991B1B;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .product-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .product-id-sku {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
  }
  .product-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   Dual EUR/RON Price Card (Pixel-Perfect Mockup Match)
   ========================================================================== */
.product-price-dual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0 1.25rem;
  background: #fffcfc;
  border: 1px solid #f0e6e6;
  border-radius: 16px;
  padding: 1.15rem 1.5rem;
  margin-bottom: var(--spacing-5);
  align-items: stretch;
  box-sizing: border-box;
}

.product-price-dual__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ppdual-header {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.ppdual-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.ppdual-flag svg {
  display: block;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.ppdual-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #576579;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ppdual-regular {
  font-size: 0.92rem;
  color: var(--color-text-muted, #94a3b8);
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.ppdual-value {
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-bottom: 0.25rem;
}

.ppdual-value--eur {
  color: var(--color-primary, #dc2626);
}

.ppdual-value--ron {
  color: #0b1528;
}

.ppdual-tva {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.3;
}

.ppdual-rate {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.875rem;
  color: #475569;
  margin-top: 0.45rem;
  line-height: 1.25;
}

.ppdual-rate-source {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}

.ppdual-rate-calc {
  font-size: 0.875rem;
  color: #334155;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ppdual-info-icon {
  color: #94a3b8;
  flex-shrink: 0;
}

.product-price-dual__divider {
  background: #ebe2e2;
  width: 1px;
  align-self: stretch;
  margin: 0.25rem 0;
}

.ppdual-no-price {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  color: var(--color-text-muted, #64748b);
  font-weight: 600;
  font-style: italic;
  padding: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .product-price-dual {
    padding: 0.95rem 1rem;
    gap: 0 0.75rem;
  }

  .ppdual-header {
    gap: 0.4rem;
    margin-bottom: 0.45rem;
  }

  .ppdual-flag svg {
    width: 24px;
    height: 16px;
  }

  .ppdual-label {
    font-size: 0.875rem;
  }

  .ppdual-value {
    font-size: clamp(1.25rem, 5.2vw, 1.65rem);
    margin-bottom: 0.15rem;
  }

  .ppdual-tva {
    font-size: 0.875rem;
  }

  .ppdual-rate {
    font-size: 0.875rem;
    gap: 0.25rem;
  }
}

@media (max-width: 340px) {
  .product-price-dual {
    grid-template-columns: 1fr;
    gap: 0.75rem 0;
  }

  .product-price-dual__divider {
    width: 100%;
    height: 1px;
    margin: 0.25rem 0;
  }

  .ppdual-value {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Technical Specs Grid (Clean 2-Column Mockup Style)
   ========================================================================== */
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.75rem;
  margin-bottom: var(--spacing-6);
  padding: 0;
  background: transparent;
  border: none;
}

@media (max-width: 640px) {
  .product-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  border: none;
  padding: 0;
}

.spec-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
}

.spec-label svg {
  width: 16px;
  height: 16px;
  color: #475569;
  flex-shrink: 0;
}

.spec-value {
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: left;
}

/* ==========================================================================
   Action Buttons (Row 1: Cart + Contact | Row 2: WA + Call + Quote)
   ========================================================================== */
.product-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--spacing-6);
}

.product-actions-row {
  display: flex;
  gap: 0.75rem;
}

/* Row 1: Add to Cart (Red) + Contact Us (Gray outline) */
.product-actions-row-primary {
  align-items: stretch;
}

.product-actions-row-primary form.cart {
  flex: 1;
  display: flex;
  margin: 0;
}

.product-actions-row-primary form.cart .quantity {
  display: none;
}

.product-actions-row-primary form.cart .single_add_to_cart_button {
  flex: 1;
  width: 100%;
  height: 48px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.product-actions-row-primary form.cart .single_add_to_cart_button:hover {
  background-color: #000000;
}

.product-actions-row-primary form.cart .single_add_to_cart_button::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.btn-contact-product {
  height: 48px;
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-contact-product:hover {
  border-color: var(--color-text-dark);
  background-color: #F8FAFC;
}

/* Row 2: WhatsApp (Green) + Sună acum + Cere ofertă */
.product-actions-row-secondary .btn-whatsapp {
  height: 44px;
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
}

.product-actions-row-secondary .btn-whatsapp:hover {
  background-color: #1EBE5D;
}

.product-actions-row-secondary .btn-outline-dark {
  height: 44px;
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.product-actions-row-secondary .btn-outline-dark:hover {
  border-color: var(--color-text-dark);
  background-color: #F8FAFC;
}

@media (max-width: 520px) {
  .product-actions-row {
    flex-direction: column;
  }
}

/* ==========================================================================
   Trust Features Row (Exact match to reference image)
   ========================================================================== */
.product-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
  align-items: center;
}

@media (max-width: 767px) {
  .product-guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .product-guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
  }
}

.guarantee-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.65rem;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1528;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: #0B1528;
  color: #0B1528;
}

.guarantee-icon--sprite {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url('../images/iconite-2.webp');
  background-repeat: no-repeat;
  background-size: 400% auto;
  filter: brightness(0);
}

.guarantee-icon--sprite.guarantee-icon--1 { background-position: 0 50%; }
.guarantee-icon--sprite.guarantee-icon--2 { background-position: 33.333% 50%; }
.guarantee-icon--sprite.guarantee-icon--3 { background-position: 66.666% 50%; }
.guarantee-icon--sprite.guarantee-icon--4 { background-position: 100% 50%; }

.guarantee-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.25;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
  display: inline-block;
}

@media (max-width: 480px) {
  .guarantee-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  .guarantee-icon svg {
    width: 24px;
    height: 24px;
  }
  .guarantee-text {
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .guarantee-item {
    gap: 0.45rem;
  }
}

/* ==========================================================================
   Product Content & Contact Sidebar (Responsive Layout)
   ========================================================================== */
.product-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--spacing-8);
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .product-details-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: var(--spacing-6);
  }
}

.product-tabs-col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.product-tabs-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.tabs-nav {
  display: flex;
  gap: 1.25rem;
  border-bottom: 2px solid #E2E8F0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.75rem 0.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #64748B;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--color-text-dark);
}

.tab-btn.active {
  color: var(--color-text-dark);
  border-bottom-color: var(--color-primary);
}

.tab-pane {
  display: none;
  padding-top: var(--spacing-6);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.tab-pane.active {
  display: block;
}

.tab-pane h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-4);
  word-break: break-word;
}

.product-description {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.product-description p {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.price-note {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Technical Specs Table */
.product-specs-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  word-break: break-word;
}

.spec-label-cell {
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  color: #475569;
  width: 40%;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.875rem;
}

.spec-value-cell {
  padding: 0.65rem 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  width: 60%;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.875rem;
}

/* Feature checklist */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.feature-col h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
  word-break: break-word;
}

.product-features-list li svg {
  width: 15px;
  height: 15px;
  color: #16A34A;
  flex-shrink: 0;
}

/* FAQ list */
.product-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.faq-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.faq-answer {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* Contact box sidebar */
.product-contact-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: var(--spacing-5);
  height: fit-content;
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .product-contact-box {
    position: static;
    margin-top: var(--spacing-4);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.contact-box-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-2);
  word-break: break-word;
}

.contact-box-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-4);
  line-height: 1.45;
  word-break: break-word;
}

.contact-box-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: 0.65rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-2);
  transition: all var(--transition-fast);
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.contact-box-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.contact-box-btn svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Related Products Horizontal Slider (Mockup Style)
   ========================================================================== */
.related-products-section {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-8);
  width: 100%;
}

.related-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-5);
}

.related-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.related-title-bar {
  display: inline-block;
  width: 16px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.related-slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.related-arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.related-arrow:hover {
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
  background-color: #F8FAFC;
}

.related-arrow svg {
  width: 14px;
  height: 14px;
}

.related-slider-wrap {
  width: 100%;
  overflow: hidden;
}

.related-products-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.related-products-track::-webkit-scrollbar {
  display: none;
}

.related-products-track .product-card {
  flex: 0 0 calc(20% - 1rem);
  min-width: 210px;
  scroll-snap-align: start;
  margin: 0;
}


@media (max-width: 1200px) {
  .related-products-track .product-card {
    flex: 0 0 calc(25% - 0.95rem);
  }
}

@media (max-width: 900px) {
  .related-products-track .product-card {
    flex: 0 0 calc(33.333% - 0.85rem);
  }
}

@media (max-width: 768px) {
  .related-products-track {
    gap: 0.85rem;
    padding-bottom: 0.75rem;
  }
  .related-products-track .product-card {
    flex: 0 0 calc(66.666% - 0.55rem);
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .related-products-track {
    gap: 0.75rem;
  }
  .related-products-track .product-card {
    flex: 0 0 calc(66.666% - 0.5rem);
    min-width: 0;
  }
}

/* ==========================================================================
   Mobile Sticky Bottom CTA Bar (Disabled as requested)
   ========================================================================== */
.single-product-mobile-bar {
  display: none !important;
}
