/** Shopify CDN: Minification failed

Line 73:21 Expected identifier but found whitespace
Line 73:23 Unexpected "{"
Line 73:33 Expected ":"
Line 74:17 Expected identifier but found whitespace
Line 74:19 Unexpected "{"
Line 74:29 Expected ":"
Line 75:17 Expected identifier but found whitespace
Line 75:19 Unexpected "{"
Line 75:29 Expected ":"
Line 78:15 Expected identifier but found whitespace
... and 48 more hidden warnings

**/
/* ==========================================================================
   TEST by XV Labs - Base Styles
   Premium Men's Body Wash Theme
   ========================================================================== */

/* =================================
   CUSTOM FONTS
   ================================= */

@font-face {
  font-family: 'BBModernPro';
  src: url('/cdn/shop/files/BBModernPro.woff2?v=1749465011') format('woff2'),
       url('/cdn/shop/files/BBModernPro.woff?v=1750561858') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FoldGrotesquePro';
  src: url('/cdn/shop/files/FoldGrotesquePro.woff2?v=1749465012') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FoldGrotesquePro';
  src: url('/cdn/shop/files/FoldGrotesquePro-Md.woff2?v=1749465011') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =================================
   BASE TYPOGRAPHY
   ================================= */

body, p, span, a, li, input, button, textarea {
  font-family: 'FoldGrotesquePro', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'FoldGrotesquePro', sans-serif;
  font-weight: 500;
}

/* Brand "TEST" word - uses BBModernPro */
.brand-test {
  font-family: 'BBModernPro', sans-serif;
}

/* CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  /* Colors - Core */
  --color-background: {{ settings.color_background }};
  --color-accent: {{ settings.color_accent }};
  --color-border: {{ settings.color_border }};

  /* Colors - Text */
  --color-text: {{ settings.color_text }};
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #CCCCCC;
  --color-text-muted: #AAAAAA;

  /* Colors - Feedback */
  --color-error: #ff4444;
  --color-success: #22c55e;

  /* Typography */
  --font-heading: {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --font-heading-weight: {{ settings.font_heading.weight }};
  --font-heading-style: {{ settings.font_heading.style }};
  --font-heading-scale: {{ settings.font_heading_scale | divided_by: 100.0 }};

  --font-body: {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};
  --font-body-weight: {{ settings.font_body.weight }};
  --font-body-style: {{ settings.font_body.style }};
  --font-body-scale: {{ settings.font_body_scale | divided_by: 100.0 }};

  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  --font-size-4xl: 52px;
  --font-size-5xl: 64px;
  --font-size-6xl: 80px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  --spacing-sections: {{ settings.spacing_sections }}px;
  --spacing-grid-horizontal: {{ settings.spacing_grid_horizontal }}px;
  --spacing-grid-vertical: {{ settings.spacing_grid_vertical }}px;

  /* Layout */
  --page-width: {{ settings.page_width }}px;
  --page-gutter: var(--spacing-lg);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Border */
  --border-width: 1px;
  --border-radius-sm: 2px;
  --border-radius-base: 4px;
  --border-radius-lg: 8px;
}

/* Base Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  font-style: var(--font-body-style);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  min-height: 100vh;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-md);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-text-secondary);
}

/* Lists
   ========================================================================== */
ul, ol {
  list-style: none;
}

/* Images
   ========================================================================== */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form Elements
   ========================================================================== */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Global Button Styles - Sharp edges, commanding
   ========================================================================== */
.btn,
button[type="submit"],
input[type="submit"],
.button {
  border-radius: 0;
}

/* Layout Utilities
   ========================================================================== */
.page-width {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.section-spacing {
  padding-top: var(--spacing-sections);
  padding-bottom: var(--spacing-sections);
}

/* Visually Hidden (Accessibility)
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles (Accessibility)
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Selection
   ========================================================================== */
::selection {
  background-color: var(--color-text);
  color: var(--color-background);
}

/* Responsive Breakpoints Reference
   ==========================================================================
   --breakpoint-sm: 640px;
   --breakpoint-md: 768px;
   --breakpoint-lg: 1024px;
   --breakpoint-xl: 1280px;
   --breakpoint-2xl: 1536px;
   ========================================================================== */

@media screen and (min-width: 768px) {
  :root {
    --page-gutter: var(--spacing-xl);
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --page-gutter: var(--spacing-2xl);
  }
}

/* =================================
   MICRO ANIMATIONS & TRANSITIONS
   ================================= */

/* Fade in on scroll - add .animate-on-scroll class to elements */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Image hover zoom */
.image-hover-zoom {
  overflow: hidden;
}

.image-hover-zoom img {
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .image-hover-zoom:hover img {
    transform: scale(1.05);
  }
}

/* Link underline animation */
.link-animated {
  position: relative;
}

.link-animated::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

@media (hover: hover) {
  .link-animated:hover::after {
    width: 100%;
  }
}
