.quotation-wrapper {
  padding: 1.5rem;
}

/* Header & Heading */
.heading-container {
  margin-bottom: 1.5rem;
}

.quotation-heading {
  border-left: 4px solid var(--navy-primary);
  padding-left: 0.75rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.25rem;
}

.quotation-subheading {
  color: var(--slate-gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Stepper */
.stepper-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-gray);
  font-size: 0.875rem;
}

.stepper-item.active {
  color: var(--navy-primary);
  font-weight: 600;
}

.stepper-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.stepper-item.active .stepper-circle {
  background-color: var(--navy-primary);
  color: #ffffff;
}

.stepper-line {
  flex: 1;
  height: 2px;
  background-color: #e2e8f0;
  margin: 0 1rem;
}

/* Filter Controls */
.filter-toolbar {
  margin-bottom: 1.5rem;
}

.select-custom,
.input-custom,
.textarea-custom {
  font-size: 0.85rem;
  border-color: var(--border-line);
  box-shadow: none !important;
}

.search-icon {
  background-color: #ffffff;
  border-color: var(--border-line);
  color: var(--slate-gray);
}

/* Product Cards */
.fish-card {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fish-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 57, 117, 0.08);
}

.fish-card.is-active {
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 1px var(--navy-primary);
}

.stock-status {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.72rem;
  color: var(--green-stock);
  display: flex;
  align-items: center;
  gap: 4px;
}

.stock-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-stock);
}

.product-thumb-circle {
  width: 280px;
  height: 280px;
  background-color: #f1f5f9;
  border-radius: 50%;
  margin: 0.75rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.product-image {
  max-width: 90%;
  max-height: 80px;
  object-fit: contain;
}

.product-code-pill {
  background-color: var(--navy-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: center;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-specs {
  text-align: left;
  font-size: 0.78rem;
  color: var(--slate-gray);
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.spec-row strong {
  color: var(--slate-dark);
}

/* Stepper Quantity Box */
.card-action-bar {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stepper-qty-box {
  display: inline-flex;
  border: 1px solid var(--border-line);
  border-radius: 6px;
  overflow: hidden;
}

.btn-step-qty {
  width: 28px;
  height: 28px;
  background: #f8fafc;
  border: none;
  font-weight: 600;
  color: var(--slate-dark);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-step-qty:hover {
  background: #e2e8f0;
}

.qty-field {
  width: 36px;
  height: 28px;
  border: none;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-dark);
}

.fish-check-box {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-color: #cbd5e1;
}

.fish-check-box:checked {
  accent-color: var(--navy-primary);
}

/* Sidebar Components */
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-box,
.form-box {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 1.25rem;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.summary-title,
.form-heading {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.badge-item-counter {
  font-size: 0.75rem;
  color: var(--navy-primary);
  background: #edf2f7;
  padding: 2px 8px;
  border-radius: 4px;
}

.summary-data-table {
  width: 100%;
  font-size: 0.85rem;
}

.summary-data-table th {
  color: var(--slate-gray);
  font-weight: 600;
  padding: 6px 4px;
  border-bottom: 1px solid var(--border-line);
}

.summary-data-table td {
  padding: 8px 4px;
  vertical-align: middle;
}

.total-label,
.total-value {
  font-weight: 700;
  border-top: 1px solid var(--border-line);
  padding-top: 10px;
}

.total-value {
  text-align: right;
}

.remove-btn {
  color: var(--slate-gray);
  cursor: pointer;
  font-size: 1rem;
}

.remove-btn:hover {
  color: #dc3545;
}

/* Form Styling */
.form-group-item {
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-actions-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.btn-custom-outline {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border-line);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-gray);
}

.btn-custom-submit {
  flex: 1;
  background: var(--navy-primary);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-custom-submit:hover {
  background: var(--navy-hover);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--slate-gray);
  text-align: center;
}
