* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #1c1c1c;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}


/* CONTAINER */

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.navbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.logo {
  justify-self: start;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.nav-actions a {
  font-size: 15px;
  color: #444444;
  text-decoration: none;
}

.nav-links a:hover,
.nav-actions a:hover {
  color: #000000;
}

.nav-actions {
  justify-self: end;
}


/* HERO */

.hero {
  padding: 115px 0 105px;
}

.hero-content {
  text-align: center;
}

.hero-label,
.section-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #777777;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -2.4px;
}

.hero-description {
  max-width: 590px;
  margin: 24px auto 36px;
  font-size: 19px;
  color: #666666;
}

.search-wrapper {
  max-width: 620px;
  margin: 0 auto;
}

.search-box {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 12px;
  outline: none;
}

.search-box:focus {
  border-color: #555555;
}


/* HOME SECTIONS */

.home-section {
  padding: 80px 0;
  border-top: 1px solid #eeeeee;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.section-heading a {
  font-size: 14px;
  color: #555555;
}

.empty-state {
  padding: 65px 30px;
  text-align: center;
  background: #f7f7f7;
  border-radius: 14px;
}

.empty-state p {
  margin: 0;
  color: #777777;
}


/* COMMUNITY */

.community-section {
  padding: 100px 0;
  background: #f7f7f7;
}

.community-content {
  text-align: center;
}

.community-content h2 {
  margin: 0 0 14px;
  font-size: 38px;
  letter-spacing: -1px;
}

.community-content p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: #666666;
  font-size: 17px;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  color: #ffffff;
  background: #1c1c1c;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
}


/* FOOTER */

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid #eeeeee;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-logo {
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.footer-description {
  margin: 8px 0 0;
  color: #777777;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 15px 24px;
}

.footer-links a {
  font-size: 14px;
  color: #555555;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 25px;
  font-size: 13px;
  color: #888888;
  border-top: 1px solid #eeeeee;
}

/* PAGE HEADER */

.page-header {
  padding: 80px 0 45px;
}

.page-header h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.page-description {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 17px;
  color: #666666;
}


/* CHOCOLATE LIST */

.chocolate-list-section {
  padding: 20px 0 90px;
}

.chocolate-toolbar {
  margin-bottom: 35px;
}

.chocolate-search {
  width: 100%;
  max-width: 420px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}

.chocolate-search:focus {
  border-color: #555555;
}

.chocolate-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.chocolate-card {
  color: inherit;
  text-decoration: none;
}

.chocolate-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 14px;
}

.chocolate-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
}

.chocolate-card-content {
  padding-top: 16px;
}

.chocolate-brand {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #777777;
}

.chocolate-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.chocolate-rating {
  margin-top: 9px;
  font-size: 14px;
  color: #777777;
}


/* CHOCOLATE DETAIL */

.chocolate-detail {
  padding: 35px 0 100px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 45px;
  font-size: 13px;
  color: #777777;
}

.breadcrumb a {
  color: #555555;
  text-decoration: none;
}

.chocolate-hero {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.chocolate-main-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 18px;
}

.chocolate-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
}

.chocolate-brand-large {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777777;
}

.chocolate-summary h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.07;
  letter-spacing: -1.7px;
}

.rating-summary {
  margin-top: 30px;
}

.rating-main {
  font-size: 22px;
}

.rating-summary p {
  margin: 6px 0 0;
  color: #777777;
}

.rate-button {
  margin-top: 28px;
  padding: 14px 22px;
  border: 0;
  border-radius: 9px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.chocolate-content-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 2fr)
    minmax(260px, 1fr);
  gap: 80px;
  margin-top: 90px;
}

.detail-section {
  padding: 0 0 60px;
}

.detail-section + .detail-section {
  padding-top: 55px;
  border-top: 1px solid #eeeeee;
}

.detail-section h2,
.chocolate-info h2 {
  margin: 0 0 22px;
  font-size: 25px;
  letter-spacing: -0.5px;
}

.chocolate-description {
  color: #555555;
}

.chocolate-description p:first-child {
  margin-top: 0;
}

.empty-rating {
  padding: 28px;
  background: #f7f7f7;
  border-radius: 12px;
}

.empty-rating p {
  margin: 5px 0 0;
  color: #777777;
}

.chocolate-info {
  height: fit-content;
  padding: 28px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row span {
  color: #777777;
}

.info-row strong {
  text-align: right;
  font-weight: 600;
}

/* BRAND LIST */

.brand-list-section {
  padding: 20px 0 100px;
}

.brand-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}

