/* =========================================================
   Shared Checkout View Larger Button
   Used by Challenge Coin and Pocket Watch checkout pages
========================================================= */

.checkout-page .checkout-image-tools {
  width: min(80%, 27.2rem);
  margin: 0.8rem auto 0;
}

.checkout-page .checkout-image-tools--wide {
  width: min(92%, 31rem);
}

.checkout-page .checkout-image-tools--extra-wide {
  width: min(100%, 36rem);
}

.checkout-page .checkout-view-larger {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.68rem 1rem;
  border: 1px solid #b99a4b;
  border-radius: 6px;
  background: #fffdf7;
  color: #132d4d;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.checkout-page .checkout-view-larger:hover,
.checkout-page .checkout-view-larger:focus-visible {
  border-color: #8d702e;
  background: #f7f0dc;
  color: #132d4d;
  transform: translateY(-1px);
}

.checkout-page .checkout-view-larger svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@media (max-width: 600px) {
  .checkout-page .checkout-image-tools--wide,
  .checkout-page .checkout-image-tools--extra-wide {
    width: 100%;
  }
}
