@import url("checkout.css");

/* Paperback specific layout overrides */
.checkout-card {
  min-height: 650px;
}

/* Product thumbnail in checkout header */
.product-thumbnail {
  width: 64px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-product-header {
  gap: 14px;
}

/* Shipping tag under product name */
.product-tag {
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .product-thumbnail {
    width: 52px;
    height: 68px;
    border-radius: 5px;
  }

  .checkout-product-header {
    gap: 10px;
  }
}
