/** Shopify CDN: Minification failed

Line 22:18 Expected identifier but found whitespace
Line 22:20 Unexpected "{"
Line 22:30 Expected ":"
Line 23:20 Expected identifier but found whitespace
Line 23:22 Unexpected "{"
Line 23:32 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:29 Expected ":"
Line 27:20 Expected identifier but found whitespace
... and 29 more hidden warnings

**/
/* ========================================
   Brand Color System
   ======================================== */

:root {
  /* Primary brand colors */
  --color-primary: {{ settings.brand_primary_color | default: '#f26f87' }};
  --color-secondary: {{ settings.brand_secondary_color | default: '#f36e87' }};
  --color-accent: {{ settings.brand_accent_color | default: '#977d7a' }};

  /* Button colors */
  --color-button-bg: {{ settings.color_button_background | default: '#f26f87' }};
  --color-button-text: {{ settings.color_button_text | default: '#ffffff' }};
  --color-button-hover-bg: {{ settings.color_button_hover_background | default: '#f36e87' }};

  /* Link colors */
  --color-link: {{ settings.color_links | default: '#f26f87' }};
  --color-link-hover: {{ settings.color_links_hover | default: '#f36e87' }};

  /* Text colors */
  --color-text: {{ settings.color_text | default: '#1a1a1a' }};
  --color-text-muted: #888888;

  /* Background colors */
  --color-bg: {{ settings.color_background | default: '#ffffff' }};
  --color-surface: {{ settings.color_surface | default: '#f9f9f9' }};

  /* Border colors */
  --color-border: {{ settings.color_border | default: '#e0e0e0' }};
  --color-border-light: {{ settings.color_border_light | default: '#f0f0f0' }};

  /* Semantic aliases */
  --color-success: #008060;
  --color-error: #e53935;
  --color-discount: var(--color-primary);
}

/* ========================================
   Base Styles
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

/* ========================================
   Links
   ======================================== */

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-link-hover);
}

/* ========================================
   Buttons
   ======================================== */

button,
input[type="submit"],
.btn {
  font-family: inherit;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background-color: var(--color-button-hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-button-text);
}
