/* =========================================
   PRODUCT PAGE - Advanced UX & SEO Styles
   SlimKozijn 2026
   ========================================= */

/* Prevent horizontal overflow on mobile
   NOTE: Do NOT use 100vw — on Windows, vw includes scrollbar width. */
.product-detail-page {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.product-detail-page .container {
  overflow-x: hidden;
}

/* Product Page Layout */
.product-page {
  padding: var(--space-md) 0 var(--space-xl);
  overflow-x: hidden;
  width: 100%;
}

/* Prevent double container padding on product page root */
.product-detail-page > main.product-page {
  max-width: 100%;
  padding: 0;
}

/* Primary spacing for the actual product content wrapper */
.product-detail-page > main.product-page > .product-page {
  padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-2xl);
}

/* Breadcrumb Navigation */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.product-breadcrumb a:hover {
  color: var(--cta);
}

.product-breadcrumb__sep {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.product-breadcrumb__current {
  color: var(--text);
  font-weight: 500;
}

/* Product Grid Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Image Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height, 80px) + var(--safe-top, 0px) + var(--space-md));
}

.product-gallery__main {
  position: relative;
  background: white;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-sm);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  transition: transform var(--t-slow) var(--ease-out);
}

.product-gallery__main:hover img {
  transform: scale(1.02);
}

/* Zoom Button */
.product-gallery__zoom {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  z-index: var(--z-dropdown);
}

.product-gallery__zoom:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-card);
}

.product-gallery__zoom svg {
  width: 20px;
  height: 20px;
  color: var(--heading);
}

/* Badge on Gallery */
.product-gallery__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: var(--z-dropdown);
}

.product-gallery__badge--sale {
  background: var(--error-soft);
  color: white;
}

.product-gallery__badge--new {
  background: var(--cta);
  color: white;
}

.product-gallery__badge--popular {
  background: var(--accent);
  color: white;
}

/* Thumbnail Strip */
.product-gallery__thumbs {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding: var(--space-2xs) 0;
  scrollbar-width: thin;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.product-gallery__thumb:hover {
  transform: scale(1.05);
}

.product-gallery__thumb--active {
  border-color: var(--cta);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: white;
  display: block;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Category & SKU */
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--soft);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.product-sku {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono, monospace);
}

/* Product Title */
.product-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: var(--lh-tight);
  color: var(--heading);
  margin: 0;
  letter-spacing: var(--ls-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Short Description */
.product-description {
  font-size: var(--text-base);
  color: var(--text);
  line-height: var(--lh-body);
  max-width: 60ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

/* Price Section */
.product-price-section {
  background: var(--soft);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xs);
}

.product-price__vanaf {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: lowercase;
}

.product-price__current {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--heading);
  transition: color 0.2s ease;
}

.product-price__original {
  font-size: var(--text-base);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price__discount {
  background: var(--error-soft);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
}

.product-price__vat {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Dimension Input Styles */
.product-dimensions {
  padding: var(--space-md);
  background: var(--soft);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
}

.dimension-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.dimension-input-group input {
  font-family: var(--font), system-ui, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dimension-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 37, 99, 235), 0.1);
}

