.rakuten-search-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.rakuten-search-button.is-active {
  border-color: var(--primary);
  background: #ecfdf3;
  box-shadow: var(--focus-ring);
}

.rakuten-product-page {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.rakuten-product-page-nav {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.rakuten-product-back-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #b8d7d1;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.rakuten-product-back-button:hover,
.rakuten-product-back-button:focus-visible {
  border-color: var(--primary);
  background: #ecfdf3;
  box-shadow: var(--focus-ring);
  outline: 0;
}

.rakuten-product-panel {
  border-color: #ead8d8;
  margin-top: 0;
}

.rakuten-product-form {
  display: grid;
  gap: 7px;
}

.rakuten-product-label {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.rakuten-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.rakuten-product-row .input {
  width: 100%;
  min-width: 0;
}

.rakuten-product-row .btn {
  white-space: nowrap;
}

.rakuten-product-panel .status-line {
  margin-top: 7px;
}

.rakuten-product-refresh-button.is-loading {
  animation: rakuten-product-refresh-spin 0.8s linear infinite;
}

.rakuten-product-data-status {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

@keyframes rakuten-product-refresh-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rakuten-product-refresh-button.is-loading {
    animation: none;
  }
}

.rakuten-product-input-wrap {
  position: relative;
  min-width: 0;
}

.rakuten-product-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: min(360px, 52vh);
  overflow-y: auto;
  border: 1px solid #b8d7d1;
  border-radius: 12px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.rakuten-product-suggestions[hidden] {
  display: none;
}

.rakuten-product-suggestion {
  display: grid;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.rakuten-product-suggestion:hover,
.rakuten-product-suggestion:focus-visible,
.rakuten-product-suggestion.is-active {
  background: #ecfdf3;
  outline: 0;
}

.rakuten-product-suggestion strong {
  font-size: 15px;
  line-height: 1.35;
}

.rakuten-product-suggestion small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rakuten-product-autocomplete-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 640px) {
  .rakuten-product-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .rakuten-product-row .btn {
    width: 100%;
  }
}
