/* Installation options styling */
.gts-install-options {
  margin-top: 8px;
}

.gts-install-label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 12px;
  font-size: 1rem;
}

.gts-install-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gts-install-option {
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  border: 2px solid #0000001f;
  border-radius: 4px;
  color: #333;
  background-color: transparent;
  transition: all 0.2s ease;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.gts-install-option.gts-selected {
  font-weight: 600 !important;
  border: 2px solid #333;
  background-color: transparent;
  color: #000;
}

/* Only apply hover effects on devices that support hover (non-touch) */
@media (hover: hover) and (pointer: fine) {
  .gts-install-option:hover {
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.gts-install-value {
  pointer-events: none;
}

/* Tooltip error styling */
.gts-install-tooltip {
  position: absolute;
  background: #e74c3c;
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: gts-tooltip-in 0.3s ease;
  max-width: 250px;
  text-align: center;
}

.gts-install-options.gts-highlight {
  animation: gts-highlight-pulse 1s ease-in-out 3;
}

@keyframes gts-tooltip-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gts-highlight-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0.1);
  }
}

/* Sale price styling */
.gts-plus {
  color: #C50F0F;
}

.gts-sale {
  color: #C50F0F;
  font-weight: 900;
}

.gts-original {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}