/** Shopify CDN: Minification failed

Line 127:38 Expected ":"
Line 138:38 Expected ":"

**/
/* Enhanced Product Price Styling - Shopify Best Practices */

.price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Main price styling */
.price__regular {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

/* Tax notice styling */
.price__tax-notice {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
  margin-left: 0.5rem;
}

/* Unit price styling */
.unit-price {
  font-size: 0.437rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.125rem;
}

/* Shipping policy styling */
.shipping-policy {
  background-color: #e8f5e8;
  color: #2d5a2d;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: center;
}

/* Sale price styling */
.price--on-sale .price__regular {
  color: #d73527;
}

.price__sale {
  color: #666;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .price__regular {
    font-size: 1.25rem;
  }
  
  .price__tax-notice {
    font-size: 0.8rem;
    margin-left: 0.25rem;
  }
  
  .unit-price {
    font-size: 0.8rem;
  }
  
  .shipping-policy {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states for accessibility */
.price:focus-within {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .price__regular {
    color: #000;
  }
  
  .price__tax-notice,
  .unit-price {
    color: #333;
  }
  
  .shipping-policy {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #333;
  }
}

/* Unit price styling - Override theme.css */
.unit-price,
.product__price .unit-price,
.price .unit-price {
  font-size: 0.6rem !important;    ← Desktop: Deutlich kleiner
  color: #666 !important;
  font-weight: 400 !important;
  margin-top: 0.125rem !important;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .unit-price,
  .product__price .unit-price,
  .price .unit-price {
    font-size: 0.5rem !important;  ← Mobile: Noch kleiner
  }
}