.badge {
  padding: 0.2rem 0.6rem;
  display: inline-block;
  border-radius: var(--border-radius-badge);
  background: rgb(var(--color-badge-background));
  color: rgb(var(--color-badge-text));
  font-family: var(--font-button-family);
  font-weight: 500;
  font-style: var(--font-button-style);
  letter-spacing: var(--font-badge-letter-spacing);
  font-size: 1.2rem;
  line-height: 120%;
  text-transform: capitalize;
}
.badge--sale {
  color: rgb(var(--color-badge-text-sale));
}

.skeleton-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
  gap: 20px;
  padding: 2rem 0;
}

.skeleton-container-homepage {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 columns for desktop */
  gap: 20px;
  padding: 2rem 0;
}
.skeleton-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.skeleton-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-content {
  padding: 16px;
}

.skeleton-title {
  height: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
  width: 80%;
}

.skeleton-subtitle {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
  width: 60%;
}

.skeleton-price {
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  width: 40%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Tablet and Mobile - 2 columns */
@media (max-width: 768px) {
  .skeleton-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    gap: 12px;
  }
  .skeleton-container-homepage {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    gap: 12px;
  }
  
  .skeleton-image {
    height: 200px;
  }
  
  .skeleton-content {
    padding: 12px;
  }
}