.sbProductSpecification {
  width: 100%;
  border-collapse: collapse;
  hyphens: auto;
  overflow-wrap: break-word;
}

.sbProductSpecification .sbField {
  color: #333;
  transition: background-color 0.2s ease;
}

.sbProductSpecification .sbField:hover {
  background: #f8f9fa;
}

.sbProductSpecification .sbField td {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.sbProductSpecification .sbField .sbTitle {
  font-weight: 600;
  width: 45%;
  padding-right: 15px;
  color: #495057;
  position: relative;
  padding-left: 10px;
}

.sbProductSpecification .sbField .sbValue {
  font-size: 16px;
  width: 55%;
  color: var(--link-color);
  line-height: 1.4;
}

.sbProductSpecification .sbField .sbSeparator {
  border-bottom: 2px solid var(--link-color);
  padding: 16px 0 0 0;
  background: white;
  color: white;
  position: relative;
}

.sbProductSpecification .sbField .sbSeparator:hover {
  background: white;
}

.sbProductSpecification .sbField .sbSeparator .sbText {
  background: var(--link-color);
  padding: 8px 20px;
  border-radius: 8px 8px 0 0;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(33, 121, 184, 0.2);
  position: relative;
  z-index: 1;
}

.sbProductSpecification .sbField .sbDescription {
  background: url("/template/img/pictograms/info.png") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 0 2px 8px;
  vertical-align: middle;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.sbProductSpecification .sbField .sbDescription:hover {
  opacity: 1;
  transform: scale(1.1);
  z-index: 3;
}

.sbProductSpecification .sbField .sbDescription:hover > .sbPopup {
  display: block;
  animation: fadeInScale 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left center;
}

.sbProductSpecification .sbField .sbDescription .sbPopup {
  display: none;
  position: absolute;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  margin: -30px 0 0 25px;
  width: 320px;
  font: 14px/1.3 normal Montserrat;
  color: #856404;
  padding: 12px;
  border-radius: 12px;
  min-height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  backdrop-filter: blur(4px);
  transform: translateZ(0);
}

.sbProductSpecification .sbField .sbDescription::before,
.sbProductSpecification .sbField .sbDescription::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--link-color);
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: none;
  z-index: 1;
}

.sbProductSpecification .sbField .sbDescription:hover::before {
  animation: squareWaveEffect 0.8s ease-out forwards;
}

.sbProductSpecification .sbField .sbDescription:hover::after {
  animation: squareWaveEffect 0.8s ease-out 0.2s forwards;
}

@keyframes squareWaveEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    border-width: 2px;
    border-radius: 2px;
  }
  50% {
    opacity: 0.5;
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
    border-width: 0;
    border-radius: 8px;
  }
}

.sbProductSpecification .sbField .sbDescription:not(:hover)::before,
.sbProductSpecification .sbField .sbDescription:not(:hover)::after {
  animation: none;
  opacity: 0;
}

.sbProductSpecification .sbField .sbDescription .sbPopup:after,
.sbProductSpecification .sbField .sbDescription .sbPopup:before {
  right: 100%;
  top: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.sbProductSpecification .sbField .sbDescription .sbPopup:after {
  border-color: rgba(255, 243, 205, 0);
  border-right-color: #fff3cd;
  border-width: 10px;
  margin-top: -10px;
}

.sbProductSpecification .sbField .sbDescription .sbPopup:before {
  border-color: rgba(255, 234, 167, 0);
  border-right-color: #ffeaa7;
  border-width: 11px;
  margin-top: -11px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.sbProductSpecification .sbField .sbDescription .sbPopup {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffeaa7 #fff3cd;
}

.sbProductSpecification .sbField .sbDescription .sbPopup p {
  margin-bottom: 0;
}

.sbProductSpecification .sbField .sbDescription .sbPopup::-webkit-scrollbar {
  width: 6px;
}

.sbProductSpecification
  .sbField
  .sbDescription
  .sbPopup::-webkit-scrollbar-track {
  background: #fff3cd;
  border-radius: 3px;
}

.sbProductSpecification
  .sbField
  .sbDescription
  .sbPopup::-webkit-scrollbar-thumb {
  background: #ffeaa7;
  border-radius: 3px;
}

.sbProductSpecification
  .sbField
  .sbDescription
  .sbPopup::-webkit-scrollbar-thumb:hover {
  background: #ffdf7e;
}

@media (max-width: 567px) {
  .sbProductSpecification .sbField .sbTitle,
  .sbProductSpecification .sbField .sbValue {
    width: 100%;
    display: block;
    padding: 8px 10px;
    position: relative;
  }

  .sbProductSpecification .sbField .sbValue {
    width: 100%;
    display: block;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
  }

  .sbProductSpecification .sbField .sbTitle {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 16px;
  }

  .sbProductSpecification .sbField .sbDescription .sbPopup {
    width: 280px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(30px);
    margin: 0;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sbProductSpecification .sbField .sbDescription .sbPopup:after,
  .sbProductSpecification .sbField .sbDescription .sbPopup:before {
    display: none;
  }

  .sbProductSpecification .sbField .sbDescription .sbPopup.show-pulse::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    width: 200%;
    height: 200%;
  }

  @keyframes squareWaveEffect {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
      border-width: 2px;
      border-radius: 2px;
    }
    50% {
      opacity: 0.5;
      border-width: 1px;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
      border-width: 0;
      border-radius: 6px;
    }
  }
}

.sbProductSpecification .sbField .sbDescription:focus {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.sbPictogram {
    height: 20px;   
}

@media (min-width: 451px) and (max-width: 768px) {
    .sbPictogram {
        height: 17px;   
    }
}

@media (max-width: 450px) {
    .sbPictogram {
        height: 15px;   
    }
}