/** Shopify CDN: Minification failed

Line 387:1 Unexpected ","

**/
.fadeop {
  opacity: 0.5;
}

div#CartDrawer-CartItems .cart-items .cart-drawer-item__saving {
  display: none !important;
}

div#CartDrawer .cart-drawer_total-saving__row {
  display: none !important;
}

/* Mobile: first slide only — text at top, button pushed to bottom */
@media screen and (max-width: 749px) {
  .splide__list .splide__slide:first-child .hero-slide__content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .splide__list .splide__slide:first-child .hero-slide__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 80px;
  }
  .splide__list .splide__slide:first-child .hero__buttons {
    margin-top: auto;
    padding-top: 1rem;
  }
}

/* Desktop: first slide — text and button shifted down */
@media screen and (min-width: 750px) {
  .splide__list .splide__slide:first-child .hero-slide__content {
    padding-top: 150px;
  }
}
@media screen and (max-width: 749px) {
  .splide__list .splide__slide:first-child .hero-slide__content-container { display: flex; flex-direction: column; justify-content: space-between; }
  .splide__list .splide__slide:first-child .hero-slide__content { display: flex; flex-direction: column; flex: 1; padding-top: 80px; }
  .splide__list .splide__slide:first-child .hero__buttons { margin-top: auto; padding-top: 1rem; }
}

@media screen and (min-width: 750px) {
  .splide__list .splide__slide:first-child .hero-slide__content { padding-top: 150px; }
}

/* ============================================================
   WILLOW & WAGS — PREMIUM TYPOGRAPHY
   Playfair Display (headings) · Lato (body)
   Fonts loaded via <link> tags in layout/theme.liquid
============================================================ */

/* Step 1: override the CSS custom properties the theme uses everywhere.
   theme.liquid sets these inline but custom.css loads after it,
   so these definitions win in the cascade. */
:root {
  --font-heading-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading-style: normal;
  --font-heading-weight: 600;
  --font-body-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-body-style: normal;
}

/* Step 2: explicit rules as belt-and-suspenders for elements
   that may not inherit via CSS variables */
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.card__heading,
.main-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* Collection card titles use h3 but live in a fixed-height overlay with overflow:hidden.
   Keeping font-family (Playfair) but resetting weight/spacing to prevent layout shift
   that would push the .card-cta button out of the clipping boundary. */
.card-title {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

/* Step 3: hero section — restore Inter.
   CSS variable scope covers base.css var() references;
   explicit rule covers anything else. */
#shopify-section-slideshow_hero_b8D9fc {
  --font-heading-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading-weight: 400;
}
#shopify-section-slideshow_hero_b8D9fc h1,
#shopify-section-slideshow_hero_b8D9fc h2,
#shopify-section-slideshow_hero_b8D9fc h3,
#shopify-section-slideshow_hero_b8D9fc h4,
#shopify-section-slideshow_hero_b8D9fc h5,
#shopify-section-slideshow_hero_b8D9fc h6,
#shopify-section-slideshow_hero_b8D9fc .h1,
#shopify-section-slideshow_hero_b8D9fc .h2,
#shopify-section-slideshow_hero_b8D9fc .h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.6px;
  font-weight: 400;
}

/* ============================================================
   PRODUCT CARDS — left-aligned, clean minimal layout
============================================================ */
.card__information,
.card-information {
  text-align: left;
}
.card__information .card__heading {
  margin-bottom: 0;
  padding-bottom: 0.4rem;
}
.card-information {
  margin-top: 0;
  padding: 0.5rem 0 0.4rem;
}

/* ============================================================
   PRICE COLOUR — charcoal, regular weight
============================================================ */
.price-item--regular,
.price-item--sale {
  color: #333333 !important;
  font-weight: 400 !important;
}

/* ============================================================
   LOGO — restore Inter
   On the homepage the site name renders as span.h2 inside
   h1.header__heading — both get hit by the broad heading rule above.
============================================================ */
.header__heading,
.header__heading-link .h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

/* ============================================================
   PRODUCT CARD TITLE — Lato, bold, charcoal, modest size
   Title is h3.card__heading.h5 — the heading rule above matches
   it via h3, .card__heading, and .h5 (three ways). This single
   class override wins cascade coming after that rule.
============================================================ */
.card__heading {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.3rem !important;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.01em;
}

/* Card price — slightly smaller and lighter than the title */
.card-information .price-item,
.card-information .price-item--regular,
.card-information .price-item--sale {
  font-size: 1.25rem !important;
}

/* ============================================================
   COLLECTION CARDS — hover-only CTA, gold fill matching Reviews tab
   On touch devices (no hover), show the button statically.
============================================================ */
.collection-card:hover .card-cta {
  background: #C9A96A !important;
  color: #ffffff !important;
  border-color: #C9A96A !important;
}
@media (hover: none) {
  .collection-card .card-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: #C9A96A !important;
    color: #ffffff !important;
    border-color: #C9A96A !important;
  }
}

/* ============================================================
   PRODUCT BADGES — pill shape, top-left position
============================================================ */
.card__badge {
  top: 0.75rem;
  left: 0.75rem;
}
.badge {
  border-radius: 20px !important;
  padding: 3px 10px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.04em;
}

