/**
 * Volitelná výbava – detail produktu
 */
.optional-products-section {
  margin-top: 1.5rem;
}

.optional-products-section .h3 {
  margin-bottom: 1rem;
}

.optional-products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.optional-product-item {
  margin: 0;
}

.optional-product-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.optional-product-item:last-child .optional-product-row {
  border-bottom: none;
}

.optional-product-input {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  margin: 0;
  cursor: pointer;
  accent-color: var(--bs-primary, #2fb5d2);
}

@media (min-width: 576px) {
  .optional-product-input {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    min-height: 1.75rem;
  }
}

.optional-product-thumb {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .optional-product-thumb {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.optional-product-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.optional-product-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.optional-product-name {
  font-weight: 600;
  line-height: 1.35;
}

.optional-product-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

.optional-product-price {
  font-weight: 600;
  color: inherit;
}

.optional-product-price-modifier {
  font-size: 0.9em;
  color: #888;
}