.dimension-input-group input:invalid {
  border-color: var(--error, #dc3545);
}

/* Configurator-like Steps (same look as configurator) */
.product-config-steps{
  margin-top: var(--space-xs);
}

/* Product page: steps are always open (no collapsible behavior) */
.product-config-steps .stepPanel,
.product-config-steps .step2Panel,
.product-config-steps .step3Panel{
  max-height: none;
  overflow: visible;
  transition: none;
}

.product-config-steps .stepArrow{ display: none; }

.stepRow--static{
  cursor: default;
}

.stepRow--static:hover{
  border-color: var(--stroke);
  box-shadow: var(--shadow-soft);
  transform: none;
}

.stepRow{
  width:100%;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: 8px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow: var(--shadow-soft);
  margin-top: var(--space-xs);
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

@media (max-width: 480px){
  .stepRow{ padding: 8px 10px; border-radius: 8px; }
}

@media (max-width: 480px){
  .stepRow{ padding: 7px 8px; border-radius: 6px; }
}

.stepRow:hover {
  border-color: var(--stroke-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.stepRow:active {
  transform: translateY(0);
}

.stepRow:focus-visible{
  box-shadow: var(--shadow-card), var(--focus-ring);
}

.stepLeft{
  display:flex;
  align-items:center;
  gap: var(--space-md);
}

.stepNum{
  width:28px;
  height:28px;
  border-radius: 999px;
  border: 1.5px solid var(--soft);
  display:grid;
  place-items:center;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--soft) 100%);
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

@media (max-width: 480px){
  .stepNum{ width: 24px; height: 24px; font-size: 11px; }
}

@media (max-width: 480px){
  .stepNum{ width: 22px; height: 22px; font-size: 10px; }
}

.stepText{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

@media (max-width: 480px){
  .stepText{ font-size: 13px; }
}

@media (max-width: 480px){
  .stepText{ font-size: 12px; }
}

.stepArrow{
  width:28px;
  height:28px;
  border-radius: 6px;
  background: var(--soft);
  border: 1px solid var(--stroke);
  display:grid;
  place-items:center;
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

@media (max-width: 480px){
  .stepArrow{ width: 24px; height: 24px; border-radius: 5px; }
}

@media (max-width: 480px){
  .stepArrow{ width: 22px; height: 22px; border-radius: 4px; }
}

.stepRow:hover .stepArrow {
  background: var(--accent);
  border-color: var(--accent);
}

.stepArrow svg{
  width:14px;
  height:14px;
  fill: var(--text-secondary);
  transition: fill 0.15s ease, transform 180ms ease;
}

@media (max-width: 480px){
  .stepArrow svg{ width: 12px; height: 12px; }
}

@media (max-width: 480px){
  .stepArrow svg{ width: 10px; height: 10px; }
}

.stepRow:hover .stepArrow svg {
  fill: #fff;
}

/* Touch devices: avoid sticky hover + jumpy transforms */
@media (hover: none){
  .stepRow:hover{
    border-color: var(--stroke);
    box-shadow: var(--shadow-soft);
    transform: none;
  }

  .stepRow:hover .stepArrow{
    background: var(--soft);
    border-color: var(--stroke);
  }

  .stepRow:hover .stepArrow svg{ fill: var(--text-secondary); }
}

/* Active (open) step row */
.stepRow--dark,
.stepRow--dark-2,
.stepRow--dark-3{
  background: var(--soft);
  border: 1px solid var(--stroke);
}

.stepRow--dark .stepNum,
.stepRow--dark-2 .stepNum,
.stepRow--dark-3 .stepNum{
  border-color: var(--stroke-strong);
  color: var(--heading);
  background: transparent;
}

.stepRow--dark .stepText,
.stepRow--dark-2 .stepText,
.stepRow--dark-3 .stepText{
  color: var(--heading);
}

.stepRow--dark .stepArrow,
.stepRow--dark-2 .stepArrow,
.stepRow--dark-3 .stepArrow{
  width:48px;
  height:28px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--stroke);
  display:grid;
  place-items:center;
}

.stepRow--dark .stepArrow svg,
.stepRow--dark-2 .stepArrow svg,
.stepRow--dark-3 .stepArrow svg{
  width:14px;
  height:14px;
  fill: var(--heading);
  opacity:0.90;
}

/* Product page: make step tabs match the primary CTA (In winkelwagen) */
.product-config-steps .stepRow--dark,
.product-config-steps .stepRow--dark-2,
.product-config-steps .stepRow--dark-3{
  background: var(--cta-bg);
  border-color: var(--cta-bg);
}

.product-config-steps .stepRow--dark .stepText,
.product-config-steps .stepRow--dark-2 .stepText,
.product-config-steps .stepRow--dark-3 .stepText{
  color: var(--cta-text);
}

.product-config-steps .stepRow--dark .stepNum,
.product-config-steps .stepRow--dark-2 .stepNum,
.product-config-steps .stepRow--dark-3 .stepNum{
  background: var(--cta-text);
  color: var(--cta-bg);
  border-color: color-mix(in oklab, var(--cta-text) 60%, transparent);
}

/* Sliding panels */
.stepPanel,
.step2Panel,
.step3Panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height 250ms ease;
  background: var(--card);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--stroke);
  border-top: 0;
  margin-top: 0;
  box-shadow: 0 8px 20px color-mix(in oklab, var(--heading) 4%, transparent);
}

.panelInner{
  padding: 8px 10px 10px;
}

@media (max-width: 480px){
  .panelInner{ padding: 8px 8px 10px; }
}

.panelTitle{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.panelSubtitle{
  margin: -2px 0 10px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-secondary);
  opacity: 0.9;
}

@media (max-width: 480px){
  .panelTitle{ font-size: 11px; margin-bottom: 6px; }
  .panelSubtitle{ font-size: 12px; margin: -2px 0 8px; }
}

/* Trust Badges */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.product-trust__item svg {
  width: 18px;
  height: 18px;
  color: var(--cta);
  flex-shrink: 0;
}

/* Actions */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-actions__primary {
  display: flex;
  gap: var(--space-sm);
}

.product-actions__primary .btn {
  flex: 1;
}

.product-actions__secondary {
  display: flex;
  gap: var(--space-sm);
}

.btn--compare,
.btn--quote {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  min-height: var(--touch-target-min, 44px);
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.btn--compare:hover,
.btn--quote:hover {
  background: var(--soft);
  border-color: var(--cta);
  color: var(--cta);
}

.btn--compare svg,
.btn--quote svg {
  width: 18px;
  height: 18px;
}

.btn--quote {
  border-color: var(--cta);
  background: color-mix(in srgb, var(--cta) 8%, var(--card));
}

.btn--quote:hover {
  background: var(--cta);
  color: var(--cta-text, #fff);
}

.btn--quote:hover svg {
  color: var(--cta-text, #fff);
}

/* =========================================
   QUICK SPECS - Highlight Cards
   Professional product highlight blocks
   ========================================= */

.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-spec {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--card) 0%, color-mix(in srgb, var(--soft) 40%, var(--card)) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quick-spec:hover {
  border-color: color-mix(in srgb, var(--cta) 30%, var(--stroke));
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.quick-spec__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cta) 10%, transparent) 0%, color-mix(in srgb, var(--cta) 5%, transparent) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quick-spec:hover .quick-spec__icon {
  background: color-mix(in srgb, var(--cta) 15%, transparent);
  transform: scale(1.05);
}

.quick-spec__icon svg {
  width: 22px;
  height: 22px;
  color: var(--cta);
}

.quick-spec__content {
  min-width: 0;
}

.quick-spec__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
}

.quick-spec__value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Delivery Info */
.product-delivery {
  background: linear-gradient(135deg, var(--cta), color-mix(in oklab, var(--cta) 80%, black));
  color: white;
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.product-delivery__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-delivery__icon svg {
  width: 20px;
  height: 20px;
}

.product-delivery__content h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin: 0 0 2px;
  color: white;
}

.product-delivery__content p {
  font-size: var(--text-xs);
  color: white;
  opacity: 0.9;
  margin: 0;
}

/* =========================================
   CONTENT TABS - Professional Tab Navigation
   ========================================= */

.product-tabs {
  margin-top: var(--space-2xl);
}

.product-tabs__nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--soft);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-tabs__nav::-webkit-scrollbar {
  display: none;
}

.product-tabs__btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius);
  min-height: 44px;
}

.product-tabs__btn:hover {
  color: var(--heading);
  background: color-mix(in srgb, var(--card) 50%, transparent);
}

.product-tabs__btn:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: -2px;
}

.product-tabs__btn--active {
  background: var(--card);
  color: var(--cta);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-tabs__btn--active:hover {
  background: var(--card);
}

/* Tab badge for notification counts */
.product-tabs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--cta);
  color: white;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

/* Mobile tabs - horizontal scroll with indicators */
@media (max-width: 640px) {
  .product-tabs__nav {
    padding: 3px;
    gap: 2px;
    margin: 0 calc(-1 * var(--space-md));
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    border-radius: 0;
  }
  
  .product-tabs__btn {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
  }
}

.product-tabs__btn--active::after {
  transform: scaleX(1);
}

.product-tabs__content {
  padding: var(--space-lg) 0;
  font-family: var(--font), system-ui, sans-serif;
}

.product-tabs__panel {
  display: none;
  animation: tabFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-tabs__panel--active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SPECIFICATIONS TABLE - Professional Design
   Inspired by Amazon/IKEA product specs
   ========================================= */

.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: var(--text-sm);
}

.specs-table tr {
  transition: background 0.2s ease;
}

