/** Shopify CDN: Minification failed

Line 364:0 Unexpected "}"

**/
/* ==========================================================================
   COLLECTION PAGE (PREMIUM)
   Self-contained: works whether or not homepage-premium.css is also
   installed, but reuses its --hp-gold/--hp-ease tokens and .hp-btn /
   .hp-card classes when present (same shared card + button system).
   ========================================================================== */

:root {
  --cp-gold: #b3924a;
  --cp-black: #111111;
  --cp-border: #ececec;
  --cp-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Banner ---------- */
.cp-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.cp-banner__media,
.cp-banner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cp-banner__overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: var(--cp-overlay-color, #000000);
  opacity: var(--cp-overlay-opacity, 0.25);
}
.cp-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding: 24px;
}
.cp-banner__title {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.cp-banner__breadcrumb {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.cp-banner__breadcrumb a { color: inherit; text-decoration: none; }
.cp-banner__breadcrumb a:hover { text-decoration: underline; }
.cp-banner__breadcrumb-sep { opacity: 0.6; }

/* ---------- Quick links bar ---------- */
.cp-quicklinks { width: 100%; }
.cp-quicklinks__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.cp-quicklinks__link {
  color: var(--cp-quicklinks-text, #ffffff);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
  transition: color 250ms ease;
}
.cp-quicklinks__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 250ms ease;
}
.cp-quicklinks__link:hover,
.cp-quicklinks__link.is-active {
  color: var(--cp-quicklinks-hover, #111111);
}
.cp-quicklinks__link:hover::after,
.cp-quicklinks__link.is-active::after {
  transform: scaleX(1);
}

/* ---------- Toolbar ---------- */
.cp-grid-section {
  margin: 0 auto;
}
.cp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cp-border);
  margin-bottom: 28px;
}
.cp-toolbar__count { font-size: 13px; color: #666666; margin: 0; }
.cp-toolbar__controls { display: flex; align-items: center; gap: 14px; }

.cp-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--cp-border);
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 250ms ease;
}
.cp-filter-toggle:hover { border-color: var(--cp-black); }

.cp-sort__select {
  border: 1px solid var(--cp-border);
  background: #ffffff;
  padding: 9px 14px;
  font-size: 13px;
  cursor: pointer;
}

/* ---------- Active filter pills ---------- */
.cp-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.cp-active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--cp-black);
  text-decoration: none;
}
.cp-active-filter-pill:hover { background: #ececec; }
.cp-active-filters__clear {
  font-size: 12px;
  text-decoration: underline;
  color: #777777;
}

/* ---------- Filter drawer ---------- */
.cp-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.cp-filter-drawer.is-open { pointer-events: auto; visibility: visible; }
.cp-filter-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 350ms var(--cp-ease);
}
.cp-filter-drawer.is-open .cp-filter-drawer__overlay { opacity: 1; }
.cp-filter-drawer__panel {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 400ms var(--cp-ease);
  overflow-y: auto;
}
.cp-filter-drawer.is-open .cp-filter-drawer__panel { transform: translateX(0); }
.cp-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--cp-border);
}
.cp-filter-drawer__header h2 { font-size: 16px; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.cp-filter-drawer__close { background: none; border: none; cursor: pointer; }
.cp-filter-drawer__form { flex: 1; padding: 20px; }
.cp-filter-group { margin-bottom: 28px; }
.cp-filter-group__heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 14px; }
.cp-filter-group__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cp-filter-checkbox { display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; }
.cp-filter-checkbox.is-disabled { opacity: 0.4; cursor: not-allowed; }
.cp-filter-checkbox input { width: 16px; height: 16px; accent-color: var(--cp-gold); }
.cp-filter-price { display: flex; gap: 12px; }
.cp-filter-price label { flex: 1; font-size: 12px; color: #666666; display: flex; flex-direction: column; gap: 6px; }
.cp-filter-price input { border: 1px solid var(--cp-border); padding: 8px 10px; font-size: 13px; }
.cp-filter-drawer__footer {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-top: 1px solid var(--cp-border);
}
.cp-filter-drawer__footer .hp-btn { flex: 1; }

/* Product grid + card styles are appended below from the shared
   homepage-premium.css card system, so this file works standalone. */

/* ---------- Pagination ---------- */
.cp-toolbar__showing { text-align: center; font-size: 13px; color: #777777; margin: 40px 0 24px; }
.cp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.cp-pagination__page,
.cp-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  color: var(--cp-black);
  text-decoration: none;
  border-radius: 50%;
  transition: background 250ms ease;
}
.cp-pagination__page:hover,
.cp-pagination__arrow:hover { background: #f5f5f5; }
.cp-pagination__page.is-active { background: var(--cp-gold); color: #ffffff; }

.cp-empty-state { text-align: center; padding: 80px 20px; }
.cp-empty-state p { font-size: 14px; color: #777777; margin-bottom: 20px; }

/* Fallback button styles in case homepage-premium.css (.hp-btn) is not installed */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 300ms ease;
}
.hp-btn--solid { background: var(--cp-gold); color: #ffffff; }
.hp-btn--solid:hover { opacity: 0.9; }
.hp-btn--outline { background: transparent; border-color: var(--hp-btn-outline, #111111); color: var(--hp-btn-outline, #111111); }
/* ---------- Product card (shared: Featured Tabs + Our Favorites) ---------- */
.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
@media screen and (min-width: 990px) {
  .hp-product-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
}

.hp-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 420ms var(--hp-ease);
}
.hp-card:hover { transform: translateY(-6px); }

.hp-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2efe9;
  border-radius: var(--hp-card-radius, 2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 420ms var(--hp-ease);
}
.hp-card:hover .hp-card__image-wrap {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.18);
}
.hp-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 500ms var(--hp-ease), transform 900ms var(--hp-ease);
}
.hp-card__image--primary { opacity: 1; transform: scale(1); }
.hp-card__image--secondary { opacity: 0; }
.hp-card:hover .hp-card__image--primary { opacity: 0; transform: scale(1.06); }
.hp-card:hover .hp-card__image--secondary { opacity: 1; transform: scale(1.06); }

.hp-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 9px;
  color: #ffffff;
}
.hp-card__badge--sale { background: #c0392b; }
.hp-card__badge--soldout { background: #777777; }

.hp-card__quick-view {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 10px);
  opacity: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(17, 17, 17, 0.85);
  border-radius: 999px;
  color: #111111;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 20px;
  white-space: nowrap;
  transition: opacity 320ms var(--hp-ease), transform 320ms var(--hp-ease), background 250ms ease, color 250ms ease, padding 250ms ease;
}
.hp-card:hover .hp-card__quick-view:hover {
  background: #111111;
  color: #ffffff;
  padding-left: 24px;
  padding-right: 24px;
}
}
.hp-card:hover .hp-card__quick-view {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hp-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 320ms var(--hp-ease), transform 320ms var(--hp-ease);
}
.hp-card:hover .hp-card__wishlist { opacity: 1; transform: translateY(0); }
.hp-card__wishlist svg { width: 15px; height: 15px; }

.hp-card__info { padding-top: 14px; text-align: center; font-family: inherit; }
.hp-card__title {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--hp-card-title-color, var(--hp-black));
}
.hp-card__price { font-size: 13px; color: var(--hp-card-price-color, var(--hp-black)); }
.hp-card__price--sale { color: #c0392b; margin-right: 6px; }
.hp-card__price--compare { color: #999999; text-decoration: line-through; }

.hp-card__swatches {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 8px;
}
.hp-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

