.webcrema-swatches-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer; /* Damit sichtbar ist: klickbar */
  flex-wrap: wrap;
}

.webcrema-swatch-option {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

.webcrema-swatch-option:hover {
  transform: scale(1.08);
}

.webcrema-swatch-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.webcrema-swatch-option.selected {
  border: 2px solid #000;
  padding: 2px;
  box-sizing: border-box;
}

.webcrema-swatches-more {
  margin-left: 6px;
}

.webcrema-more-text {
  font-size: 12px;
  color: #111;
  letter-spacing: 0.1px;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== Naturstein-Links Styling ===== */

.loveful-natural-stone-link-wrapper {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.loveful-natural-stone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.loveful-natural-stone-link:hover {
  background-color: #f5f5f5;
  border-color: #999;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.loveful-natural-stone-link:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.loveful-natural-stone-icon {
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.loveful-natural-stone-link:hover .loveful-natural-stone-icon {
  transform: translateX(3px);
}

.loveful-natural-stone-text {
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .webcrema-swatch-option {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .webcrema-more-text {
    font-size: 11px;
  }

  .loveful-natural-stone-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .loveful-natural-stone-link-wrapper {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .webcrema-swatch-option {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }

  .webcrema-swatches-container {
    gap: 4px;
  }

  .webcrema-more-text {
    font-size: 10px;
  }

  .loveful-natural-stone-link {
    display: flex;
    width: 100%;
    padding: 12px;
    font-size: 12px;
    justify-content: center;
  }

  .loveful-natural-stone-link-wrapper {
    padding: 10px;
  }
}

.mobile-hidden {
  display: none;
}

@media (min-width: 769px) {
  .mobile-hidden {
    display: block;
  }
}
