/** Shopify CDN: Minification failed

Line 236:14 Expected ":"
Line 236:16 Expected identifier but found "#212121"

**/
/* Keep badges from floating above sticky headers/filters on mobile */
product-card .media-bg{
  isolation: isolate;
}

/* =========================
   Layrs Badges (global)
   Keeps ALL your sizing/colors
   ========================= */

/* Base layout (works everywhere) */
.layrs-badges{
  position: absolute;
  top: 0.5rem;     /* keep */
  right: 0.5rem;   /* keep */
  z-index: 30;     /* keep */
  display: flex;
  flex-direction: column;
  gap: 0.15rem;    /* keep */
  pointer-events: none;
}

.layrs-badge{
  height: 22px;        /* keep */
  padding: 6px 12px;   /* keep */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;  /* keep */
  font-size: 12px;     /* keep */
  font-weight: 600;    /* keep */
  letter-spacing: .02em; /* keep */
  text-transform: capitalize; /* keep */
  line-height: 1;      /* keep */
}

/* Variants (unchanged) */
.layrs-badge--sale{
  background: #e53935;
  color: #fff;
}

.layrs-badge--new{
  background: #212121;
  color: #fff;
  border-color: #fafafa;
}

.layrs-badge--best-seller{
  background: rgba(0,0,0,.72);
  color: #fff;
}

.layrs-badge--last-one{
  background:rgb(255, 123, 0);
  color: #fff;
}

.layrs-badge--pre-order{
  background: rgba(0,0,0,.72);
  color: #fff;
}

/* =========================
   Product card + PDP alignment rules
   (NO size/color changes)
   ========================= */

/* Cards: always top-right (your current behaviour) */
product-card .layrs-badges{
  top: 0.5rem;    /* keep */
  right: 0.5rem;  /* keep */
  left: auto;
}

/* PDP: mobile top-right, desktop top-left */
@media (min-width: 1024px){
  [id^="MainProduct-"] .layrs-badges{
    right: auto;
    left: 0.5rem;
  }
}

/* =========================
   Last One Pulse Animation
   ========================= */

@keyframes layrs-last-one-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.5);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 6px rgba(255, 123, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
  }
}

.layrs-badge--last-one{
  animation: layrs-last-one-pulse 2s ease-in-out infinite;
}

product-card .layrs-card-brand .layrs-brand-logo__img{
    height: 20px !important;
    width: auto !important;
    max-width: 100px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Desktop only: sizes bar at bottom of image */
@media (min-width: 1024px){
  product-card .list-sizes--desktop{
    font-size: 14px !important;
    line-height: 1.1 !important;
  }
}

/* Tighten mobile-only size stack (the overlay list on the image) */
@media (max-width: 1023px){
  product-card .list-sizes.mobile{
    gap: 0.25rem;              /* adjust: 0.125rem / 0.25rem / 0.375rem */
    font-size: 12px !important;
  }

  product-card .list-sizes.mobile span{
    line-height: 1.15;         /* tighten vertical spacing */
  }
}

product-card .layrs-quick-add-icon {
  position: absolute !important;
  right: 0.9rem !important;
  bottom: 0.9rem !important;

  z-index: 9999 !important;
  pointer-events: auto !important;

  width: 42px;
  height: 42px;

  border-radius: 999px;
  background: rgba(17,17,17,.96);
  color: #fafafa;

  border: 1px solid #fafafa9d;

  box-shadow:
    0 6px 18px rgba(0,0,0,.24),
    0 2px 6px rgba(0,0,0,.16);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    transform .18s ease,
    opacity .18s ease,
    background .18s ease;
}

product-card .layrs-quick-add-icon:hover {
  transform: scale(1.05);
}

product-card .layrs-quick-add-icon:active {
  transform: scale(.96);
}

product-card .layrs-quick-add-icon-svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  product-card .layrs-quick-add-icon {
    right: 0.55rem !important;
    bottom: 0.55rem !important;

    width: 38px;
    height: 38px;
  }

  product-card .layrs-quick-add-icon-svg {
    width: 16px;
    height: 16px;
  }
}