.specs-table tr:nth-child(even) {
  background: color-mix(in srgb, var(--soft) 50%, transparent);
}

.specs-table tr:hover {
  background: color-mix(in srgb, var(--cta) 4%, transparent);
}

.specs-table tr:last-child td,
.specs-table tr:last-child th {
  border-bottom: none;
}

.specs-table th,
.specs-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--stroke) 50%, transparent);
  vertical-align: top;
}

.specs-table th {
  width: 40%;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.specs-table td {
  color: var(--heading);
  font-weight: 500;
}

/* Spec value with icon */
.specs-table td .spec-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.specs-table td .spec-icon svg {
  width: 18px;
  height: 18px;
  color: var(--cta);
  flex-shrink: 0;
}

/* Spec badge for special values */
.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--cta) 10%, transparent);
  color: var(--cta);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.spec-badge--success {
  background: color-mix(in srgb, var(--success-emphasis) 10%, transparent);
  color: var(--success-dark);
}

.spec-badge--warning {
  background: color-mix(in srgb, #f59e0b 10%, transparent);
  color: #d97706;
}

/* Mobile specifications table */
@media (max-width: 640px) {
  .specs-table {
    display: block;
    border: none;
    border-radius: 0;
  }
  
  .specs-table tbody {
    display: block;
  }
  
  .specs-table tr {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    margin-bottom: 10px;
  }
  
  .specs-table tr:nth-child(even) {
    background: var(--card);
  }
  
  .specs-table tr:hover {
    background: var(--card);
    border-color: var(--cta);
  }
  
  .specs-table th,
  .specs-table td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
  }
  
  .specs-table th {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  
  .specs-table td {
    font-size: var(--text-sm);
  }
}

/* =========================================
   FULL SPECS GRID - Card-based Layout
   ========================================= */

.specs-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.spec-card {
  background: linear-gradient(135deg, var(--card) 0%, color-mix(in srgb, var(--soft) 30%, var(--card)) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta) 0%, var(--link) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.spec-card:hover {
  border-color: color-mix(in srgb, var(--cta) 30%, var(--stroke));
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-card__icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--cta) 10%, transparent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.spec-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--cta);
}

.spec-card__label {
  font-family: var(--font), system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.spec-card__value {
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}

.spec-card__subtext {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .specs-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .spec-card {
    padding: var(--space-md);
  }
  
  .spec-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--space-sm);
  }
  
  .spec-card__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .spec-card__label {
    font-size: 9px;
  }
  
  .spec-card__value {
    font-size: var(--text-sm);
  }
}

/* =========================================
   FAQ SECTION - Professional Accordion
   ========================================= */

.product-faq {
  margin-top: var(--space-xl);
}

.product-faq__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: var(--card);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--cta) 30%, var(--stroke));
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-item--open {
  border-color: var(--cta);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--cta) 10%, transparent);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  gap: var(--space-md);
}

.faq-item__question:hover {
  background: color-mix(in srgb, var(--soft) 50%, transparent);
}

.faq-item--open .faq-item__question {
  background: color-mix(in srgb, var(--cta) 5%, transparent);
  color: var(--cta);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border-radius: 50%;
  color: var(--text-muted);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__icon svg {
  width: 18px;
  height: 18px;
}

.faq-item:hover .faq-item__icon {
  background: color-mix(in srgb, var(--cta) 10%, transparent);
  color: var(--cta);
}

.faq-item--open .faq-item__icon {
  background: var(--cta);
  color: white;
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.7;
}

.faq-item__answer-content p {
  margin: 0 0 var(--space-sm);
}

.faq-item__answer-content p:last-child {
  margin-bottom: 0;
}

.faq-item__answer-content ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.faq-item__answer-content li {
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .faq-item__question {
    padding: var(--space-md);
    font-size: var(--text-sm);
  }
  
  .faq-item__answer-content {
    padding: 0 var(--space-md) var(--space-md);
  }
  
  .faq-item__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  
  .faq-item__icon svg {
    width: 14px;
    height: 14px;
  }
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-content {
  padding: 0 var(--space-md) var(--space-md);
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}

/* Related Products */
.related-products {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--stroke);
}

.related-products__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--heading);
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.related-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.related-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: white;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  transition: transform var(--t-med);
}

.related-card:hover .related-card__image img {
  transform: scale(1.05);
}

.related-card__content {
  padding: var(--space-sm);
}

.related-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 var(--space-2xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--cta);
}

/* Lightbox */
.product-lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}

.product-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}

.product-lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.product-lightbox__close svg {
  width: 24px;
  height: 24px;
  color: white;
}

.product-lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* CTA Bar - Mobile Fixed */
.product-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--stroke);
  padding: var(--space-md) var(--space-lg);
  padding-bottom: calc(var(--space-md) + var(--safe-bottom, 0px));
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .product-cta-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  
  .product-cta-bar__price {
    flex: 1;
  }
  
  .product-cta-bar__price-value {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--heading);
  }
  
  .product-cta-bar__price-vat {
    font-size: var(--text-xs);
    color: var(--text-muted);
  }
  
  .product-cta-bar .btn {
    flex-shrink: 0;
  }
  
  /* Add bottom padding to main content to prevent overlap */
  .product-page {
    padding-bottom: calc(100px + var(--safe-bottom, 0px));
  }
}

/* Success Toast */
.product-toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--heading);
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: var(--z-nav-above);
  transition: transform var(--t-med) var(--ease-out);
  box-shadow: var(--shadow-float);
}

.product-toast--visible {
  transform: translateX(-50%) translateY(0);
}

.product-toast svg {
  width: 20px;
  height: 20px;
  color: var(--cta);
}

@media (max-width: 768px) {
  .product-toast {
    bottom: calc(100px + var(--safe-bottom, 0px));
  }
}

/* Schema.org Structured Data Visual */
.product-schema-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: #0369a1;
}

/* Rating Stars */
.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.product-rating__stars {
  display: flex;
  gap: 2px;
}

