/** Shopify CDN: Minification failed

Line 88:2 Comments in CSS use "/* ... */" instead of "//"
Line 100:6 Comments in CSS use "/* ... */" instead of "//"
Line 115:4 Comments in CSS use "/* ... */" instead of "//"
Line 120:4 Comments in CSS use "/* ... */" instead of "//"
Line 126:4 Comments in CSS use "/* ... */" instead of "//"
Line 130:6 Comments in CSS use "/* ... */" instead of "//"
Line 139:2 Comments in CSS use "/* ... */" instead of "//"
Line 143:6 Comments in CSS use "/* ... */" instead of "//"
Line 145:6 Comments in CSS use "/* ... */" instead of "//"
Line 148:6 Comments in CSS use "/* ... */" instead of "//"
... and 3 more hidden warnings

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
/* Luxury Countdown Timer Announcement Bar */
#shopify-section-top-bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

#shopify-section-top-bar .t4s-ct {
  color: #d4af37 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#shopify-section-top-bar .t4s-ct:hover {
  color: #f0e68c !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

#countdown-timer {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
  display: inline-block;
  min-width: 100px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

/* Hide announcement bar when countdown reaches zero */
#shopify-section-top-bar.countdown-expired {
  display: none !important;
}

/* Final countdown warning - last 1 hour */
#countdown-timer.final-hour {
  animation: pulse-gold 1s ease-in-out infinite;
  color: #ff6b6b;
  text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #shopify-section-top-bar {
    padding: 10px 0;
  }
  
  #countdown-timer {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  <script>
(function() {
  // Countdown timer for June 9, 2026 at 7:25 PM UTC (11:25 PM GST UTC+4)
  const targetDate = new Date('2026-06-09T19:25:00Z').getTime();
  let countdownInterval;
  
  function updateCountdown() {
    const now = new Date().getTime();
    const distance = targetDate - now;
    
    const timerElement = document.getElementById('countdown-timer');
    const topBar = document.getElementById('shopify-section-top-bar');
    
    if (distance <= 0) {
      // Countdown has ended
      if (timerElement) {
        timerElement.textContent = '00:00:00';
      }
      
      if (topBar) {
        topBar.classList.add('countdown-expired');
      }
      
      if (countdownInterval) {
        clearInterval(countdownInterval);
      }
      return;
    }
    
    // Calculate time units
    const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    const seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
    // Format with leading zeros
    const formattedTime = 
      String(hours).padStart(2, '0') + ':' +
      String(minutes).padStart(2, '0') + ':' +
      String(seconds).padStart(2, '0');
    
    // Update the timer display
    if (timerElement) {
      timerElement.textContent = formattedTime;
      
      // Add warning class if less than 1 hour remaining
      if (distance < 3600000) {
        timerElement.classList.add('final-hour');
      } else {
        timerElement.classList.remove('final-hour');
      }
    }
  }
  
  // Function to start the countdown
  function startCountdown() {
    const timerElement = document.getElementById('countdown-timer');
    if (timerElement) {
      // Update immediately
      updateCountdown();
      // Then update every second
      countdownInterval = setInterval(updateCountdown, 1000);
    } else {
      // If timer element not found yet, try again in 100ms
      setTimeout(startCountdown, 100);
    }
  }
  
  // Wait for DOM to be ready
  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', startCountdown);
  } else {
    // DOM is already loaded
    startCountdown();
  }
})();
</script>
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

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

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}