.product-grid {
  gap: 14px;
}

.product-option {
  min-height: 112px;
  grid-template-columns: 50px minmax(0, 1fr) 22px;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.product-option:hover {
  border-color: #bcbcbc;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.product-option:focus-visible {
  outline: 3px solid rgba(255, 173, 31, 0.28);
  outline-offset: 2px;
}

.product-option.selected {
  border-color: var(--brand-yellow, #ffad1f);
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  box-shadow: 0 0 0 3px rgba(255, 173, 31, 0.14), 0 10px 24px rgba(0, 0, 0, 0.06);
}

.product-option-icon {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 15px;
  color: #4f4f4f;
  background: #f2f2f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.025);
}

.product-option-icon svg {
  stroke-width: 1.7;
}

.product-option.selected .product-option-icon {
  color: #151515;
  background: var(--brand-yellow-soft, #fff5d9);
  transform: none;
}

.product-option-copy {
  gap: 7px;
  align-self: center;
}

.product-option-copy strong {
  font-size: 15px;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.01em;
}

.product-option-copy small {
  max-width: 24ch;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 1.5;
}

.product-option-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #d8d8d8;
  color: transparent;
  background: #fff;
  font-size: 0;
}

.product-option-check::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 160ms ease, transform 160ms ease;
  transform: scale(0.7);
}

.product-option.selected .product-option-check {
  border-color: var(--brand-yellow, #ffad1f);
  background: #fffaf0;
}

.product-option.selected .product-option-check::after {
  background: var(--brand-yellow, #ffad1f);
  transform: scale(1);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .product-option {
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 11px;
    padding: 16px;
  }

  .product-option-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .product-option-copy strong {
    font-size: 14px;
  }
}