.product-rating__star {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.product-rating__star--empty {
  color: var(--stroke);
}

.product-rating__count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Prose styling inside tab panels */
.product-tabs__content h2,
.product-tabs__content h3,
.product-tabs__content h4 {
  margin: 0 0 var(--space-sm);
  color: var(--heading);
  line-height: var(--lh-snug);
}

.product-tabs__content h2 { font-size: var(--text-xl); }
.product-tabs__content h3 { font-size: var(--text-lg); }
.product-tabs__content h4 { font-size: var(--text-base); }

.product-tabs__content p {
  margin: 0 0 var(--space-md);
  color: var(--text);
  line-height: var(--lh-body);
}

.product-tabs__content ul,
.product-tabs__content ol {
  margin: 0 0 var(--space-md);
  padding-left: 1.2rem;
  color: var(--text);
  line-height: var(--lh-body);
}

.product-tabs__content ul { list-style: disc; }
.product-tabs__content ol { list-style: decimal; }

.product-tabs__content li {
  margin-bottom: var(--space-xs);
}

/* Stock Badge */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
}

.stock-badge--in-stock {
  color: var(--success);
}

.stock-badge--low-stock {
  color: var(--warning);
}

.stock-badge--out-of-stock {
  color: var(--error);
}

.stock-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.stock-badge--in-stock .stock-badge__dot {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 20%, transparent);
}

.stock-badge--low-stock .stock-badge__dot {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--warning) 20%, transparent);
  animation: stockPulse 2s infinite;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Color Options */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding: 6px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.color-swatch__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.2;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--stroke);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
}

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

.color-option--active {
  border-color: var(--cta);
  box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--cta);
}

.color-option--ral-9005 { background: #0a0a0a; }
.color-option--ral-7016 { background: #373f43; }
.color-option--ral-9016 { background: #f7f7f7; }
.color-option--ral-custom { background: conic-gradient(from 0deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00); }

/* =========================================
   DESKTOP ENHANCEMENTS - Optimized UX Layout
   ========================================= */

/* Tablet/Medium screens (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .product-page {
    padding: var(--space-lg) 0 var(--space-2xl);
  }
  
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
  
  .product-info {
    gap: var(--space-md);
  }
  
  .product-title {
    font-size: var(--text-2xl);
    margin-bottom: 0;
  }
  
  .product-price-section {
    padding: var(--space-md);
  }
  
  .product-config-steps {
    margin-top: var(--space-xs);
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .product-page {
    padding: var(--space-lg) 0 var(--space-2xl);
  }
  
  .product-layout {
    grid-template-columns: minmax(400px, 560px) minmax(380px, 480px);
    gap: var(--space-2xl);
    align-items: start;
    justify-content: center;
  }
  
  .product-gallery {
    position: sticky;
    top: calc(var(--header-height, 80px) + var(--space-md));
  }
  
  .product-gallery__main {
    aspect-ratio: 1 / 1;
    margin-bottom: var(--space-sm);
  }
  
  .product-gallery__thumb {
    width: 72px;
    height: 72px;
  }
  
  /* Product Info - Tighter spacing for desktop */
  .product-info {
    gap: var(--space-md);
  }
  
  .product-meta {
    margin-bottom: 0;
  }
  
  .product-title {
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    margin-bottom: 0;
  }
  
  .product-rating {
    margin-top: var(--space-2xs);
  }
  
  .product-description {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-top: 0;
    max-width: 100%;
  }
  
  /* Price Section - Compact */
  .product-price-section {
    padding: var(--space-md) var(--space-lg);
    margin-top: 0;
  }
  
  .product-price {
    margin-bottom: var(--space-2xs);
  }
  
  .product-price__current {
    font-size: var(--text-2xl);
  }
  
  /* Trust Badges - Inline */
  .product-trust {
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    flex-wrap: nowrap;
  }
  
  .product-trust__item {
    font-size: var(--text-sm);
  }
  
  .product-trust__item svg {
    width: 18px;
    height: 18px;
  }
  
  /* Quick Specs - Compact grid */
  .product-quick-specs {
    gap: var(--space-sm);
  }
  
  .quick-spec {
    padding: var(--space-sm) var(--space-md);
  }
  
  .quick-spec__icon {
    width: 36px;
    height: 36px;
  }
  
  .quick-spec__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .quick-spec__value {
    font-size: var(--text-sm);
  }
  
  /* Delivery Banner - Compact */
  .product-delivery {
    padding: var(--space-md);
  }
  
  .product-delivery__icon {
    width: 44px;
    height: 44px;
  }
  
  .product-delivery__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .product-delivery__content h4 {
    font-size: var(--text-base);
  }
  
  .product-delivery__content p {
    font-size: var(--text-sm);
  }
  
  /* Config Steps - Tighter */
  .product-config-steps {
    margin-top: var(--space-sm);
  }
  
  .stepRow {
    margin-top: var(--space-xs);
    padding: 8px 12px;
  }
  
  .stepNum {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .stepText {
    font-size: 14px;
  }
  
  .panelInner {
    padding: var(--space-sm) var(--space-md);
  }
  
  /* Actions - Compact */
  .product-actions {
    gap: var(--space-sm);
  }
  
  .product-actions__primary .btn,
  .product-actions__secondary .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
  }
  
  /* Tabs Section */
  .product-tabs {
    margin-top: var(--space-2xl);
  }
  
  .product-tabs__btn {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
  }
  
  .product-tabs__content {
    padding: var(--space-lg) 0;
  }
  
  /* Specs Grid */
  .specs-grid-full {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  
  .spec-card {
    padding: var(--space-md);
  }
  
  .spec-card__value {
    font-size: var(--text-base);
  }
  
  /* FAQ */
  .faq-item__question {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
  }
  
  .faq-item__answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: var(--text-sm);
  }
  
  /* Related Products */
  .related-products {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
  }
  
  .related-products__title {
    font-size: var(--text-xl);
  }
  
  .related-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .related-card__content {
    padding: var(--space-md);
  }
  
  .related-card__title {
    font-size: var(--text-base);
  }
}

/* Extra Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .product-layout {
    grid-template-columns: minmax(500px, 620px) minmax(440px, 540px);
    gap: var(--space-3xl);
  }
  
  .product-gallery__main {
    aspect-ratio: 1 / 1;
  }
  
  .product-gallery__thumb {
    width: 84px;
    height: 84px;
  }
  
  .product-title {
    font-size: var(--text-2xl);
  }
  
  .product-price__current {
    font-size: var(--text-2xl);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .product-quick-specs {
    grid-template-columns: 1fr;
  }
  
  .product-tabs__nav {
    gap: 0;
  }
  
  .product-tabs__btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }

  /* Mobile Specifications Optimization */
  .specs-table th,
  .specs-table td {
    padding: var(--space-sm) var(--space-xs);
    font-size: var(--text-xs);
  }

  .specs-table th {
    width: 50%;
  }

  .product-quick-specs {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .quick-spec {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
  }

  .quick-spec__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .quick-spec__label {
    font-size: var(--text-xs);
  }

  .quick-spec__value {
    font-size: var(--text-sm);
    font-weight: 600;
  }

  .specs-grid-full {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .spec-card {
    padding: var(--space-sm);
  }

  /* Mobile Image Gallery - Remove Sticky */
  .product-gallery {
    position: static;
  }

  .product-gallery__main {
    position: relative;
    height: auto;
  }

  /* Mobile Comparison */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    font-size: var(--text-sm);
    min-width: 300px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
  }

  /* Mobile Compare Button */
  .btn--compare {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    min-height: 44px;
  }
}

/* =========================================
   COMPACT MOBILE STYLES (matching webshop)
   ========================================= */
@media (max-width: 640px) {
  .product-detail-page > main.product-page > .product-page {
    padding: calc(var(--header-height, 60px) + var(--safe-top, 0px) + var(--space-md)) 0 var(--space-2xl);
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Ensure content doesn't overflow */
  .product-layout,
  .product-info,
  .product-gallery,
  .product-tabs,
  .related-products {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .product-breadcrumb {
    font-size: var(--text-xs);
    gap: 4px;
    margin-bottom: var(--space-sm);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  
  .product-breadcrumb__sep {
    width: 12px;
    height: 12px;
  }
  
  .product-layout {
    gap: var(--space-md);
  }
  
  .product-title {
    font-size: var(--text-xl);
    line-height: var(--lh-snug);
    margin-bottom: var(--space-xs);
  }
  
  .product-description {
    font-size: var(--text-sm);
    line-height: var(--lh-body);
  }
  
  .product-info {
    gap: var(--space-sm);
  }
  
  .product-price__current {
    font-size: var(--text-xl);
  }
  
  .product-price__vat {
    font-size: var(--text-xs);
  }
  
  .product-gallery__main {
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    margin-bottom: var(--space-xs);
  }
  
  .product-gallery__thumbs {
    gap: var(--space-xs);
  }
  
  .product-gallery__thumb {
    width: 56px;
    height: 56px;
  }
  
  .product-gallery__zoom {
    width: 36px;
    height: 36px;
    top: var(--space-xs);
    right: var(--space-xs);
  }
  
  .product-price-section {
    padding: var(--space-sm);
    border-radius: var(--radius);
    gap: var(--space-sm);
  }
  
  .product-actions {
    gap: var(--space-xs);
  }
  
  .product-actions .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    min-height: 44px;
  }
  
  /* Hide secondary content on small mobile */
  .product-tabs {
    margin-top: var(--space-md);
  }
  
  .product-tabs__btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }
  
  .product-tabs__content {
    padding: var(--space-md) 0;
  }
  
  .related-products {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }
  
  .related-products__title {
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
  }
  
  .related-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }
  
  .related-card {
    border-radius: var(--radius-sm);
  }
  
  .related-card__content {
    padding: var(--space-xs);
  }
  
  .related-card__title {
    font-size: var(--text-xs);
  }
  
  .related-card__price {
    font-size: var(--text-sm);
  }
  
  /* CTA bar compact */
  .product-cta-bar {
    padding: var(--space-sm) var(--space-md);
  }
  
  .product-cta-bar__price-value {
    font-size: var(--text-base);
  }
  
  .product-cta-bar .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: var(--text-lg);
  }
  
  .product-price__current {
    font-size: var(--text-lg);
  }
  
  .product-actions .btn {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
    min-height: 40px;
  }
}

/* =========================================
   COMPARE BUTTON ACTIVE STATE
   ========================================= */

.btn--compare.btn--compare-active {
  background: var(--cta);
  border-color: var(--cta);
  color: white;
}

.btn--compare.btn--compare-active:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

/* =========================================
   FLOATING COMPARE BAR
   ========================================= */

.compare-floating-bar {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--stroke);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: var(--space-md) var(--space-lg);
  z-index: var(--z-header);
  transition: bottom var(--t-normal) var(--ease-out);
}

