/**
 * Price calculator styles.
 */

/* Calculated total display */
.calculated-total {
  background: #f8f9fa;
  border: 2px solid #60C6AF;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 1.25rem;
  text-align: center;
}

.calculated-total strong {
  color: #3a3a3a;
}

.calculated-price {
  color: #60C6AF;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Animation when price updates */
.calculated-price.price-updated {
  transform: scale(1.1);
  color: #5AB6A2;
}

/* Style for inline price display with adjustment info */
.price-adjustment-info {
  font-size: 0.85rem;
  color: #666;
  margin-left: 0.5rem;
}

.price-adjustment-info.positive {
  color: #60C6AF;
}

/* Option labels showing price adjustment */
.option-with-price .price-modifier {
  font-size: 0.9em;
  color: #60C6AF;
  font-weight: 600;
}

.option-with-price .price-modifier::before {
  content: ' (';
}

.option-with-price .price-modifier::after {
  content: ')';
}

.option-with-price .price-modifier.free::before,
.option-with-price .price-modifier.free::after {
  content: '';
}

.option-with-price .price-modifier.free {
  color: #999;
}
