/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 200:0 Unexpected "`"

**/
```css
/* =========================================
   SQUAREGLOW UI
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f7;
  font-family: Inter, sans-serif;
  color: #111;
}

/* PAGE */

.page-width {
  max-width: 1600px;
}

/* TITRES */

h1,
.h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h2,
.h2 {
  letter-spacing: -0.04em;
}

/* HEADER */

.header-wrapper {
  background: rgba(245,245,247,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* CARDS */

.card,
.product-card-wrapper .card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */

.card__media {
  overflow: hidden;
  background: #f5f5f7;
}

.card__media img,
.media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition: transform .4s ease;
}

.card:hover img {
  transform: scale(1.04);
}

/* REMOVE DUPLICATE TITLE */

[id*="StandardCardNoMediaLink"] {
  display: none !important;
}

/* CONTENT */

.card__content {
  padding: 1.8rem;
}

/* TITLES */

.card__heading a,
.card-information__text a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* PRICE */

.price {
  color: #111;
  font-weight: 600;
}

/* BUTTONS */

.button,
.product-form__submit {
  border-radius: 14px !important;

  background: #5da9ff !important;
  color: white !important;

  border: none !important;

  transition: 0.25s ease;
}

.button:hover,
.product-form__submit:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* SLIDER */

.slider-button {
  width: 54px !important;
  height: 54px !important;

  border-radius: 999px !important;

  background: rgba(255,255,255,0.96) !important;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

  display: flex !important;
  align-items: center;
  justify-content: center;

  z-index: 20;
}

/* REMOVE SHOPIFY SVG */

.slider-button svg,
.slider-button .icon {
  display: none !important;
}

/* CUSTOM ARROWS */

.slider-button--prev::before {
  content: "←";

  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.slider-button--next::before {
  content: "→";

  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.slider-button:hover {
  background: #111 !important;
}

.slider-button:hover::before {
  color: white;
}

/* FOOTER */

.footer {
  background: #111;
  color: rgba(255,255,255,.7);
}
```