.compare-floating-bar--visible {
  bottom: 0;
}

.compare-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.compare-bar__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--heading);
  font-weight: 600;
}

.compare-bar__info svg {
  color: var(--cta);
}

.compare-bar__count {
  background: var(--cta);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
}

.compare-bar__actions {
  display: flex;
  gap: var(--space-sm);
}

.compare-bar__btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  border: none;
}

.compare-bar__btn--primary {
  background: var(--cta);
  color: white;
}

.compare-bar__btn--primary:hover {
  background: var(--cta-hover);
}

.compare-bar__btn--clear {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--stroke);
}

.compare-bar__btn--clear:hover {
  background: var(--soft);
  color: var(--text);
}

.compare-bar__products {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.compare-bar__product {
  position: relative;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--heading) 8%, transparent);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out), color var(--t-med) var(--ease-out), background-color var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.compare-bar__product:hover {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--cta) 20%, transparent);
  transform: scale(1.05);
}

.compare-bar__product img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: white;
  transition: transform var(--t-med) var(--ease-out);
}

.compare-bar__remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--error);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
  z-index: var(--z-base);
}

.compare-bar__product:hover .compare-bar__remove {
  opacity: 1;
}

/* Mobile adjustments for compare bar */
@media (max-width: 640px) {
  .compare-floating-bar {
    padding: var(--space-sm) var(--space-md);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 8px));
  }
  
  .compare-bar__content {
    gap: var(--space-xs);
  }
  
  .compare-bar__info {
    font-size: var(--text-sm);
  }
  
  .compare-bar__text {
    display: none;
  }
  
  .compare-bar__btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
  }
  
  .compare-bar__products {
    gap: var(--space-xs);
    margin-top: var(--space-xs);
  }
  
  .compare-bar__product {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    max-height: 48px;
    flex: 0 0 48px;
  }
  
  .compare-bar__product img {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
  
  .compare-bar__remove {
    width: 16px;
    height: 16px;
    font-size: 10px;
    opacity: 1;
    top: 2px;
    right: 2px;
  }
}

/* Ensure compare bar doesn't overlap mobile CTA */
@media (max-width: 768px) {
  .compare-floating-bar {
    bottom: -100%;
  }
  
  .compare-floating-bar--visible {
    bottom: 70px; /* Above mobile CTA bar */
  }
}