.brand-card:hover {
  border-color: #bbbbbb;
}

.brand-card-logo {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 50%;
}

.brand-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-card-logo span {
  font-size: 25px;
  font-weight: 700;
}

.brand-card-content h2 {
  margin: 0;
  font-size: 19px;
}

.brand-card-content p {
  margin: 3px 0;
  font-size: 14px;
  color: #777777;
}

.brand-product-count {
  font-size: 13px;
  color: #888888;
}


/* BRAND DETAIL */

.brand-detail-header {
  padding: 35px 0 70px;
  border-bottom: 1px solid #eeeeee;
}

.brand-header-content {
  display: flex;
  align-items: center;
  gap: 35px;
}

.brand-large-logo {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 50%;
}

.brand-large-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-large-logo span {
  font-size: 42px;
  font-weight: 700;
}

.brand-header-content h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.brand-country {
  margin: 8px 0 0;
  color: #777777;
}

.brand-description {
  max-width: 650px;
  margin: 14px 0 0;
  color: #555555;
}

.brand-products-section {
  padding: 75px 0 100px;
}

.brand-total {
  color: #777777;
  font-size: 14px;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover {
  text-decoration: underline;
}

.info-link {
  color: inherit;
}

.info-link:hover {
  text-decoration: none;
}

/* CHOCOLATE TYPES */

.type-list-section {
  padding: 20px 0 100px;
}

.type-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.type-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 150px;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}

.type-card:hover {
  border-color: #bbbbbb;
}

.type-card-content h2 {
  margin: 0;
  font-size: 22px;
}

.type-card-content p {
  max-width: 470px;
  margin: 8px 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

.type-product-count {
  font-size: 13px;
  color: #888888;
}

.type-arrow {
  flex: 0 0 auto;
  font-size: 25px;
  color: #777777;
}


/* TYPE DETAIL */

.type-detail-header {
  padding: 35px 0 70px;
  border-bottom: 1px solid #eeeeee;
}

.type-detail-header h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.type-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: #555555;
  font-size: 17px;
}

.type-products-section {
  padding: 75px 0 100px;
}

.type-total {
  font-size: 14px;
  color: #777777;
}

/* COUNTRIES */

.country-list-section {
  padding: 20px 0 100px;
}

.country-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.country-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 115px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}

.country-card:hover {
  border-color: #bbbbbb;
}

.country-card h2 {
  margin: 0 0 5px;
  font-size: 21px;
}

.country-product-count {
  font-size: 13px;
  color: #888888;
}

.country-arrow {
  font-size: 24px;
  color: #777777;
}


/* COUNTRY DETAIL */

.country-detail-header {
  padding: 35px 0 70px;
  border-bottom: 1px solid #eeeeee;
}

.country-detail-header h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.country-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: #555555;
  font-size: 17px;
}

.country-products-section {
  padding: 75px 0 100px;
}

.country-total {
  color: #777777;
  font-size: 14px;
}

/* AUTH */

.auth-section,
.account-section {
  min-height: 70vh;
  padding: 90px 0;
  background: #f7f7f7;
}

.auth-card,
.account-card {
  width: min(100%, 470px);
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
}

.auth-card h1,
.account-card h1 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -1px;
}

.auth-description {
  margin: 14px 0 30px;
  color: #666666;
}

.google-login-button,
.auth-submit-button,
.logout-button {
  width: 100%;
  height: 50px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.google-login-button {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #222222;
}

.google-login-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 25px 0;
}

.auth-divider span {
  height: 1px;
  background: #e5e5e5;
}

.auth-divider p {
  margin: 0;
  font-size: 13px;
  color: #888888;
}

#email-login-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

#email-login-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #cccccc;
  border-radius: 9px;
  font-size: 15px;
}

.auth-submit-button {
  margin-top: 14px;
  border: 0;
  background: #1c1c1c;
  color: #ffffff;
}

.auth-message {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 14px;
}

.auth-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: #888888;
}

.account-actions {
  margin-top: 30px;
}

.logout-button {
  border: 1px solid #dddddd;
  background: #ffffff;
}

/* USER PROFILE */

.account-intro {
  margin: 14px 0 28px;
  color: #666666;
}

#username-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.username-input-wrapper {
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden;
  border: 1px solid #cccccc;
  border-radius: 9px;
}

.username-input-wrapper:focus-within {
  border-color: #555555;
}

.username-input-wrapper span {
  padding-left: 14px;
  color: #888888;
}

