/** Shopify CDN: Minification failed

Line 268:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:8, SCOPED:FALSE) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:9, SCOPED:FALSE) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:10, SCOPED:FALSE) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:header (INDEX:12, SCOPED:FALSE) */
.header-logo {
    margin-left: -22px;
  }

  @media (max-width: 767px) {
    .header-logo {
      margin-left: -18px;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:13, SCOPED:FALSE) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:products-slider (INDEX:30, SCOPED:FALSE) */
.products-slider__info {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

  .products-slider__info.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .products-slider__track {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .products-slider__track.is-forward {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .products-slider__track.is-back {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .products-slider__slide {
    flex: 0 0 100%;
    width: 100%;
  }

  .products-slider__shield {
    transition: opacity 0.3s ease;
  }

  .products-slider__shield.is-active {
    opacity: 0.7;
  }

  .products-slider__image {
    transform: scale(1.08);
    transform-origin: center;
  }

  .products-slider__main-image {
    transition: opacity 0.2s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .products-slider__main-image.is-fading {
    opacity: 0;
  }

  .products-slider__main-image.slide-forward {
    transform: scale(1.45) translateX(-6%);
  }

  .products-slider__main-image.slide-back {
    transform: scale(1.45) translateX(6%);
  }
/* END_SECTION:products-slider */

/* START_SECTION:search (INDEX:32, SCOPED:FALSE) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:34, SCOPED:FALSE) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:35, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:global-styles (INDEX:37, SCOPED:FALSE) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  .font-henrietta {
    font-family: "VC Henrietta", "Playfair Display", serif;
  }

  .font-inter {
    font-family: Inter, system-ui, sans-serif;
  }

  .site-gutter {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 768px) {
    .site-gutter {
      padding-left: 3rem;
      padding-right: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .site-gutter {
      padding-left: 6rem;
      padding-right: 6rem;
    }
  }

  @media (min-width: 1280px) {
    .site-gutter {
      padding-left: 8rem;
      padding-right: 8rem;
    }
  }

  @media (min-width: 1536px) {
    .site-gutter {
      padding-left: 10rem;
      padding-right: 10rem;
    }
  }

  .pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero-section {
    background-color: #FDFAF5;
    height: calc(100vh - var(--header-height, 97.569px));
    animation: fadeIn 0.8s ease-in;
    box-sizing: border-box;
  }

  .page-fade-in {
    animation: fadeIn 0.8s ease-in;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes dogEntrance {
    0% {
      transform: translateX(20%);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .dog-animate {
    animation: dogEntrance 15s ease-out;
  }

  @keyframes dogFadeIn {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .dog-fade-in {
    animation: dogFadeIn 1.2s ease-out forwards;
  }

  .science-section {
    height: 100vh;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  @keyframes slide-down-slow {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes slide-up-slow {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }

  .animate-slide-down-slow {
    animation: slide-down-slow 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .animate-slide-up-slow {
    animation: slide-up-slow 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-left-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .animate-scroll-left {
    animation: scroll-left 14s linear infinite;
  }

  @media (max-width: 639px) {
    .animate-scroll-left-mobile {
      animation: scroll-left-mobile 9.8s linear infinite;
    }
  }

  .theme-overlay-hidden {
    display: none;
  }

  .theme-overlay-open {
    display: block;
  }

  .cart-notice {
    border: 1px solid rgba(247, 143, 77, 0.3);
    background-color: #FFF5ED;
    color: #371D0D;
  }

  .cart-notice__icon {
    background-color: #F78F4D;
    color: #FDFAF5;
  }

  .cart-notice--error {
    border-color: rgba(217, 61, 61, 0.3);
    background-color: #FDECEC;
    color: #9B1C1C;
  }

  .cart-notice--error .cart-notice__icon {
    background-color: #D93D3D;
  }


  input:focus,
  input:focus-visible,
  textarea:focus,
  textarea:focus-visible,
  select:focus,
  select:focus-visible {
    border-color: #F78F4D;
    outline: 2px solid #F78F4D;
    outline-offset: 0;
  }

  .subscriptions_app_embed_block {
    font-family: Inter, system-ui, sans-serif;
    color: #371D0D;
  }

  .subscriptions_app_embed_block label {
    font-size: 16px;
    line-height: 24px;
  }

  .subscriptions_app_embed_block input[type='radio'],
  .subscriptions_app_embed_block input[type='checkbox'] {
    accent-color: #F78F4D;
  }

  .subscriptions_app_embed_block select,
  .subscriptions_app_embed_block input,
  .subscriptions_app_embed_block textarea {
    border: 1px solid #D4D4D4;
    border-radius: 9999px;
    background-color: #FBFCFE;
    color: #371D0D;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
  }

  .subscriptions_app_embed_block textarea {
    border-radius: 12px;
  }

  .subscriptions_app_embed_block fieldset {
    border: 0;
    padding: 0;
    margin: 0;
  }

  .subscriptions_app_embed_block legend {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
  }
/* END_SNIPPET:global-styles */

/* START_SNIPPET:image (INDEX:38, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */