/** Shopify CDN: Minification failed

Line 484:104 Unexpected "/"
Line 949:0 Expected "}" to go with "{"

**/
@charset "UTF-8";


/* BROKEN PAGEPILOT FIXES - MAY 21 2026 */ 


/* ============================================
   1. DESIGN TOKENS (SINGLE SOURCE OF TRUTH)
   ============================================ */

:root {

  /* Typography */
  --heading-font-size: 18px;

  --pp-body-font-size: 18px;

  --pp-heading-font-size: 1.65rem;
  --pp-heading-lg: 2.25rem;
  --pp-heading-xl: 2.75rem;
  --pp-heading-2xl: 3.25rem;

  /* UI */
  --pp-border-radius: 16px;

  /* Colors */
  --pp-text-color: #111111;
  --pp-text-muted: #666666;
  --pp-heading-color: #111111;

  --pp-brand-color: #2531B7;
  --pp-brand-color-hover: #1b2590;

  --pp-accent-color: #00C26F;

  --pp-border-color: rgba(0, 0, 0, 0.08);

  /* Buttons */
  --pp-button-background-color: #5952e1;
  --pp-button-hover-color: #3745a5;
  --pp-button-text-color: #ffffff;

  --pp-button-radius: 24px;

  /* Layout */
  --pp-section-padding: 60px;
  --pp-gap: 40px;
}


/* ============================================
   2. GLOBAL UI FIXES
   ============================================ */

/* Card / review radius consistency */
.pp-border,
.pp-review,
.pp-border-solid {
  border-radius: var(--pp-border-radius) !important;
  overflow: hidden;
}


.quantity .quantity__button {background-color: #0000!important;}


/* ============================================
   3. REVIEW IMAGE STYLING
   ============================================ */

.pp-review img {
  width: 150px;
  height: 150px;
  border-radius: 999px !important;
  object-fit: cover;
  margin: 12px auto 0;
  display: block;
}


/* ============================================
   PAGEPILOT BUTTON SYSTEM (STABLE VERSION)
   ============================================ */

.pagepilot-button.pp-button--primary {
  position: relative;
  overflow: hidden;

  background-color: var(--pp-button-background-color) !important;
  color: var(--pp-button-text-color) !important;

  border-radius: var(--pp-button-radius) !important;

  transition: background-color 0.25s ease;

  /* FIX: establishes proper stacking context */
  isolation: isolate;
}

/* ============================================
   HOVER ANIMATION LAYER
   ============================================ */

.pagepilot-button.pp-button--primary {
  position: relative;
  overflow: hidden;
  border-radius: 999px !important;
  isolation: isolate;
  background-color: #5952e1 !important;
  color: #fff !important;
}

/* hover layer */
.pagepilot-button.pp-button--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;

  background: #3745a5;

  transition: width 0.32s ease;

  z-index: -1;
}

/* hover state */
.pagepilot-button.pp-button--primary:hover::before {
  width: 100%;
}

:root {
  --pp-button-radius: 999px !important;
}

/* enforce on all PP buttons */
.pagepilot-button.pp-button--primary,
.pagepilot-button.pp-button--primary::before,
.pagepilot-button.pp-button--primary::after {
  border-radius: 999px !important;
}

/* ============================================
   ACTIVE STATE
   ============================================ */

.pagepilot-button.pp-button--primary:active {
  transform: translateY(1px);
}




/* ============================================
   7. VARIANT STYLING
   ============================================ */

.pp-variant,
.pp-variant-selector,
select {
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  font-size: 14px !important;
}


/* OVI SPECIFIC SYLING (TO EVENTUALLY REPLACE PP) */ 

/* =========================
   OVI BUTTON BASE
   ========================= */

.ovi-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 22px 38px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;

  transition: color 0.2s ease;
  overflow: hidden;
  z-index: 1;
}

.ovi-button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* primary style */
.ovi-button-primary {
  background-color: #5952e1;
  color: #ffffff;
}

/* =========================
   SOFT RADIATING HOVER LAYER
   ========================= */

.ovi-button-primary::before {
  content: "";
  position: absolute;
  inset: -2px;

  /* softer “incoming” color */
  background: linear-gradient(
    90deg,
    #3745a5 0%,
    #3745a5 55%,
    rgba(55, 69, 165, 0.85) 100%
  );

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: -1;

  /* this is the “soft edge” feel */
  filter: blur(0.5px);
  opacity: 0.95;
}

/* hover state */
.ovi-button-primary:hover::before {
  transform: scaleX(1);
}

/* keep text above animation */
.ovi-button-primary span,
.ovi-button-primary {
  position: relative;
  z-index: 2;
}

.ovi-faq-cta {
  text-align: center;
  padding: 40px 20px;
}