.layrs-cart-toast {
  position: fixed;
  left: 50%;
  top: 85%;
  z-index: 2147483001 !important;
  transform: translate(-50%, -50%);
  background: #fafafa;
  color: #212121;
  padding: 16px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 26px rgba(0,0,0,.28);
}

.layrs-cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.layrs-cart-toast__icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border-color; #212121;
  background: #fafafa;
  color: #212121;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 1023px) {
  .collection-layout-switch,
  [aria-controls="filters-drawer"] {
    position: relative;
    z-index: 60;
  }
}

.layrs-size-sheet {
  position: fixed;
  inset: 0;
  z-index: 2147483000 !important;
  pointer-events: none;
}

.layrs-size-sheet.is-open {
  pointer-events: auto;
}

.layrs-size-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .22s ease;
}

.layrs-size-sheet.is-open .layrs-size-sheet__overlay {
  opacity: 1;
}

.layrs-size-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FAFAFA;
  padding: 22px 16px 24px;
  border-radius: 9px 9px 0 0;
  transform: translateY(100%);
  transition: transform .22s ease;
}

.layrs-size-sheet.is-open .layrs-size-sheet__panel {
  transform: translateY(0);
}

.layrs-size-sheet__close {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  border: 0;
  background: transparent;

  cursor: pointer;

  line-height: 1;
  font-size: 28px;

  z-index: 10;
}

.layrs-size-sheet__close::before {
  content: "";
  position: absolute;
  inset: 0;
}

.layrs-size-sheet__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .55;
}

.layrs-size-sheet__title {
  margin: 0 40px 16px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.layrs-size-sheet__sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.layrs-size-sheet__size {
  min-height: 44px;
  border: 1px solid #d8d8d8;
  background: #FAFAFA;
  color: #212121;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.layrs-size-sheet__size:hover {
  border-color: #FAFAFA;
  background: #212121;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #FAFAFA;
}

@media (min-width: 1024px) {
  .layrs-size-sheet__panel {
    left: 50%;
    right: auto;
    bottom: 36px;
    width: min(420px, calc(100vw - 40px));
    border-radius: 12px;
    transform: translate(-50%, 20px);
  }

  .layrs-size-sheet.is-open .layrs-size-sheet__panel {
    transform: translate(-50%, 0);
  }
}

.layrs-size-sheet {
  z-index: 2147483646 !important;
}

.layrs-size-sheet__overlay,
.layrs-size-sheet__panel {
  z-index: 2147483646 !important;
}

product-card .layrs-quick-add-icon.is-adding {
  background: #f59e0b !important; /* amber */
  border-color: #f59e0b !important;
  color: #212121 !important;
}

product-card .layrs-quick-add-icon.is-added {
  background: #fafafa !important;
  border-color: #fafafa !important;
  color: #212121 !important;

  width: 40px !important;
  height: 40px !important;

  padding: 0 !important;

  border-radius: 999px;

  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;

  padding-top: 1px;
}

product-card .layrs-quick-add-icon.is-added svg {
  display: none;
}

.layrs-quick-add-status {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;

  text-transform: uppercase;

  position: relative;
  top: -0.5px;
}

product-card .layrs-quick-add-icon.is-added,
product-card .layrs-quick-add-icon.is-adding {
  display: flex;
  align-items: center;
  justify-content: center;
}

body:has(.layrs-size-sheet.is-open) iframe,
body:has(.layrs-size-sheet.is-open) .gorgias-chat-widget,
body:has(.layrs-size-sheet.is-open) [class*="gorgias"],
body:has(.layrs-size-sheet.is-open) [id*="gorgias"],
body:has(.layrs-size-sheet.is-open) [id*="ShopifyGoogle"],
body:has(.layrs-size-sheet.is-open) [class*="ShopifyGoogle"],
body:has(.layrs-size-sheet.is-open) [class*="store-quality"],
body:has(.layrs-size-sheet.is-open) [id*="store-quality"],
body:has(.layrs-size-sheet.is-open) [aria-label*="Google"],
body:has(.layrs-size-sheet.is-open) [aria-label*="Store"] {
  z-index: 1 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}