/** Shopify CDN: Minification failed

Line 300:0 Unexpected "}"

**/
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

/* Collection page reset */
.template-collection {
  background: #fff !important;
}

/* Hide normal Shopify header/footer on collection page only */
.template-collection .site-header,
.template-collection .site-footer,
.template-collection #shopify-section-header,
.template-collection #shopify-section-footer {
  display: none !important;
}

.template-collection main,
.template-collection .main-content,
.template-collection #MainContent {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Main custom shop page wrapper */
.winny-shop-page {
  --font: "Archivo Black", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --bg: #fff;
  --ink: #000;

  --brand-size: 26.2px;
  --ticker-size: 26.2px;
  --checkout-size: 22.2px;

  --line: 2px;
  --ticker-height: 56px;
  --speed: 16s;

  min-height: 200vh;
  position: relative;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  overflow: visible;
}

.winny-shop-page * {
  box-sizing: border-box;
}

/* Fixed background image */
.winny-shop-page .bg-frame {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: min(800px, 86vw);
  height: 70vh;
  transform: translate(-50%, -50%) !important;
  z-index: 0;
  pointer-events: none;
  background-image: url("https://assets.codepen.io/16101169/IMG_1007.JPG");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.winny-shop-page .bg-image {
  display: none !important;
}

/* Top brand + ticker */
.winny-shop-page .top {
  position: relative;
  z-index: 5;
  padding-top: 22px;
  display: grid;
  place-items: center;
  gap: 10px;
}

/* Top brand */
.winny-shop-page .brand {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--brand-size);
  color: #000;
  text-decoration: none;
  z-index: 5;
  text-shadow: none;
}

.winny-shop-page .brand:hover {
  opacity: .85;
}

/* Shop ticker row */
.winny-shop-page .ticker {
  width: 100%;
  top: 35px;
  height: var(--ticker-height);
  overflow: hidden;
  text-decoration: none;
  display: block;
  position: relative;
}

.winny-shop-page .ticker--shop {
  background: rgba(255,255,255,0.85);
  border-top: var(--line) solid rgba(0,0,0,1);
  border-bottom: var(--line) solid rgba(0,0,0,1);
  color: rgba(0,0,0,1);
}

.winny-shop-page .ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  animation: winny-shop-marquee var(--speed) linear infinite;
}

.winny-shop-page .ticker__content {
  font-size: var(--ticker-size);
  line-height: 1;
  padding: 0 14px;
}

@keyframes winny-shop-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Checkout rail, black version */
.winny-shop-page .checkout-link {
  position: fixed;
  top: 29px;
  right: 22px;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  color: var(--ink);
}

.winny-shop-page .checkout-text {
  font-size: var(--checkout-size);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.4px;
  margin-top: 90px;
  margin-right: -45px;
}

.winny-shop-page .lakshmi {
  width: 150px;
  height: auto;
  display: block;
  margin-top: 50px;
  opacity: 1;
}

/* Existing Shopify product grid area */
.winny-collection-products {
  position: relative;
  z-index: 4;
  padding-top: 180px;
  padding-bottom: 120px;
}

/* Hide the default Shopify collection title/count/filter area */
.winny-collection-products .collection-header,
.winny-collection-products .filters-toolbar-wrapper {
  display: none !important;
}

/* Keep Shopify product grid above the background */
.winny-collection-products #Collection,
.winny-collection-products .page-width {
  position: relative;
  z-index: 4;
  background: transparent !important;
}

/* Optional: make the product grid breathe a bit */
.winny-collection-products .grid--view-items {
  margin-top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .winny-shop-page .ticker__track {
    animation: none;
  }
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .winny-shop-page {
    --ticker-height: 52px;
    --brand-size: 22px;
    --ticker-size: 22px;
    --checkout-size: 18px;
  }

  .winny-shop-page .bg-image {
    width: 92vw;
    margin-top: 20px;
  }

  .winny-shop-page .lakshmi {
    width: 90px;
    margin-top: 8px;
  }

  .winny-shop-page .checkout-link {
    top: 12px;
    right: 8px;
  }

  .winny-shop-page .checkout-text {
    margin-top: 45px;
    margin-right: -28px;
  }

  .winny-collection-products {
    padding-top: 52vh;
  }
}
/* FORCE product grid lower */
.template-collection #Collection {
  margin-top: 180px !important;
}
/* Force collection page to show 1 product per row */
.template-collection #Collection .grid__item {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  margin-bottom: 90px !important;
}

/* Center each product card */
.template-collection #Collection .grid-view-item {
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* TRUE fixed background image for the collection page */
body.template-collection::before {
  content: "";
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: min(800px, 86vw);
  height: 70vh;
  transform: translate(-50%, -50%) !important;
  background-image: url("https://assets.codepen.io/16101169/IMG_1007.JPG");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

/* Hide the old background element inside the page */
.winny-shop-page .bg-frame,
.winny-shop-page .bg-image {
  display: none !important;
}

/* Make sure the actual page content sits above the fixed background */
.winny-shop-page {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.winny-collection-products,
.template-collection #Collection,
.template-collection #Collection .grid,
.template-collection #Collection .grid__item {
  position: relative;
  z-index: 2;
}

.winny-shop-page .top,
.winny-shop-page .ticker,
}

/* MOBILE ONLY: force Lakshmi checkout button lower on collection page */
@media only screen and (max-width: 720px) {
  body.template-collection a.checkout-link,
  body.template-collection .checkout-link,
  .template-collection a.checkout-link,
  .template-collection .checkout-link {
    position: fixed !important;
    top: 185px !important;
    right: 12px !important;
    z-index: 9999 !important;
  }

  body.template-collection .checkout-link .lakshmi,
  .template-collection .checkout-link .lakshmi {
    width: 90px !important;
    margin-top: 0 !important;
  }

  body.template-collection .checkout-link .checkout-text,
  .template-collection .checkout-link .checkout-text {
    margin-top: 45px !important;
    margin-right: -28px !important;
  }
}