.username-input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0 14px 0 4px;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.username-help {
  margin: 8px 0 0;
  color: #888888;
  font-size: 12px;
}

.account-profile {
  padding: 18px 0;
  border-bottom: 1px solid #eeeeee;
}

.account-label {
  margin: 0 0 4px;
  color: #888888;
  font-size: 13px;
}

.profile-username {
  font-size: 18px;
}

.profile-header {
  margin: 20px 0 28px;
}

.profile-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.profile-username {
  margin: 5px 0 0;
  color: #777777;
}

.profile-edit-button,
.secondary-button {
  width: 100%;
  height: 48px;
  margin-top: 25px;
  border: 1px solid #dddddd;
  border-radius: 9px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.secondary-button {
  margin-top: 10px;
}

#profile-setup-form > input,
#edit-profile-form > input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #cccccc;
  border-radius: 9px;
  font-size: 15px;
}

.username-label {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
}

.username-warning {
  margin: 12px 0 0;
  padding: 12px;
  background: #f7f7f7;
  border-radius: 8px;
  color: #666666;
  font-size: 13px;
}

.profile-field-label {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.optional-label {
  margin-left: 5px;
  color: #999999;
  font-size: 12px;
  font-weight: 400;
}

#profile-setup-form select,
#edit-profile-form select,
#profile-setup-form input[type="date"],
#edit-profile-form input[type="date"] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 9px;
  font-size: 15px;
}

.private-field-note {
  margin: 20px 0 0;
  padding: 13px 15px;
  background: #f7f7f7;
  border-radius: 9px;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}

/* REVIEW MODAL */

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.review-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  padding: 34px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
}

.review-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.review-modal-header h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.8px;
}

.review-modal-close {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.review-field {
  margin-top: 30px;
}

.review-field > label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 650;
}

.required-mark {
  color: #777777;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.reaction-options {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reaction-options button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 8px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.reaction-options button span {
  font-size: 27px;
}

.reaction-options button.selected,
.buy-again-options button.selected {
  border-color: #1c1c1c;
  background: #f5f5f5;
}

.buy-again-options {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
  gap: 10px;
}

.buy-again-options button {
  height: 45px;
  border: 1px solid #dddddd;
  border-radius: 9px;
  background: #ffffff;
  cursor: pointer;
}

.price-input-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cccccc;
  border-radius: 9px;
  font: inherit;
}

.review-field textarea {
  resize: vertical;
}

.review-character-count {
  margin-top: 5px;
  text-align: right;
  color: #888888;
  font-size: 12px;
}

.review-submit-button {
  width: 100%;
  height: 50px;
  margin-top: 25px;
  border: 0;
  border-radius: 9px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.delete-review-button {
  width: 100%;
  height: 46px;
  margin-top: 10px;
  border: 1px solid #dddddd;
  border-radius: 9px;
  background: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 760px) {

  .container {
    width: min(100% - 32px, 1120px);
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 80px 0 75px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 17px;
  }

  .home-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .community-section {
    padding: 75px 0;
  }

  .community-content h2 {
    font-size: 31px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

    .page-header {
    padding: 60px 0 35px;
  }

  .page-header h1 {
    font-size: 38px;
  }

  .chocolate-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .chocolate-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .chocolate-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 65px;
  }

  .chocolate-info {
    order: -1;
  }

  .chocolate-detail {
    padding-top: 25px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }
  
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-header-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-large-logo {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }

  .brand-header-content h1 {
    font-size: 38px;
  }

  .brand-products-section {
    padding: 60px 0 80px;
  }

    .type-grid {
    grid-template-columns: 1fr;
  }

  .type-card {
    min-height: auto;
    padding: 24px;
  }

  .type-detail-header h1 {
    font-size: 38px;
  }

  .type-products-section {
    padding: 60px 0 80px;
  }

    .country-grid {
    grid-template-columns: 1fr;
  }

  .country-detail-header h1 {
    font-size: 38px;
  }

  .country-products-section {
    padding: 60px 0 80px;
  }

    .auth-section,
  .account-section {
    padding: 55px 0;
  }

  .auth-card,
  .account-card {
    padding: 28px 22px;
  }

  @media (max-width: 760px) {

  .review-modal {
    padding: 0;
    align-items: flex-end;
  }

  .review-modal-card {
    width: 100%;
    max-height: 92vh;
    padding: 26px 20px;
    border-radius: 18px 18px 0 0;
  }

  .reaction-options {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .price-input-row {
    grid-template-columns: 110px 1fr;
  }

}
}
