/** Shopify CDN: Minification failed

Line 12:0 Unexpected "{"
Line 12:1 Expected identifier but found "%"
Line 14:10 Expected identifier but found whitespace
Line 14:16 Unexpected "\"View in your space\""
Line 15:1 Expected identifier but found "%"
Line 17:0 Unexpected "<"
Line 105:0 Unexpected "<"

**/
{%- comment -%}
  AR Button Elevation — Shopify XR Button Styling
  Purpose: Make "View in your space" button prominent on main product image
{%- endcomment -%}

<style>
  /* XR Button Badge Style */
  .product__xr-button,
  .product__xr-button[data-shopify-xr-hidden] {
    display: block !important;
    visibility: visible !important;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;

    /* Icon-only badge styling */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0 !important;
    border-radius: 50%;

    /* Colors */
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);

    /* Typography */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;

    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
  }

  /* Hide text label, show icon only */
  .product__xr-button span:not(.svg-wrapper),
  .product__xr-button::after {
    display: none !important;
  }

  .product__xr-button:hover,
  .product__xr-button:focus {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
  }

  /* Icon sizing inside button */
  .product__xr-button .svg-wrapper {
    display: flex;
    width: 1.1rem;
    height: 1.1rem;
  }

  .product__xr-button .svg-wrapper svg {
    width: 100%;
    height: 100%;
  }

  /* Container positioning — make parent position relative */
  .product-media-container,
  product-model,
  deferred-media {
    position: relative !important;
  }

  /* Mobile: smaller button at bottom-right */
  @media (max-width: 750px) {
    .product__xr-button {
      bottom: 12px;
      right: 12px;
      top: auto;
      width: 2.4rem;
      height: 2.4rem;
    }
  }

  /* Desktop: button at top-right */
  @media (min-width: 990px) {
    .product__xr-button {
      top: 16px;
      right: 16px;
    }
  }
</style>