#imgSizeDebug {
  position: fixed;
  left: 0;
  top: 100px;
  color: #fff;
  background-color: #000;
  padding: 20px;
  z-index: 99999;
  display: none;
}
.product-gallery__image a {
  border-radius: 16px;
  overflow: hidden;
}
.dekro-accordion .swatch-label {
  margin: 0;
}
.dekro-cards-container .filter-section:last-child {
  margin-bottom: 10px;
}
.config-set .swatch-label {
  margin-bottom: 20px;
}
.swatch-label .choose-label {
  display: inline-block;
  color: green;
}
@media (max-width: 768px) {
  .product-summary .product-title {
    font-size: 1.75rem;
    margin: 10px 0 28px;
    line-height: 1.5;
    color: #282828;
    font-weight: 500;
    letter-spacing: 1px;
  }
} /* Dodaj te style do templates/airi/assets/css/product_variant.css */
/* Styl dla animacji przy aktualizacji zawartości */
.content-updated {
  animation: highlight-update 1s ease-out;
}
@keyframes highlight-update {
  0% {
    background-color: rgba(255, 255, 150, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
/* Style dla wiadomości variant-checker */
.variant-message {
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  animation: fade-in-message 0.3s ease-out forwards;
}
.variant-info {
  background-color: #e3f2fd;
  color: #0d47a1;
  border-left: 4px solid #2196f3;
}
.variant-success {
  background-color: #e8f5e9;
  color: #1b5e20;
  border-left: 4px solid #4caf50;
}
.variant-error {
  background-color: #ffebee;
  color: #b71c1c;
  border-left: 4px solid #f44336;
}
@keyframes fade-in-message {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Dodatkowe style dla plakietek, aby zachować spójność podczas aktualizacji */
.badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 9;
  transition: opacity 0.3s ease;
}
.product-badge {
  display: inline-block;
  margin: 0 2px 5px 0;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Dodaj stylowanie dla załadowania kontenerów */
.dekro-pricing-section.loading {
  position: relative;
  pointer-events: none;
}
.dekro-pricing-section.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" r="32" stroke-width="8" stroke="%23999" stroke-dasharray="50.26548245743669 50.26548245743669" fill="none" stroke-linecap="round" transform="rotate(28.9003 50 50)"><animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform></circle></svg>') center/50px no-repeat;
  z-index: 100;
}