.ovi-faq-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 58px;
  color: #111111;
}

/* button row */
.ovi-button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* secondary button style */
.ovi-button-secondary {
  background: transparent;
  color: #111111;

  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 999px;

  position: relative;
  overflow: hidden;

  transition: all 0.32s ease;
}

.ovi-button-secondary::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    90deg,
    rgba(55, 69, 165, 0.12) 0%,
    rgba(55, 69, 165, 0.18) 60%,
    rgba(55, 69, 165, 0.25) 100%
  );

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: -1;
  filter: blur(0.3px);
  opacity: 1;
}

.ovi-button-secondary:hover {
  border-color: #3745a5;
  color: #3745a5;
}

.ovi-button-secondary:hover::before {
  transform: scaleX(1);
}





/* HOMEPAGE CUSTOMIZATIONS */ 

/* line height on hero slider */
@media (min-width: 1200px) {
  .slideshow .slideshow__slide-heading {
    font-size: 66px !important;
    line-height: 1;
  }
  .slideshow .slideshow__slide-description {
    font-size: 24px!important;
    line-height: 1.2!important;
  }
} /* Align slideshow images to bottom center */
.slideshow__slide-media {
  object-position: center bottom !important;
} /* Align pug/vacuum image to bottom */
.image-with-text__image {
  object-position: center bottom !important;
} /* Adjust featured product layout */
.product-media {
  width: calc(46.383% - 16px)!important;
  margin-right: 62px!important;
}
.product-media + .product-form {
  width: calc(53.617% - 16px)!important;
} /* reduce padding on heading section */

@media (min-width: 768px) {
  .text-section {
    padding-bottom: 24px!important;
  }
} /* reduce size of icons */
@media (min-width: 768px) {
  .benefits .benefits__icon-wrapper {
    width: 70px!important;
    height: 70px!important;
    margin-bottom: 14px!important;
  }

.article-card__author {
  display: none!important;
}

} /* reduce newsletter padding */
@media (min-width: 992px) {
  .newsletter
    .newsletter__wrapper.newsletter__wrapper--bg-img
    .newsletter__content {
    padding-top: min(8.5%, 206px)!important;
    padding-bottom: min(8.5%, 206px)!important;
  }
} /* remove opaque block from button section */
.banner .banner__content {
  padding: 0px !important;
  background: rgba(255, 255, 255, 0) !important;
} /* END HOMEPAGE CUSTOMIZATIONS */ 

/* CONTACT PAGE CUSTOMIZATIONS */
.store-location .store-location__image {
  object-position: center bottom !important;
} /* change footer menu titles */
.footer .footer__navigation-heading {
  color: white !important;
}
body {
  background-color: #f0efec !important;
}

/* Reduce padding between product description and vendor info on desktop */
@media (min-width: 992px) {
  .product-description-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 4px !important;
  }

  .product-vendor {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 14px !important;
  }
}

/* Hide only author (second info item) */
.article-sidebar__article-info-item:last-child {
  display: none !important;
}

/* Hide author in predictive search */
.predictive-search .predictive-search__article-card-subheading-item:last-child {
  display: none !important;
}


/* adjust theme headings to match PP */

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: calc(var(--pp-heading-font-size)*1.5)!important;
    color: var(--pp-heading-color);
    font-weight: 600!important;
    line-height: 1!important;
  }

  /* customize color labels */


  /* White & Green */
label[for*="color-value-white-green"] {
  --swatch-color: #bcdac0 !important;
}

/* White & Pink */
label[for*="color-value-white-pink"] {
  --swatch-color: #f6a4b7 !important;
}

/* White & Blue */
label[for*="color-value-white-blue"] {
  --swatch-color: #aac4de !important;
}

/* Black (exact match) */
label[for$="color-value-black"] {
  --swatch-color: #111111 !important;
}

/* Black & Blue (exact match) */
label[for$="color-value-black-blue"] {
  --swatch-color: #5c9fe0 !important;
}





/* Fix quanity buttons on shop page */

