/* Food Cost Calculator — extends v3.css */

.fcc-hero {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.fcc-hero .hero-sub {
  max-width: 62ch;
}

.fcc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fcc-sec-top {
  padding-top: clamp(28px, 4vw, 48px);
}

.fcc-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.fcc-btn-reset {
  background: #fff;
  color: var(--muted);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.fcc-btn-reset:hover {
  color: var(--danger);
  border-color: #F5C0C0;
  background: #FFF5F5;
  transform: none;
}

.fcc-sample-modal-lead {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.fcc-sample-pick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcc-sample-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-soft);
  cursor: pointer;
  font-family: var(--font);
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.fcc-sample-pick:hover {
  border-color: var(--green);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}

.fcc-sample-pick .sample-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.fcc-sample-pick strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.fcc-sample-pick span:last-child {
  font-size: 0.88rem;
  color: var(--body);
}

.fcc-sample-modal-card {
  width: min(440px, 100%);
}

@media (max-width: 640px) {
  .fcc-block-actions {
    width: 100%;
  }

  .fcc-block-actions .btn {
    flex: 1;
    width: auto;
  }
}

/* Layout: form + sticky results */
.fcc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.fcc-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: clamp(20px, 2.5vw, 32px);
}

.fcc-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.fcc-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.fcc-block-title {
  font-size: 1.05rem;
  margin: 0 0 16px;
  color: var(--ink);
}

.fcc-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.fcc-block-head .fcc-block-title {
  margin: 0;
}

.fcc-btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
  width: auto;
  flex-shrink: 0;
}

.fcc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.fcc-panel .field label {
  color: var(--ink);
}

.fcc-panel .field .hint {
  color: var(--muted);
}

.fcc-panel input[type="text"],
.fcc-panel input[type="number"],
.fcc-panel select,
.fcc-modal input[type="text"],
.fcc-modal input[type="number"],
.fcc-modal select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fcc-panel input:focus,
.fcc-panel select:focus,
.fcc-modal input:focus,
.fcc-modal select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 168, 79, 0.18);
}

.money-in-light {
  background: #fff;
}

.money-in-light span {
  color: var(--muted);
}

.money-in-light input {
  padding-left: 36px !important;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

.money-in-light input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 168, 79, 0.18);
}

/* Ingredient summary list */
.fcc-ing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcc-ing-empty {
  margin: 4px 0 0;
  padding: 22px 16px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--r);
}

.fcc-ing-empty[hidden] {
  display: none !important;
}

.fcc-ing-empty p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.fcc-ing-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto 36px;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 10px 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.fcc-ing-item.is-warn {
  border-color: #F5C26B;
  background: #FFF8EC;
}

.fcc-ing-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  color: inherit;
}

.fcc-ing-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.fcc-ing-detail {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.fcc-ing-cost {
  text-align: right;
  white-space: nowrap;
}

.fcc-ing-cost .k-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.fcc-ing-cost strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.fcc-ing-edit {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
}

.fcc-ing-edit:hover {
  background: var(--bg-warm);
  color: var(--orange-dark);
}

.fcc-row-remove {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.fcc-row-remove:hover {
  background: #FEECEC;
  color: var(--danger);
}

.fcc-unit-note {
  margin-top: 10px;
  color: #8A4B15 !important;
}

.fcc-buy-price-row {
  display: grid;
  grid-template-columns: 1fr auto 72px minmax(110px, 1fr);
  align-items: center;
  gap: 8px;
}

.fcc-buy-price-input {
  min-width: 0;
}

.fcc-buy-price-input input {
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.fcc-per-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.fcc-qty {
  display: grid;
  grid-template-columns: minmax(72px, 0.8fr) minmax(110px, 1.1fr);
  gap: 8px;
}

/* Modal */
.fcc-modal[hidden] {
  display: none !important;
}

.fcc-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px 16px;
}

.fcc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 20, 0.5);
}

.fcc-modal-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.fcc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 0;
}

.fcc-modal-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.fcc-modal-x {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  line-height: 1;
}