/* ============================================================
   QUICK-ADD BUTTON — sage green pill, overlaid on image
   Positioned absolutely inside .card__inner (moved via template)
============================================================ */
.card__inner .quick-add {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.card__inner:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .card__inner .quick-add {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
.quick-add__submit {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  background-color: #9FAF9B !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.38rem 1.8rem !important;
  border-radius: 30px !important;
  width: auto !important;
  min-width: 0 !important;
  transition: background-color 0.2s ease !important;
}
.quick-add__submit:hover {
  background-color: #7D9D7A !important;
}
.quick-add__submit::before,
.quick-add__submit::after {
  content: none !important;
}

/* ============================================================
   DROPDOWN MENU — gold background, white text,
   scrollable when list overflows viewport (prevents cutoff)
============================================================ */
.header__submenu.global-settings-popup {
  background: #C9A96A !important;
  max-height: 80vh;
  overflow-y: auto;
  width: max-content;
  min-width: 180px;
  max-width: 260px;
}
.header__submenu.global-settings-popup .header__menu-item {
  color: #ffffff !important;
}
.header__inline-menu,
.header__inline-menu .list-menu--inline,
.header__inline-menu li {
  overflow: visible;
}

/* ============================================================
   MOBILE MENU DRAWER — gold background, white text,
   constrained to 82vw so it doesn't cover full screen width.
============================================================ */
#menu-drawer {
  background: #C9A96A !important;
  max-width: 82vw;
}
.menu-drawer__submenu {
  background: #C9A96A !important;
}
#menu-drawer .link,
#menu-drawer .link--text,
.menu-drawer__submenu .link,
.menu-drawer__submenu .link--text,
.menu-drawer__submenu .menu-drawer__close-button {
  color: #ffffff !important;
}
.menu-drawer__title {
  display: none;
}

/* ============================================================
   TAGLINE BANNERS — single line on desktop, gentle pulse animation
   Sections: tagline_banner_willow_1 and tagline_banner_willow_2
============================================================ */
@keyframes ww-tagline-pulse {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%       { opacity: 0.72; transform: scale(1.018); }
}

#shopify-section-tagline_banner_willow_1 .rich-text__heading,
#shopify-section-tagline_banner_willow_2 .rich-text__heading {
  font-size: 1.3rem;
  animation: ww-tagline-pulse 6s ease-in-out 1s infinite;
}

@media screen and (min-width: 750px) {
  #shopify-section-tagline_banner_willow_1 .rich-text__heading,
  #shopify-section-tagline_banner_willow_2 .rich-text__heading {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    white-space: nowrap !important;
    word-break: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.card__heading a { font-size: 1.9rem !important; }
.price__regular .price-item, .price__sale .price-item { font-size: 1.9rem !important; }
/* Match section titles to menu font */
/* Match section titles to menu font */
.title.h1, .title.h2, .title.h0 {
  font-family: Inter, sans-serif !important;
  font-weight: 400 !important;
}
.collection-list .title, 
.collection-list h2 { 
  font-family: Inter, sans-serif !important; 
  font-weight: 400 !important; 
}
.main-heading {
  font-family: Inter, sans-serif !important;
  font-weight: 400 !important;
}
/* Shift slideshow images down to show dogs */
.splide__list .splide__slide:first-child img,
.splide__list .splide__slide:nth-child(2) img {
  object-position: center 80% !important;
}
/* Split image banner heading - keep Willow & Wags together */
section#template--27263705743688__split_image_banner_byron_KMgz4E h2.heading {
  width: 4em !important;
}
section#template--27263705743688__split_image_banner_byron_KMgz4E h2.heading .amp {
  font-weight: 300;
}
@media screen and (max-width: 749px) {
  .splide__list .splide__slide:nth-child(2) .hero-slide__content-container { display: flex; flex-direction: column; justify-content: space-between; }
  .splide__list .splide__slide:nth-child(2) .hero-slide__content { display: flex; flex-direction: column; flex: 1; padding-top: 200px; }
  .splide__list .splide__slide:nth-child(2) .hero__buttons { margin-top: auto; padding-top: 1rem; }
}
@media screen and (max-width: 749px) {
  .splide__list .splide__slide:nth-child(2) .hero-slide__content h2,
  .splide__list .splide__slide:nth-child(2) .hero-slide__content h3,
  .splide__list .splide__slide:nth-child(2) .hero-slide__content p {
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
  }
}@media screen and (max-width: 749px) {
  .splide__list .splide__slide:nth-child(3) .hero-slide__content-container { display: flex; flex-direction: column; justify-content: space-between; }
  .splide__list .splide__slide:nth-child(3) .hero-slide__content { display: flex; flex-direction: column; flex: 1; padding-top: 200px; }
  .splide__list .splide__slide:nth-child(3) .hero__buttons { margin-top: auto; padding-top: 1rem; }
}
@media screen and (min-width: 750px) {
  .card-wrapper .quick-add { opacity: 0; transition: opacity 0.2s ease; }
  .card-wrapper:hover .quick-add { opacity: 1; }
}
@media screen and (min-width: 750px) {
  .card-wrapper .quick-add { opacity: 0; transition: opacity 0.2s ease; }
  .card-wrapper:hover .quick-add { opacity: 1; }
}
@media screen and (max-width: 749px) {
  .quick-add { display: none !important; }
}
img.header__heading-logo {
  mix-blend-mode: screen !important;
  filter: none !important;
}
.section-template--27263705743688__featured_collection_kwxjRr .button {
  width: auto !important;
  display: inline-block !important;
  white-space: normal;
},
/* Fix mobile header overflow */
@media screen and (max-width: 749px) {
  .header__inline-menu,
  header.header,
  .header-wrapper {
    max-width: 100vw;
    overflow: hidden;
  }
}
/* Fix Inloggen font to match menu items */
.header__account-link,
.header__account-link span,
[class*="account"] span,
[class*="account"] {
  font-size: 1.9rem !important;
  font-weight: 400 !important;
  font-family: inherit !important;
}
.rte ul li::before,
.product-description ul li::before {
  display: none !important;
}