.product-quantity .product-quantity__button {color: #fff!important;}


/* Make all buttons use a font weight of 600 */
button,
.shopify-payment-button__button,
.button,
.btn,
input[type="submit"],
a.button {
  font-weight: 600 !important;
}



/* PRODUCT TEMPLATE PAGE CUSTOMIZATIONS */


body.template-product {
  background-color: #f0efec!important;
}

.product-sticky-add-to-cart {
  background-color: #fff!important;
}

.pp-w-auto pp-h-auto pp-object-contain pp-object-center pp-max-w-full pp-max-h-full pp-absolute pp-top-1/2 pp-left-1/2 -pp-translate-x-1/2 -pp-translate-y-1/2 {
  border-radius: 20px!important;
}

/* MOBILE CUSTOMIZATIONS */
@media (max-width: 1199.98px) {
  .product-media {
    width: 100% !important;
  margin-right: 0 !important;}

.product-media + .product-form {
    width: 100%!important;}

}

/* --- Slideshow height: mobile override --- */
@media (max-width: 749px) {
  /* 1) Override the variable most themes use */
  .slideshow.js-slideshow,
  .js-slideshow.slideshow {
    --height-mobile: 60vh !important;   /* Try 60–70vh to taste */
  }

  /* 2) Fallback: force inner containers to respect the height */
  .slideshow .slideshow__container,
  .slideshow .slideshow__slider,
  .slideshow .slideshow__slide,
  .slideshow .slideshow__slide-box,
  .slideshow .slideshow__media-wrapper,
  .slideshow .slideshow__media {
    height: 60vh !important;
    max-height: 60vh !important;
  }

  /* 3) Ensure image/video fills the tighter box nicely */
  .slideshow .slideshow__media img,
  .slideshow .slideshow__media video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}



/* ==== OCU Upsell Widget Custom Styles ==== */


/* OCU Product Page Upsell Styling */
#ocu-widget .ocu-widget {
  font-family: inherit !important;
  color: #262626;
}

/* Main headline */
#ocu-widget .ocu-headline,
#ocu-widget .ocu-title {
  margin-bottom: 18px !important;
}

#ocu-widget .ocu-title p,
#ocu-widget .ocu-title span {
  font-family: inherit !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #262626 !important;
}

.ocu-product-card__container .ocu-title-container--horizontal[data-v-773f8dc3] {
  max-width: 100%!important;
}

/* Product card container */
#ocu-widget .ocu-product-card__container {
  border: 0 !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0!important;
  padding: 15px !important;
  margin-bottom: 16px !important;
  align-items: center !important;
}

/* Product image */
#ocu-widget .ocu-image__wrapper {
  width: 130px !important;
  min-width: 130px !important;
  height: 130px !important;
  border-radius: 20px !important;
  background: #f7f7f4 !important;
  padding: 0px !important;
  overflow: hidden !important;
}

#ocu-widget .ocu-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Product title */
#ocu-widget .ocu-name p,
#ocu-widget .ocu-name span {
  font-family: inherit !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #262626 !important;
}

/* Middle content spacing */
#ocu-widget .ocu-card__container_middle {
 padding-left: 14px !important;
  padding-right: 12px !important;
  flex: 0 1 420px !important;
  max-width: 100%;
}

/* Variant dropdown wrapper */
#ocu-widget .ocu-variant__dropdown-wrapper {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/* Variant dropdown */
#ocu-widget .ocu-variant__dropdown {
  border: 1px solid #d8d8d2 !important;
  border-radius: 999px !important;
  background-color: #ffffff !important;
  font-family: inherit !important;
  color: #262626 !important;
  box-shadow: none !important;
  outline: none !important;
  min-height: 42px !important;
  padding: 9px 38px 9px 16px !important;
  font-size: 14px !important;
}

/* Checkbox/Add to cart row */
#ocu-widget .ocu-checkbox__label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 4px 0 !important;
  cursor: pointer !important;
}

#ocu-widget .ocu-checkbox__indicator {
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  border: 2px solid #262626 !important;
  background: #ffffff !important;
}


#ocu-widget .ocu-checkbox__input:checked + .ocu-checkbox__indicator {
  background: #262626 !important;
  border-color: #262626 !important;
}

#ocu-widget .ocu-checkbox--width p,
#ocu-widget .ocu-checkbox--width span {
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #262626 !important;
}

/* Price area */
#ocu-widget .ocu-card__container_right {
  min-width: 150px !important;
  text-align: right !important;
}

#ocu-widget .ocu-prices {
  align-items: flex-end !important;
}

#ocu-widget .ocu-price-block {
  display: flex !important;
  gap: 10px !important;
  justify-content: flex-end !important;
  align-items: baseline !important;
}

#ocu-widget .ocu-price--was p {
  font-family: inherit !important;
  font-size: 14px !important;
  color: #8b8b84 !important;
  text-decoration: line-through !important;
}

#ocu-widget .ocu-price--now p {
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #262626 !important;
}

/* Savings badge */
#ocu-widget .ocu-savings-block {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-top: 8px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: #e9f7ec !important;
}

#ocu-widget .ocu-savings-block span,
#ocu-widget .ocu-savings-block p {
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #2f9e44 !important;
}