.fcc-modal-x:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.fcc-modal-body {
  padding: 16px 20px 22px;
}

.fcc-modal-body .field {
  margin-bottom: 16px;
}

.fcc-modal-body .field label {
  color: var(--ink);
}

.fcc-modal-body .field .hint {
  color: var(--muted);
}

.fcc-modal-preview {
  background: var(--green-soft);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.fcc-modal-preview strong {
  font-size: 1.15rem;
}

.fcc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.fcc-modal-spacer {
  flex: 1;
}

/* Mode tabs */
.fcc-mode-tabs {
  display: flex;
  gap: 6px;
  margin: 8px 0 18px;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.fcc-mode-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.fcc-mode-tab.is-active {
  background: #f49046;
  color: #fff;
  box-shadow: 0 6px 16px rgba(244, 144, 70, 0.28);
}

.fcc-mode-tab.is-active:hover {
  color: #fff;
}

/* Results panel */
.fcc-results {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.fcc-results-inner {
  background: linear-gradient(160deg, #0B6B3A 0%, #145D36 55%, #0A4A2C 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: var(--sh-lg);
}

.fcc-result-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.fcc-menu-label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.fcc-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.fcc-kpi {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.fcc-kpi .k-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.fcc-kpi .k-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fcc-kpi .k-sub {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.fcc-kpi .k-val.is-profit-good {
  color: #5DE182;
}

.fcc-kpi .k-val.is-profit-bad {
  color: #FF6B6B;
}

.fcc-kpi .k-val.is-profit-zero {
  color: rgba(255, 255, 255, 0.85);
}

.fcc-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
}

.fcc-badge.good {
  background: #B8F0C8;
  color: #0B6B3A;
}

.fcc-badge.warn {
  background: #FFE5B8;
  color: #8A4B15;
}

.fcc-badge.bad {
  background: #FFD0D0;
  color: #9B1C1C;
}

/* Stacked bar */
.fcc-bar-wrap {
  margin-bottom: 22px;
}

.fcc-bar {
  display: flex;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.fcc-bar .seg {
  display: block;
  height: 100%;
  transition: width 0.25s var(--ease);
  min-width: 0;
}

.seg-ing { background: #4FD173; }
.seg-pack { background: #F5C26B; }
.seg-oh { background: #7EB8FF; }
.seg-gp { background: #FF8A5B; }
.seg-profit { background: #fff; }

.fcc-bar-legend {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.fcc-bar-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.fcc-bar-legend .dot.ing { background: #4FD173; }
.fcc-bar-legend .dot.pack { background: #F5C26B; }
.fcc-bar-legend .dot.oh { background: #7EB8FF; }
.fcc-bar-legend .dot.gp { background: #FF8A5B; }
.fcc-bar-legend .dot.profit { background: #fff; }

.fcc-bar-legend b {
  font-weight: 600;
  color: #fff;
}

.fcc-suggest,
.fcc-breakeven {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.fcc-suggest-row,
.fcc-be-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fcc-suggest .s-label,
.fcc-breakeven .s-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.fcc-suggest-note {
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.78rem !important;
  line-height: 1.45;
}

.fcc-gp-compare {
  background: rgba(255, 138, 91, 0.18);
  border: 1px solid rgba(255, 138, 91, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.fcc-gp-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fcc-gp-compare .s-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.fcc-gp-compare strong {
  font-size: 1.25rem;
  color: #fff;
}

.fcc-gp-compare .hint {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.8rem;
}

.fcc-gp-field {
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.fcc-month-summary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.fcc-month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fcc-month-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.fcc-month-profit {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fcc-gp-compare .fcc-month-grid .s-label,
.fcc-gp-compare .fcc-month-profit .s-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.fcc-gp-compare .fcc-month-grid strong,
.fcc-gp-compare .fcc-month-profit strong {
  font-size: 1.15rem;
  color: #fff;
}

.fcc-gp-compare strong.is-danger {
  color: #FF6B6B;
  text-shadow: 0 0 12px rgba(255, 80, 80, 0.35);
}

.fcc-gp-compare strong.is-profit-good {
  color: #5DE182;
}

.fcc-gp-compare strong.is-profit-bad {
  color: #FF6B6B;
}

.fcc-gp-compare strong.is-profit-zero {
  color: rgba(255, 255, 255, 0.85);
}

.fcc-save-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(93, 225, 130, 0.35);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.fcc-save-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.fcc-save-main {
  flex: 1.4;
  min-width: 0;
}

.fcc-save-side {
  flex: 1;
  min-width: 0;
}

.fcc-save-card .k-label {
  display: block;
  font-size: 0.82rem;
  color: #B7DEC6;
  margin-bottom: 4px;
}

.fcc-save-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.fcc-save-card strong {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: #5DE182;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fcc-save-card .k-suffix {
  font-size: 0.95rem;
  font-weight: 600;
  color: #B7DEC6;
}

.fcc-save-divider {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(183, 222, 198, 0.55) 0 5px,
    transparent 5px 10px
  );
}

@media (max-width: 640px) {
  .fcc-month-grid,
  .fcc-month-grid-2 {
    grid-template-columns: 1fr;
  }

  .fcc-save-card {
    flex-wrap: wrap;
  }

  .fcc-save-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      rgba(183, 222, 198, 0.55) 0 5px,
      transparent 5px 10px
    );
  }

  .fcc-save-main,
  .fcc-save-side {
    flex: 1 1 100%;
  }
}

.fcc-suggest strong,
.fcc-breakeven strong {
  font-size: 1.25rem;
  color: #fff;
}

.fcc-breakeven .hint {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem;
}

.fcc-foot {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: 8px;
}

/* Samples */
.fcc-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fcc-sample-card {
  text-align: left;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  font-family: var(--font);
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcc-sample-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: var(--green);
}

.fcc-sample-card .sample-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.fcc-sample-card strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.fcc-sample-card span:last-child {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.5;
}

/* Guide */
.fcc-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.fcc-guide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  box-shadow: var(--sh-sm);
}

.badge-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.badge-pill.good {
  background: var(--green-soft);
  color: var(--green-dark);
}

.badge-pill.warn {
  background: #FFF2E0;
  color: #8A4B15;
}

.badge-pill.bad {
  background: #FEECEC;
  color: #9B1C1C;
}

.fcc-guide-card h3 {
  margin-bottom: 8px;
}

.fcc-guide-card p {
  font-size: 0.95rem;
  color: var(--body);
}

.fcc-hidden-costs {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px);
}

.fcc-hidden-costs h3 {
  margin-bottom: 16px;
}

.fcc-gp-link {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--body);
}

.fcc-gp-link a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA */
.fcc-cta-sec {
  padding-top: 0;
}

.fcc-cta-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0B6B3A, #145D36);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sh-lg);
}

.fcc-cta-box h2 {
  color: #fff;
  margin-bottom: 12px;
}

.fcc-cta-box p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.fcc-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.fcc-cta-sub {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B8F0C8;
  margin-top: 4px;
}

.fcc-cta-sub:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
  .fcc-layout {
    grid-template-columns: 1fr;
  }

  .fcc-results {
    position: static;
  }

  .fcc-samples,
  .fcc-guide-grid {
    grid-template-columns: 1fr;
  }

  .fcc-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fcc-grid-2 {
    grid-template-columns: 1fr;
  }

  .fcc-kpi-grid {
    grid-template-columns: 1fr;
  }

  .fcc-mode-tabs {
    flex-direction: column;
  }

  .fcc-bar-legend {
    grid-template-columns: 1fr;
  }

  .fcc-ing-item {
    grid-template-columns: minmax(0, 1fr) auto 32px;
  }

  .fcc-ing-edit {
    display: none;
  }

  .fcc-buy-price-row {
    grid-template-columns: 1fr 1fr;
  }

  .fcc-buy-price-input {
    grid-column: 1 / -1;
  }

  .fcc-per-label {
    display: none;
  }
}
