/** Shopify CDN: Minification failed

Line 279:2 Comments in CSS use "/* ... */" instead of "//"
Line 286:2 Comments in CSS use "/* ... */" instead of "//"
Line 293:6 Comments in CSS use "/* ... */" instead of "//"
Line 304:2 Comments in CSS use "/* ... */" instead of "//"
Line 313:2 Comments in CSS use "/* ... */" instead of "//"
Line 317:4 Comments in CSS use "/* ... */" instead of "//"
Line 320:4 Comments in CSS use "/* ... */" instead of "//"
Line 331:4 Comments in CSS use "/* ... */" instead of "//"
Line 337:2 Comments in CSS use "/* ... */" instead of "//"
Line 339:4 Comments in CSS use "/* ... */" instead of "//"
... and 6 more hidden warnings

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.custom-css{
    margin-right: auto;
    margin-left: auto;
    width: 630px;
    height: 217px;
    background: #F1F5F6;
    border: 1px solid #E5E8EC;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

/* ============================================ */
/* TEXT HORIZONTAL RUNNING - BENEFITS BAR */
/* ============================================ */

/* Benefits bar container */
.text-horizontal-running {
    background-color: #8f4a4f;
    padding: 16px 0;
    overflow: hidden;
}

/* Benefits bar text styling */
.text-horizontal-running .text-content,
.text-horizontal-running [class*="text"],
.text-horizontal-running p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
    margin: 0 20px;
    animation: scroll-left 60s linear infinite;
}

/* Scrolling animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Benefits bar separator symbols */
.text-horizontal-running .separator,
.text-horizontal-running [class*="separator"] {
    color: #ffc600;
    margin: 0 8px;
    font-weight: 500;
}

/* Benefits bar link styling */
.text-horizontal-running a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-horizontal-running a:hover {
    color: #ffc600;
    text-decoration: underline;
}

/* Mobile responsive benefits bar */
@media (max-width: 768px) {
    .text-horizontal-running {
        padding: 12px 0;
    }
    
    .text-horizontal-running .text-content,
    .text-horizontal-running [class*="text"],
    .text-horizontal-running p {
        font-size: 13px;
        margin: 0 12px;
        animation: scroll-left 50s linear infinite;
    }
}

