/* Product card styles */
.product-image {
  object-fit: contain;
  height: 100px;
  max-width: 100%;
  transition: transform 0.2s ease-in-out;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Badge styles */
.badge {
  font-weight: normal;
  font-size: 0.85rem;
  padding: 0.35em 0.65em;
}

/* Fabric option styles */
.semiFabOptions, .customFabOptions, .biminiFabOptions {
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.125);
  margin-bottom: 10px;
  transition: background-color 0.2s ease;
  overflow: hidden;
}

/* Enhanced fabric option card styling */
.fabric-option-card {
  transition: all 0.25s ease;
}

.fabric-option-card:hover {
  transform: translateY(-3px);
}

/* Shadow effect for hover state */
.shadow-hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Keep table styles consistent for fabric options */
.semiFabOptions table,
.customFabOptions table,
.biminiFabOptions table {
  width: 100%;
}

.green_button {
  background-color: #198754;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.green_button:hover {
  background-color: #157347;
}

/* Match Bootstrap text classes */
.red { color: #dc3545; }
.green { color: #198754; }
.blue { color: #0d6efd; }

/* Style for swatch images */
.swatchImg {
  border-radius: 0.25rem;
  max-width: 80px;
  height: auto;
}

/* Styling for fabric titles */
#biminiFabTitle, #semiFabTitle, #customFabTitle {
  background-color: #f8f9fa;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 0.25rem;
  text-align: center;
}