/* =========================================
   QUOTE REQUEST MODAL
   ========================================= */

.quote-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: var(--z-nav-above);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-lg);
  padding-top: max(var(--space-lg), env(safe-area-inset-top, 0px));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.quote-modal--open {
  opacity: 1;
  visibility: visible;
}

.quote-modal__overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: color-mix(in oklab, var(--heading) 75%, transparent);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.quote-modal__container {
  position: relative;
  width: 100%;
  max-width: 640px;
  /* Force an opaque surface so the form is never see-through */
  background: var(--bg, var(--card));
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-20px);
  transition: transform 0.3s var(--ease-out);
  margin: auto;
  z-index: var(--z-base);
}

.quote-modal--open .quote-modal__container {
  transform: translateY(0);
}

.quote-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  z-index: var(--z-base);
}

.quote-modal__close:hover {
  background: var(--stroke);
  color: var(--heading);
}

.quote-modal__close svg {
  width: 20px;
  height: 20px;
}

.quote-modal__content {
  padding: clamp(var(--space-lg), 4vw, var(--space-xl));
}

.quote-modal__header {
  margin-bottom: var(--space-lg);
  padding-right: 48px;
}

.quote-modal__title {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--heading);
}

.quote-modal__lead {
  margin: var(--space-xs) 0 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.quote-modal__summary {
  background: var(--soft);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.quote-modal__summary-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: var(--space-sm);
}

.quote-modal__summary-product {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.quote-modal__summary-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  flex-shrink: 0;
}

.quote-modal__summary-details {
  flex: 1;
  min-width: 0;
}

.quote-modal__summary-details strong {
  display: block;
  font-size: var(--text-base);
  color: var(--heading);
  margin-bottom: var(--space-xs);
}

.quote-modal__summary-pre {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  line-height: 1.5;
}

.quote-modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .quote-modal__grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-modal__grid .field--full {
    grid-column: 1 / -1;
  }
}

.quote-modal__grid .form-group {
  margin-bottom: 0;
}

.quote-modal__grid .form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
}

.quote-modal__grid .form-input,
.quote-modal__grid .form-select,
.quote-modal__grid .form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-modal__grid .form-input:focus,
.quote-modal__grid .form-select:focus,
.quote-modal__grid .form-textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 20%, transparent);
}

.quote-modal__grid .field--check {
  margin-top: var(--space-xs);
}

.quote-modal__checkbox {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: var(--text-xs);
  color: var(--text-muted);
  cursor: pointer;
}

.quote-modal__checkbox input {
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-modal__actions {
  margin-top: var(--space-lg);
}

.quote-modal__actions .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.quote-modal__actions .btn svg {
  flex-shrink: 0;
}

.quote-modal__status {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  text-align: center;
  min-height: 1.5em;
}

.quote-modal__status:empty {
  display: none;
}

.quote-modal__status--success {
  background: color-mix(in srgb, var(--success) 15%, var(--card));
  color: var(--success);
}

.quote-modal__status--error {
  background: color-mix(in srgb, var(--error) 15%, var(--card));
  color: var(--error);
}

/* Mobile optimization for quote modal */
@media (max-width: 640px) {
  .quote-modal {
    padding: var(--space-sm);
    align-items: flex-start;
  }
  
  .quote-modal__container {
    max-height: none;
    border-radius: var(--radius);
  }
  
  .quote-modal__content {
    padding: var(--space-md);
  }
  
  .quote-modal__summary-product {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .quote-modal__summary-img {
    width: 100px;
    height: 100px;
  }
}

/* =========================================
   2026 ENHANCED PRODUCT PAGE UX
   Comprehensive Desktop & Mobile Improvements
   ========================================= */

/* ===== IMPROVED PRODUCT PAGE LAYOUT ===== */
.product-page {
  padding: var(--space-lg) 0 var(--space-2xl);
  overflow-x: hidden;
  width: 100%;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 1200px) {
  .product-layout {
    grid-template-columns: minmax(450px, 580px) minmax(400px, 500px);
    gap: var(--space-3xl);
    justify-content: center;
  }
}

@media (min-width: 1400px) {
  .product-layout {
    grid-template-columns: minmax(500px, 640px) minmax(440px, 560px);
  }
}

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ===== ENHANCED PRODUCT GALLERY ===== */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height, 124px) + var(--space-md));
}

@media (max-width: 1024px) {
  .product-gallery {
    position: static;
  }
}

.product-gallery__main {
  position: relative;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--heading) 6%, transparent);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: var(--space-lg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .product-gallery__main:hover img {
    transform: scale(1.03);
  }
}

/* Enhanced zoom button */
.product-gallery__zoom {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: var(--z-dropdown);
}

.product-gallery__zoom:hover {
  background: var(--cta);
  transform: scale(1.05);
}

.product-gallery__zoom:hover svg {
  color: #fff;
}

.product-gallery__zoom svg {
  width: 20px;
  height: 20px;
  color: var(--heading);
  transition: color 0.2s ease;
}

/* Gallery badges */
.product-gallery__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: var(--z-dropdown);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-gallery__badge--sale {
  background: linear-gradient(135deg, var(--error-soft), var(--error));
  color: #fff;
}

.product-gallery__badge--new {
  background: linear-gradient(135deg, var(--success-emphasis), var(--success-dark));
  color: #fff;
}

.product-gallery__badge--popular {
  background: linear-gradient(135deg, var(--cta), color-mix(in srgb, var(--cta) 80%, var(--heading)));
  color: #fff;
}

/* Improved thumbnail strip */
.product-gallery__thumbs {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding: var(--space-2xs) 0;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.product-gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-gallery__thumbs::-webkit-scrollbar-track {
  background: var(--soft);
  border-radius: 2px;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
  background: var(--stroke-strong);
  border-radius: 2px;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  scroll-snap-align: start;
}

.product-gallery__thumb:hover {
  border-color: var(--stroke-strong);
  transform: scale(1.03);
}

.product-gallery__thumb--active {
  border-color: var(--cta);
  box-shadow: 0 0 0 1px var(--cta);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ===== ENHANCED PRODUCT INFO SECTION ===== */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Product meta */
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  background: color-mix(in srgb, var(--cta) 10%, var(--soft));
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-category:hover {
  background: color-mix(in srgb, var(--cta) 15%, var(--soft));
}

.product-sku {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono, monospace);
}

/* Product title */
.product-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Product rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-rating__stars {
  display: flex;
  gap: 2px;
}

.product-rating__star {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.product-rating__star--empty {
  color: var(--stroke);
}

.product-rating__count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.product-rating__count a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Product description */
.product-description {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.7;
  max-width: 60ch;
}

/* ===== ENHANCED PRICE SECTION ===== */
.product-price-section {
  background: linear-gradient(135deg, var(--soft), color-mix(in srgb, var(--cta) 5%, var(--soft)));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.product-price-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--cta) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  position: relative;
}

.product-price__vanaf {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.product-price__current {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}

.product-price__original {
  font-size: var(--text-base);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price__discount {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--error-soft), var(--error));
  color: #fff;
  border-radius: 4px;
  font-size: var(--text-xs);
  font-weight: 700;
}

.product-price__vat {
  width: 100%;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2xs);
}

