/** Shopify CDN: Minification failed

Line 184:4 Comments in CSS use "/* ... */" instead of "//"
Line 188:6 Comments in CSS use "/* ... */" instead of "//"
Line 192:8 Comments in CSS use "/* ... */" instead of "//"
Line 194:10 Comments in CSS use "/* ... */" instead of "//"
Line 197:10 Comments in CSS use "/* ... */" instead of "//"
Line 197:58 Unterminated string token
Line 199:12 Comments in CSS use "/* ... */" instead of "//"
Line 211:12 Comments in CSS use "/* ... */" instead of "//"
Line 214:12 Comments in CSS use "/* ... */" instead of "//"
Line 214:61 Unterminated string token
... and 3 more hidden warnings

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.button, button, input[type="button"], input[type="submit"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.button:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.button:active, button:active, input[type="button"]:active, input[type="submit"]:active {
  transform: translateY(0);
}


h1, h2, h3, h4, h5, h6 {
  color: #8B4513;
  font-weight: 700;
}


a {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  color: #D97706;
}


::selection {
  background-color: #D97706;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #D97706;
  color: #FFFFFF;
}


html {
  scroll-behavior: smooth;
}


button:focus, a:focus, input:focus {
  outline: 2px solid #D97706;
  outline-offset: 2px;
}


input[type="text"], input[type="email"], input[type="password"], input[type="search"], input[type="url"], input[type="tel"], input[type="number"], textarea, select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
  border-color: #D97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Trust Badge Styling for Product Page */
.product-trust-badge {
  margin-top: 16px;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.product-trust-badge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #5c4033;
}

.product-trust-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 749px) {
  .product-trust-badge {
    margin-top: 12px;
    padding: 10px 0;
  }
  
  .product-trust-badge-content {
    font-size: 12px;
  }
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  .t4s-heading-template {
  padding: 100px 40px !important;
}

.t4s-heading-template h1 {
  font-size: 72px !important;
  line-height: 80px !important;
  margin-bottom: 40px !important;
  letter-spacing: -1px;
}

.t4s-heading-template .t4s-heading-content > div:not(:first-child) {
  font-size: 18px !important;
  line-height: 32px !important;
  margin-bottom: 48px !important;
}


.button, button, input[type="button"], input[type="submit"] {
  min-height: 52px;
  padding: 16px 40px !important;
  font-size: 16px !important;
  border-radius: 6px;
}

.button:hover, button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.4);
}


.t4s-heading-template::before {
  width: 320px !important;
  height: 320px !important;
  opacity: 0.7 !important;
  animation: pawPulse 4s ease-in-out infinite;
}

@keyframes pawPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}


.t4s-heading-template .t4s-heading-content > div:first-child {
  font-size: 18px !important;
  line-height: 32px !important;
  margin-bottom: 48px !important;
}

<script>
(function() {
  function makeExploreButtonClickable() {
    // Find all elements that contain the "Explore" text in the heading template
    const headingContents = document.querySelectorAll('.t4s-heading-content');
    
    headingContents.forEach(function(content) {
      // Look for the view more link/text
      const viewMoreElements = content.querySelectorAll('a, span, div');
      
      viewMoreElements.forEach(function(element) {
        // Check if this element contains "Explore" text
        if (element.textContent && element.textContent.trim() === 'Explore') {
          // Get the current collection URL from the page
          const currentUrl = window.location.pathname;
          
          // If it's not already a link, convert it to one
          if (element.tagName !== 'A') {
            // Create a new anchor element
            const link = document.createElement('a');
            link.href = currentUrl;
            link.className = 't4s-view-more-link';
            link.textContent = 'Explore';
            link.style.cursor = 'pointer';
            link.style.color = '#D97706';
            link.style.textDecoration = 'none';
            link.style.fontWeight = '600';
            link.style.display = 'inline-block';
            link.style.transition = 'all 0.3s ease';
            
            // Replace the original element with the link
            element.parentNode.replaceChild(link, element);
          } else {
            // If it's already a link but has no href, set it
            if (!element.href || element.href === window.location.href) {
              element.href = currentUrl;
              element.className = 't4s-view-more-link';
            }
          }
        }
      });
    });
  }
  
  // Run on page load
  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', makeExploreButtonClickable);
  } else {
    makeExploreButtonClickable();
  }
  
  // Also run after a short delay to catch dynamically loaded content
  setTimeout(makeExploreButtonClickable, 500);
})();
</script>
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  @media (max-width: 749px) {
  .header__heading-link,
  .header__heading,
  .header,
  header .header-wrapper {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .header__heading-logo-wrapper,
  .header__heading-logo-image {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  .t4s-heading-template {
  padding: 90px 30px !important;
}

.t4s-heading-template h1 {
  font-size: 56px !important;
  line-height: 64px !important;
  margin-bottom: 32px !important;
}

.t4s-heading-template .t4s-heading-content > div:not(:first-child) {
  font-size: 17px !important;
  line-height: 30px !important;
  margin-bottom: 40px !important;
}


.button, button, input[type="button"], input[type="submit"] {
  min-height: 48px;
  padding: 14px 32px !important;
  font-size: 16px !important;
}


.t4s-heading-template::before {
  width: 240px !important;
  height: 240px !important;
  opacity: 0.65 !important;
}
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  .t4s-heading-template {
  padding: 70px 15px !important;
}

.t4s-heading-template h1 {
  font-size: 48px !important;
  line-height: 56px !important;
  margin-bottom: 24px !important;
}

.t4s-heading-template .t4s-heading-content > div:not(:first-child) {
  font-size: 16px !important;
  line-height: 28px !important;
  margin-bottom: 32px !important;
}


.button, button, input[type="button"], input[type="submit"] {
  min-height: 48px;
  padding: 12px 24px !important;
  font-size: 16px !important;
  width: 100%;
  max-width: 100%;
}


a, button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


body {
  font-size: 16px !important;
}

p {
  line-height: 1.6 !important;
}


.t4s-heading-template::before {
  width: 160px !important;
  height: 160px !important;
  opacity: 0.55 !important;
}

/* Explore button styling for mobile */
.t4s-heading-content .t4s-view-more-link {
  cursor: pointer;
  color: #D97706;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.t4s-heading-content .t4s-view-more-link:hover {
  color: #b45309;
  text-decoration: underline;
}
}