/** Shopify CDN: Minification failed

Line 33:15 Expected identifier but found whitespace
Line 33:17 Unexpected "{"
Line 33:27 Expected ":"
Line 34:21 Expected identifier but found whitespace
Line 34:23 Unexpected "{"
Line 34:33 Expected ":"
Line 35:19 Expected identifier but found whitespace
Line 35:21 Unexpected "{"
Line 35:31 Expected ":"
Line 36:17 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* ==========================================================================
   #THEME CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-black: #0B0B0B;
  --color-dark: #111111;
  --color-white: #FFFFFF;
  --color-gray-100: #F5F5F5;
  --color-gray-300: #D1D1D1;
  --color-gray-500: #8A8A8A;
  --color-accent: #0B0B0B;
  
  --color-text: {{ settings.color_text | default: '#0B0B0B' }};
  --color-background: {{ settings.color_background | default: '#FFFFFF' }};
  --color-btn-text: {{ settings.color_button_text | default: '#FFFFFF' }};
  --color-btn-bg: {{ settings.color_button_background | default: '#0B0B0B' }};
  --color-border: {{ settings.color_border | default: '#D1D1D1' }};

  /* Typography */
  --font-heading: 'Futura PT', sans-serif;
  --font-body: 'Futura PT', sans-serif;

  --h1: 84px;
  --h2: 64px;
  --h3: 48px;
  --h4: 24px;
  --body-lg: 18px;
  --body-md: 16px;
  --body-sm: 14px;
  
  --line-height-heading: 1.2;
  --line-height-body: 1.5;
  
  --font-weight-heading: 500;
  --font-weight-body: 400;

  /* Spacing */
  --section-padding-desktop: 80px;
  --section-padding-tablet: 60px;
  --section-padding-mobile: 40px;
  
  --grid-gap: 24px;
  --container-padding-desktop: 40px; /* Assuming some buffer */
  --container-padding-tablet: 20px;
  --container-padding-mobile: 20px;
  
  --container-width: 1440px;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillicLight.woff2') format('woff2'),
        url('FuturaCyrillicLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillicBook.woff2') format('woff2'),
        url('FuturaCyrillicBook.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillicMedium.woff2') format('woff2'),
        url('FuturaCyrillicMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillic-Demi.woff2') format('woff2'),
        url('FuturaCyrillic-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillicHeavy.woff2') format('woff2'),
        url('FuturaCyrillicHeavy.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillic-Bold.woff2') format('woff2'),
        url('FuturaCyrillic-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillic-ExtraBold.woff2') format('woff2'),
        url('FuturaCyrillic-ExtraBold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}





/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-md);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
  color: var(--color-black);
  margin-bottom: 1rem;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

/* p {
  margin-bottom: 1rem;
} */

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 48px;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--body-md);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button:hover, .btn:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. Utility Classes
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding-tablet);
  padding-right: var(--container-padding-tablet);
  width: 100%;
}



@media screen and (max-width: 767px) {
  .container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }
  
  :root {
    --h1: 36px;
    --h2: 30px;
    --h3: 24px;
    --h4: 20px;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }

.section {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
}

@media screen and (max-width: 1024px) {
  .section {
    padding-top: var(--section-padding-tablet);
    padding-bottom: var(--section-padding-tablet);
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media screen and (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-4 { gap: 1rem; }

.hidden { display: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Global Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for children if beneficial */
.animate-on-scroll.delay-100 { transition-delay: 0.1s; }
.animate-on-scroll.delay-200 { transition-delay: 0.2s; }
.animate-on-scroll.delay-300 { transition-delay: 0.3s; }

/* Ensure content is visible if JS fails or disabled */
.no-js .animate-on-scroll {
  opacity: 1;
  transform: none;
}