/* ===== ENHANCED TRUST BADGES ===== */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

.product-trust__item svg {
  width: 20px;
  height: 20px;
  color: var(--cta);
  flex-shrink: 0;
}

/* ===== ENHANCED QUICK SPECS ===== */
.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.quick-spec {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-spec:hover {
  border-color: var(--cta);
  transform: translateY(-1px);
}

.quick-spec__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cta) 10%, var(--soft)), color-mix(in srgb, var(--link) 8%, var(--soft)));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-spec__icon svg {
  width: 18px;
  height: 18px;
  color: var(--cta);
}

.quick-spec__content {
  min-width: 0;
}

.quick-spec__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
}

.quick-spec__value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--heading);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== ENHANCED DELIVERY BANNER ===== */
.product-delivery {
  background: linear-gradient(135deg, var(--cta), color-mix(in srgb, var(--cta) 75%, var(--heading)));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--cta) 30%, transparent);
}

.product-delivery__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-delivery__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.product-delivery__content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}

.product-delivery__content p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ===== ENHANCED ACTION BUTTONS ===== */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-actions__primary {
  display: flex;
  gap: var(--space-sm);
}

.product-actions__primary .btn {
  flex: 1;
  min-height: 52px;
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--radius);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-actions__primary .btn--cta {
  background: var(--cta);
  color: var(--cta-text, #fff);
  border: none;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--cta) 30%, transparent);
}

.product-actions__primary .btn--cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--cta) 40%, transparent);
}

.product-actions__secondary {
  display: flex;
  gap: var(--space-sm);
}

.btn--compare,
.btn--quote {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  min-height: 44px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--compare:hover,
.btn--quote:hover {
  background: var(--soft);
  border-color: var(--cta);
  color: var(--cta);
}

.btn--compare svg,
.btn--quote svg {
  width: 18px;
  height: 18px;
}

.btn--quote {
  background: color-mix(in srgb, var(--cta) 8%, var(--card));
  border-color: color-mix(in srgb, var(--cta) 30%, var(--stroke));
}

.btn--quote:hover {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}

/* ===== ENHANCED MOBILE CTA BAR ===== */
.product-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--stroke);
  padding: var(--space-md);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .product-cta-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  
  .product-cta-bar__price {
    flex: 1;
    min-width: 0;
  }
  
  .product-cta-bar__price-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
  }
  
  .product-cta-bar__price-value {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
  }
  
  .product-cta-bar__price-vat {
    font-size: var(--text-xs);
    color: var(--text-muted);
  }
  
  .product-cta-bar .btn {
    flex-shrink: 0;
    min-height: 48px;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius);
  }
  
  /* Add bottom padding to page content */
  .product-page {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }
}

/* ===== ENHANCED PRODUCT TABS ===== */
.product-tabs {
  margin-top: var(--space-2xl);
}

.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--stroke);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.product-tabs__nav::-webkit-scrollbar {
  display: none;
}

.product-tabs__btn {
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  scroll-snap-align: start;
}

.product-tabs__btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cta);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tabs__btn:hover {
  color: var(--heading);
}

.product-tabs__btn--active {
  color: var(--cta);
}

.product-tabs__btn--active::after {
  transform: scaleX(1);
}

.product-tabs__content {
  padding: var(--space-lg) 0;
}

.product-tabs__panel {
  display: none;
  animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tabs__panel--active {
  display: block;
}

@keyframes tabFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ===== ENHANCED SPECIFICATIONS TABLE ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--stroke);
  transition: background 0.15s ease;
}

.specs-table tr:hover {
  background: var(--soft);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table th,
.specs-table td {
  padding: var(--space-md);
  text-align: left;
  font-size: var(--text-sm);
}

.specs-table th {
  width: 40%;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--soft);
}

.specs-table td {
  color: var(--text);
  font-weight: 500;
}

/* ===== ENHANCED RELATED PRODUCTS ===== */
.related-products {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--stroke);
}

.related-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.related-products__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.related-products__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cta);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap 0.2s ease;
}

.related-products__link:hover {
  gap: var(--space-sm);
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.related-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--heading) 10%, transparent);
  }
  
  .related-card:hover .related-card__image img {
    transform: scale(1.05);
  }
}

.related-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card__content {
  padding: var(--space-md);
}

.related-card__category {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cta);
  margin-bottom: 4px;
}

.related-card__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__price {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--cta);
}