/* Mobile */
@media (max-width: 749px) {
  #ocu-widget .ocu-product-card__container {
    display: grid !important;
    grid-template-columns: 90px 1fr !important;
    gap: 14px !important;
    padding: 18px !important; }

  

  #ocu-widget .ocu-image__wrapper {
    width: 90px !important;
    min-width: 90px !important;
    height: 90px !important;
  }

  #ocu-widget .ocu-card__container_middle {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #ocu-widget .ocu-card__container_right {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  #ocu-widget .ocu-prices,
  #ocu-widget .ocu-price-block {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  #ocu-widget .ocu-title p,
  #ocu-widget .ocu-title span {
    font-size: 22px !important;
  }

  #ocu-widget .ocu-name p,
  #ocu-widget .ocu-name span {
    font-size: 18px !important;
  }

  /* Prevent the middle area from stretching too wide */
#ocu-widget .ocu-product-card__container {
  display: grid !important;
  grid-template-columns: 120px minmax(260px, 420px) 180px !important;
  column-gap: 18px !important;
}

#ocu-widget .ocu-card__container_middle {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#ocu-widget .ocu-card__container_right {
  margin-left: 0 !important;
}


/* ==== 
#ocu-widget {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 24px;
  margin-top: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}==== */

/* Heading */
/* ==== 
#ocu-widget .ocu-title p span {
  font-family: var(--font-heading-family, inherit)!important;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-foreground, #222);
  display: block;
  text-align: left;
  margin-bottom: 2px!important;
}==== */

/* General text styling to match theme */
/* ==== 
#ocu-widget p, 
#ocu-widget span, 
#ocu-widget label {
  font-family: var(--font-body-family, inherit);
  color: var(--color-foreground, #222);
  font-size: 0.9rem!important;
  line-height: 1.5;
}
==== */
/* Product cards inside the box */
/* ==== 
#ocu-widget .ocu-product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.2s ease-in-out;
padding-bottom: 0px!important;}
==== */
/* ==== 
#ocu-widget .ocu-product-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
==== */
/* Optional: Add subtle separation between multiple offers */
/* ==== 
#ocu-widget .ocu-product-card + .ocu-product-card {
  margin-top: 16px;
}
==== */
/* ==== 
.ocu-widget {
  margin-top: 0px!important;
}
==== */
/* Hide OCU total savings summary on cart page only */
/* ==== 
.template-cart .ocu-total-savings,
.template-cart .ocu-cart__total-savings,
.template-cart div[data-ocu-total-savings] {
  display: none !important;
}
==== */




/* ============================================
   PagePilot Variables Recreation
   ============================================ */
:root {
  /* --- Brand colors --- */
  --pp-brand-color: #2531B7;
  --pp-brand-color-hover: #1b2590;
  --pp-accent-color: #00C26F;
  --pp-border-color: rgba(0, 0, 0, 0.08);

  /* --- Text colors --- */
  --pp-text-color: #111111;
  --pp-text-muted: #666666;
  --pp-heading-color: #111111;

  /* --- Font sizes --- */
  --pp-body-font-size: 18px;
  --pp-heading-font-size: 1.65rem;
  --pp-heading-lg: 2.25rem;
  --pp-heading-xl: 2.75rem;
  --pp-heading-2xl: 3.25rem;

  /* --- Border radii --- */
  --pp-border-radius: 16px;
  --pp-border-radius-sm: 8px;

  /* --- Buttons --- */
  --pp-button-padding-y: 14px;
  --pp-button-padding-x: 32px;
  --pp-button-radius: 24px;
  --pp-button-font-weight: 600;

  /* --- Layout spacing --- */
  --pp-section-padding: 60px;
  --pp-gap: 40px;


  /* --- Buttons --- */
--pp-button-background-color: #5952e1;
--pp-button-text-color: #ffffff
}

/* PagePilot button hover states - circular reveal */
.pp-button,
.pagepilot .button,
[class*="pp-"] .button,
[class*="pp-"] button {
  position: relative;
  overflow: hidden;
  background-color: #5952e1 !important;
  border-color: #5952e1 !important;
  color: #ffffff !important;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}

.pp-button::before,
.pagepilot .button::before,
[class*="pp-"] .button::before,
[class*="pp-"] button::before {
  content: "";
  position: absolute;
  width: 260%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  background-color: #2f28b8;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  transition: transform 0.45s ease;
  z-index: -1;
}

.pp-button:hover,
.pagepilot .button:hover,
[class*="pp-"] .button:hover,
[class*="pp-"] button:hover {
  color: #ffffff !important;
  border-color: #2f28b8 !important;
}

.pp-button:hover::before,
.pagepilot .button:hover::before,
[class*="pp-"] .button:hover::before,
[class*="pp-"] button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.pagepilot-button.pp-button--primary {
  border-radius: 50px !important;
}

.pagepilot-button.pp-button--primary,
.pagepilot-button.pp-button--primary:hover {
  border-radius: 50px !important;
}

.product-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-benefits__item-icon {
  width: 35px!important;
  height: 35px!important;
  margin: 0 auto;
}