/* Smooth scrolling for better performance */
.text-horizontal-running .text-content,
.text-horizontal-running [class*="text"] {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ============================================ */
/* UNIFIED BUTTON STYLING - THEME CONSISTENCY */
/* ============================================ */

/* Exit-intent popup button */
.exit-intent-popup button[type="submit"],
.exit-intent-popup .exit-intent-button {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
}

.exit-intent-popup button[type="submit"]:hover,
.exit-intent-popup .exit-intent-button:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/* FAQ section buttons */
.faq-sections .faq-button,
.faq-sections [class*="button"] {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
}

.faq-sections .faq-button:hover,
.faq-sections [class*="button"]:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/* Instagram feed follow button */
.instagram-image-grid .follow-button,
.instagram-image-grid .instagram-button,
.instagram-image-grid .cta-button,
.instagram-image-grid [class*="follow"] button,
.instagram-image-grid a.follow-button {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
}

.instagram-image-grid .follow-button:hover,
.instagram-image-grid .instagram-button:hover,
.instagram-image-grid .cta-button:hover,
.instagram-image-grid [class*="follow"] button:hover,
.instagram-image-grid a.follow-button:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/* Video section CTA button */
.popup-video .video-cta,
.popup-video .shop-button,
.popup-video [class*="cta"] button,
.popup-video [class*="cta"] a {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
}

.popup-video .video-cta:hover,
.popup-video .shop-button:hover,
.popup-video [class*="cta"] button:hover,
.popup-video [class*="cta"] a:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/* Recently viewed section buttons */
.collection-carousel-product.recently-viewed .view-all-button,
.collection-carousel-product.recently-viewed [class*="view-all"],
[class*="recently-viewed"] .view-all-button,
[class*="recently-viewed"] [class*="view-all"] {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
}

.collection-carousel-product.recently-viewed .view-all-button:hover,
.collection-carousel-product.recently-viewed [class*="view-all"]:hover,
[class*="recently-viewed"] .view-all-button:hover,
[class*="recently-viewed"] [class*="view-all"]:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/* Carousel navigation arrows - theme consistency */
.slick-prev,
.slick-next,
[class*="carousel"] .slick-prev,
[class*="carousel"] .slick-next {
    background-color: #8f4a4f !important;
}

.slick-prev:hover,
.slick-next:hover,
[class*="carousel"] .slick-prev:hover,
[class*="carousel"] .slick-next:hover {
    background-color: #6f3438 !important;
}

/* Generic button styling for all newly added sections */
.exit-intent-popup .btn,
.exit-intent-popup button,
.exit-intent-popup a.btn,
.faq-sections .btn,
.faq-sections button,
.faq-sections a.btn,
.instagram-image-grid .btn,
.instagram-image-grid button,
.instagram-image-grid a.btn,
.popup-video .btn,
.popup-video button,
.popup-video a.btn,
.collection-carousel-product.recently-viewed .btn,
.collection-carousel-product.recently-viewed button,
.collection-carousel-product.recently-viewed a.btn,
[class*="recently-viewed"] .btn,
[class*="recently-viewed"] button,
[class*="recently-viewed"] a.btn {
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border-color: #8f4a4f !important;
    transition: all 0.3s ease !important;
}

.exit-intent-popup .btn:hover,
.exit-intent-popup button:hover,
.exit-intent-popup a.btn:hover,
.faq-sections .btn:hover,
.faq-sections button:hover,
.faq-sections a.btn:hover,
.instagram-image-grid .btn:hover,
.instagram-image-grid button:hover,
.instagram-image-grid a.btn:hover,
.popup-video .btn:hover,
.popup-video button:hover,
.popup-video a.btn:hover,
.collection-carousel-product.recently-viewed .btn:hover,
.collection-carousel-product.recently-viewed button:hover,
.collection-carousel-product.recently-viewed a.btn:hover,
[class*="recently-viewed"] .btn:hover,
[class*="recently-viewed"] button:hover,
[class*="recently-viewed"] a.btn:hover {
    background-color: #6f3438 !important;
    border-color: #6f3438 !important;
    color: #ffffff !important;
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  /* RECENTLY VIEWED PRODUCTS TRACKING */
<script>
(function() {
  'use strict';
  
  // Recently Viewed Configuration
  const recentlyViewedConfig = {
    storageKey: 'trenzora_recently_viewed',
    maxItems: 8,
    expiryDays: 30
  };
  
  // Get recently viewed products from localStorage
  function getRecentlyViewed() {
    const stored = localStorage.getItem(recentlyViewedConfig.storageKey);
    if (!stored) return [];
    
    try {
      const items = JSON.parse(stored);
      // Filter out expired items
      const now = Date.now();
      return items.filter(item => {
        const expiryTime = item.timestamp + (recentlyViewedConfig.expiryDays * 24 * 60 * 60 * 1000);
        return expiryTime > now;
      });
    } catch (e) {
      return [];
    }
  }
  
  // Save recently viewed products to localStorage
  function saveRecentlyViewed(items) {
    try {
      localStorage.setItem(recentlyViewedConfig.storageKey, JSON.stringify(items));
    } catch (e) {
      console.warn('Failed to save recently viewed products:', e);
    }
  }
  
  // Add product to recently viewed
  function addToRecentlyViewed(productId, productTitle, productImage, productUrl) {
    const items = getRecentlyViewed();
    
    // Remove if already exists
    const filtered = items.filter(item => item.id !== productId);
    
    // Add new item at the beginning
    const newItem = {
      id: productId,
      title: productTitle,
      image: productImage,
      url: productUrl,
      timestamp: Date.now()
    };
    
    filtered.unshift(newItem);
    
    // Keep only max items
    const limited = filtered.slice(0, recentlyViewedConfig.maxItems);
    
    saveRecentlyViewed(limited);
  }
  
  // Track product views on product pages
  function trackProductView() {
    // Check if we're on a product page
    const productHandle = document.querySelector('[data-product-handle]');
    const productId = document.querySelector('[data-product-id]');
    const productTitle = document.querySelector('h1[data-product-title]');
    const productImage = document.querySelector('[data-product-image]');
    const productUrl = window.location.href;
    
    if (productId && productTitle) {
      const id = productId.getAttribute('data-product-id');
      const title = productTitle.textContent.trim();
      const image = productImage ? productImage.getAttribute('src') : '';
      
      addToRecentlyViewed(id, title, image, productUrl);
    }
  }
  
  // Initialize tracking
  function init() {
    // Track product view on product pages
    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', trackProductView);
    } else {
      trackProductView();
    }
  }
  
  // Start tracking
  init();
  
  // Expose functions globally for manual tracking if needed
  window.TrenzoraRecentlyViewed = {
    add: addToRecentlyViewed,
    get: getRecentlyViewed,
    clear: function() {
      localStorage.removeItem(recentlyViewedConfig.storageKey);
    }
  };
})();
</script>
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  .custom-css{padding: 10px;}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  /* MOBILE OPTIMIZATION FOR HERO SLIDESHOW */

/* Mobile slideshow container */
.slideshow-section {
    min-height: 500px;
}

/* Mobile slideshow heading */
.slideshow-section h1,
.slideshow-section h2,
.slideshow-section .hd {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    color: #ffffff !important;
}

/* Mobile slideshow subheading */
.slideshow-section .subhd,
.slideshow-section .subtitle,
.slideshow-section p {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
    max-width: 90% !important;
}

/* Mobile slideshow button */
.slideshow-section .btn,
.slideshow-section button,
.slideshow-section a.btn {
    display: inline-block !important;
    min-height: 48px !important;
    padding: 16px 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
    text-align: center !important;
    width: auto !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    display: block !important;
    background-color: #8f4a4f !important;
    color: #ffffff !important;
    border: 2px solid #8f4a4f !important;
    box-shadow: 0 2px 8px rgba(143, 74, 79, 0.2) !important;
}

.slideshow-section .btn:active,
.slideshow-section button:active,
.slideshow-section a.btn:active {
    transform: scale(0.98) !important;
}

/* Mobile slideshow text container */
.slideshow-section .caption-content,
.slideshow-section .slide-content {
    padding: 20px !important;
    gap: 16px !important;
}

/* Mobile slideshow overlay */
.slideshow-section .overlay {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Mobile slideshow dots */
.slideshow-section .slick-dots {
    bottom: 20px !important;
}

.slideshow-section .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
}

/* Mobile slideshow arrows */
.slideshow-section .slick-prev,
.slideshow-section .slick-next {
    width: 36px !important;
    height: 36px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.slideshow-section .slick-prev {
    left: 10px !important;
}

.slideshow-section .slick-next {
    right: 10px !important;
}

/* Ensure text doesn't overlap with images */
.slideshow-section .caption-content {
    position: relative !important;
    z-index: 10 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 24px 16px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(4px) !important;
}

/* Mobile button spacing */
.slideshow-section .btn + .btn,
.slideshow-section button + button {
    margin-top: 12px !important;
}

/* Improve contrast for outdoor viewing */
.slideshow-section h1,
.slideshow-section h2,
.slideshow-section .hd,
.slideshow-section .subhd,
.slideshow-section .subtitle,
.slideshow-section p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3) !important;
}

/* Mobile-specific button styling */
@media (max-width: 480px) {
    .slideshow-section h1,
    .slideshow-section h2,
    .slideshow-section .hd {
        font-size: 28px !important;
    }
    
    .slideshow-section .subhd,
    .slideshow-section .subtitle,
    .slideshow-section p {
        font-size: 15px !important;
    }
    
    .slideshow-section .btn,
    .slideshow-section button,
    .slideshow-section a.btn {
        padding: 14px 24px !important;
        font-size: 15px !important;
        min-height: 44px !important;
    }
}
}