/* ===== MOBILE PRODUCT PAGE OPTIMIZATIONS ===== */
@media (max-width: 640px) {
  .product-page {
    padding: var(--space-md) 0;
  }
  
  .product-breadcrumb {
    font-size: var(--text-xs);
    gap: 4px;
    margin-bottom: var(--space-sm);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-xs);
  }
  
  .product-breadcrumb__sep {
    width: 12px;
    height: 12px;
  }
  
  .product-layout {
    gap: var(--space-md);
  }
  
  .product-gallery__main {
    border-radius: var(--radius);
    aspect-ratio: 1;
    margin-bottom: var(--space-xs);
  }
  
  .product-gallery__main img {
    padding: var(--space-md);
  }
  
  .product-gallery__thumbs {
    gap: 6px;
    padding: 4px 0;
  }
  
  .product-gallery__thumb {
    width: 56px;
    height: 56px;
  }
  
  .product-gallery__zoom {
    width: 36px;
    height: 36px;
    top: var(--space-sm);
    right: var(--space-sm);
  }
  
  .product-gallery__zoom svg {
    width: 16px;
    height: 16px;
  }
  
  .product-gallery__badge {
    padding: 4px 8px;
    font-size: 9px;
    top: var(--space-sm);
    left: var(--space-sm);
  }
  
  .product-info {
    gap: var(--space-sm);
  }
  
  .product-category {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .product-title {
    font-size: var(--text-xl);
    line-height: 1.25;
  }
  
  .product-description {
    font-size: var(--text-sm);
    line-height: 1.6;
  }
  
  .product-price-section {
    padding: var(--space-md);
    border-radius: var(--radius);
  }
  
  .product-price__current {
    font-size: var(--text-xl);
  }
  
  .product-trust {
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    flex-wrap: wrap;
  }
  
  .product-trust__item {
    font-size: var(--text-xs);
  }
  
  .product-trust__item svg {
    width: 16px;
    height: 16px;
  }
  
  .product-quick-specs {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  
  .quick-spec {
    padding: var(--space-sm);
  }
  
  .quick-spec__icon {
    width: 32px;
    height: 32px;
  }
  
  .quick-spec__icon svg {
    width: 16px;
    height: 16px;
  }
  
  .product-delivery {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
  }
  
  .product-delivery__icon {
    width: 40px;
    height: 40px;
  }
  
  .product-delivery__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .product-delivery__content h4 {
    font-size: var(--text-sm);
  }
  
  .product-delivery__content p {
    font-size: var(--text-xs);
  }
  
  .product-actions__primary .btn {
    min-height: 48px;
    font-size: var(--text-sm);
  }
  
  .btn--compare,
  .btn--quote {
    min-height: 40px;
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
  }
  
  .product-tabs {
    margin-top: var(--space-lg);
  }
  
  .product-tabs__nav {
    gap: 0;
  }
  
  .product-tabs__btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }
  
  .product-tabs__content {
    padding: var(--space-md) 0;
  }
  
  .specs-table th,
  .specs-table td {
    padding: var(--space-sm);
    font-size: var(--text-xs);
  }
  
  .related-products {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }
  
  .related-products__title {
    font-size: var(--text-base);
  }
  
  .related-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .related-card {
    border-radius: var(--radius);
  }
  
  .related-card__content {
    padding: var(--space-sm);
  }
  
  .related-card__title {
    font-size: var(--text-xs);
  }
  
  .related-card__price {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: var(--text-lg);
  }
  
  .product-price__current {
    font-size: var(--text-lg);
  }
  
  .product-actions__primary .btn {
    min-height: 44px;
    font-size: var(--text-xs);
  }
  
  .btn--compare,
  .btn--quote {
    min-height: 38px;
  }
}

/* ===== ENHANCED LIGHTBOX ===== */
.product-lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: var(--z-base);
}

.product-lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.product-lightbox__close svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.product-lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lightboxZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .product-gallery__main img,
  .product-tabs__panel,
  .related-card,
  .product-lightbox__image {
    animation: none;
    transition: none;
  }
}

.product-tabs__btn:focus-visible,
.product-gallery__thumb:focus-visible,
.product-gallery__zoom:focus-visible,
.btn--compare:focus-visible,
.btn--quote:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

/* ===== INSPIRATION GALLERY - 2026 Premium ===== */
.inspiration-gallery {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--soft) 0%, transparent 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.inspiration-gallery__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.inspiration-gallery__title-group {
  flex: 1;
}

.inspiration-gallery__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  background: linear-gradient(135deg, var(--cta) 0%, var(--accent) 100%);
  color: white;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.inspiration-gallery__title {
  font-family: var(--font), system-ui, sans-serif;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.2;
}

.inspiration-gallery__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  max-width: 400px;
}

.inspiration-gallery__nav {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.inspiration-gallery__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--stroke);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--shadow-soft);
}

.inspiration-gallery__btn:hover:not(:disabled) {
  border-color: var(--cta);
  background: var(--cta);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-card);
}

.inspiration-gallery__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.inspiration-gallery__btn svg {
  width: 24px;
  height: 24px;
}

.inspiration-gallery__carousel {
  overflow: hidden;
  padding: 0 var(--space-lg);
}

.inspiration-gallery__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inspiration-gallery__slide {
  flex-shrink: 0;
  width: calc(100% - var(--space-md));
}

@media (min-width: 768px) {
  .inspiration-gallery__slide {
    width: calc(50% - var(--space-md));
  }
}

@media (min-width: 1200px) {
  .inspiration-gallery__slide {
    width: calc(33.333% - var(--space-md));
  }
}

.inspiration-gallery__image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.inspiration-gallery__image-wrapper:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-elevated);
}

.inspiration-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.inspiration-gallery__image-wrapper:hover .inspiration-gallery__img {
  transform: scale(1.05);
}

.inspiration-gallery__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-fast);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-md);
}

.inspiration-gallery__image-wrapper:hover .inspiration-gallery__overlay {
  opacity: 1;
}

.inspiration-gallery__zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.inspiration-gallery__zoom-btn:hover {
  transform: scale(1.1);
  background: white;
  box-shadow: var(--shadow-card);
}

.inspiration-gallery__zoom-btn svg {
  width: 20px;
  height: 20px;
  color: var(--heading);
}

.inspiration-gallery__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding: 0 var(--space-lg);
}

.inspiration-gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--stroke);
  cursor: pointer;
  padding: 0;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.inspiration-gallery__dot:hover {
  background: var(--text-muted);
  transform: scale(1.2);
}

.inspiration-gallery__dot--active {
  background: var(--cta);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Mobile optimizations for inspiration gallery */
@media (max-width: 768px) {
  .inspiration-gallery {
    margin-top: var(--space-2xl);
    padding: var(--space-xl) 0;
    border-radius: 0;
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }

  .inspiration-gallery__header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--space-md);
  }

  .inspiration-gallery__title {
    font-size: var(--text-xl);
  }

  .inspiration-gallery__nav {
    display: none;
  }

  .inspiration-gallery__carousel {
    padding: 0 var(--space-md);
  }

  .inspiration-gallery__slide {
    width: calc(85% - var(--space-sm));
    scroll-snap-align: start;
  }

  .inspiration-gallery__track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .inspiration-gallery__track::-webkit-scrollbar {
    display: none;
  }

  .inspiration-gallery__dots {
    margin-top: var(--space-md);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .inspiration-gallery__track,
  .inspiration-gallery__image-wrapper,
  .inspiration-gallery__img,
  .inspiration-gallery__overlay {
    transition: none;
  }
}
