/** Shopify CDN: Minification failed

Line 231:0 Expected "}" to go with "{"

**/
/* ===== Easy Shop CI — Base ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--font-body-weight, 400);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight, 700);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Layout ===== */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--spacing-sections, 48px);
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-accent-text);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-to-content:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius);
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
  text-align: center;
}
.btn:hover { opacity: .85; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--full { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ===== Header ===== */
.header {
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.header__logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; }
.header__logo img { display: block; }
.header__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.header__nav a { font-size: .95rem; }
.header__actions { display: flex; gap: 16px; align-items: center; }
.header__actions a { display: inline-flex; }
.cart-count {
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 999px;
  font-size: .7rem;
  padding: 1px 7px;
  margin-left: 4px;
}

/* ===== Announcement ===== */
.announcement {
  background: var(--color-accent);
  color: var(--color-accent-text);
  text-align: center;
  padding: 8px 16px;
  font-size: .85rem;
}
.announcement a { text-decoration: underline; }

/* ===== Product grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card__image {
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__title { font-size: .95rem; margin-bottom: 4px; }
.product-card__price { font-weight: 700; }
.product-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ===== Product page ===== */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product__media img { width: 100%; border-radius: var(--border-radius); }
.product__price { font-size: 1.5rem; font-weight: 700; margin: 12px 0; }
.product__form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; max-width: 380px; }
.product__form select,
.product__form input {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ===== Cart ===== */
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-row img { width: 80px; border-radius: var(--border-radius); }
.cart__footer { margin-top: 24px; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

/* ===== Rich text / banner ===== */
.banner { position: relative; text-align: center; }
.banner__image img { width: 100%; object-fit: cover; }
.banner__content { padding: 40px 20px; }
.banner--overlay .banner__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}
.banner__heading { font-size: 2.4rem; margin-bottom: 12px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: 40px;
  margin-top: 40px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.footer__social { display: flex; gap: 16px; margin-top: 12px; }
.footer__bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: .85rem;
  opacity: .7;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.rte a { text-decoration: underline; }
.rte img { border-radius: var(--border-radius); }

/* ===== Responsive ===== */
@media (max-width: 990px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 749px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product { grid-template-columns: 1fr; gap: 24px; }
  .header__nav { display: none; }
  .banner__heading { font-size: 1.8rem; }
  h1 { font-size: 1.6rem; }
 .collection-list { padding-left: 40px !important; padding-right: 40px !important; }
