/** Shopify CDN: Minification failed

Line 102:18 Expected identifier but found whitespace
Line 102:20 Unexpected "{"
Line 102:30 Expected ":"
Line 103:24 Expected identifier but found whitespace
Line 103:26 Unexpected "{"
Line 103:36 Expected ":"
Line 106:13 Expected identifier but found whitespace
Line 106:15 Unexpected "{"
Line 106:25 Expected ":"
Line 107:23 Expected identifier but found whitespace
... and 32 more hidden warnings

**/
/* ==========================================================================
   GETURBRICK - Base CSS
   Design System & Global Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Reset (Minimal)
   -------------------------------------------------------------------------- */

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

* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-size: 16px; /* Base explicite pour calculs rem - cohérence local/prod */
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: var(--line-height-normal);
  display: flex;
  flex-direction: column;
}

/* Header is position: sticky - no body padding needed
   The header takes up space in normal document flow */

.main-content {
  flex: 1 0 auto;
  overflow-x: hidden; /* Prevent horizontal scroll from any child element */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   CSS Variables - Design System
   -------------------------------------------------------------------------- */

:root {
  /* Colors - Primary */
  --color-primary: {{ settings.color_primary }};
  --color-primary-hover: {{ settings.color_primary_hover }};

  /* Colors - Background */
  --color-bg: {{ settings.color_bg }};
  --color-bg-secondary: {{ settings.color_bg_secondary }};
  --color-bg-tertiary: {{ settings.color_bg_tertiary }};

  /* Colors - Text */
  --color-text: {{ settings.color_text }};
  --color-text-secondary: {{ settings.color_text_secondary }};
  --color-text-muted: {{ settings.color_text_muted }};

  /* Colors - Borders */
  --color-border: {{ settings.color_border }};
  --color-border-dark: {{ settings.color_border_dark }};

  /* Colors - Accents */
  --color-success: {{ settings.color_success }};
  --color-error: {{ settings.color_error }};
  --color-warning: {{ settings.color_warning }};
  --color-accent: {{ settings.color_accent }};

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* Typography - Inter from Google Fonts */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: var(--font-family);
  --font-body: var(--font-family);

  --font-size-xs: 0.875rem;   /* 14px (+2px) */
  --font-size-sm: 1rem;       /* 16px (+2px) */
  --font-size-base: 1.125rem; /* 18px (+2px) */
  --font-size-lg: 1.25rem;    /* 20px (+2px) */
  --font-size-xl: 1.375rem;   /* 22px (+2px) */
  --font-size-2xl: 1.625rem;  /* 26px (+2px) */
  --font-size-3xl: 2.125rem;  /* 34px (+2px) */
  --font-size-4xl: 2.625rem;  /* 42px (+2px) */

  --font-weight-normal: 550;
  --font-weight-medium: 600;
  --font-weight-semibold: 700;
  --font-weight-bold: 800;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;

  /* Badge sizing - Responsive (smaller, proportional to card) */
  --badge-font-size: clamp(10px, 2.5vw, 16px);
  --badge-padding-y: clamp(3px, 0.3em, 6px);
  --badge-padding-x: clamp(4px, 0.35em, 7px);
  --badge-gap: clamp(2px, 0.5%, 4px);
  --badge-icon-size: 0.9em;
  --badge-radius: 6px;

  /* Layout */
  --header-height: 70px;
  --header-height-mobile: 60px;
  --container-max-width: 100%;
  --container-padding: 20px; /* mobile (+50%) */
}

@media (min-width: 768px) {
  :root {
    --container-padding: 30px; /* tablet (+50%) */
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 40px; /* desktop (+50%) */
  }
}

@media (min-width: 1440px) {
  :root {
    --container-padding: 62px; /* large (+50%) */
  }
}

/* Ultra-wide monitors: limit max-width (+30% = 2431px) */
@media (min-width: 2431px) {
  :root {
    --container-max-width: 2431px;
    --container-padding: 80px;
  }
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }
}

/* Links */
a {
  transition: color var(--transition-fast);
}

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

/* Focus States */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--spacing-md);
  z-index: var(--z-tooltip);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
}

.skip-link:focus {
  top: var(--spacing-md);
}

/* --------------------------------------------------------------------------
   Shopify Sections
   -------------------------------------------------------------------------- */

.shopify-section {
  width: 100%;
}

.shopify-section-group-header-group,
.shopify-section-group-footer-group {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  box-sizing: border-box;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1600px;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 100%;
}

/* Critical: Prevent grid children from overflowing */
.grid > * {
  min-width: 0;
  max-width: 100%;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexbox */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--column {
  flex-direction: column;
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn--large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
}

.btn--full {
  width: 100%;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 0;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Form Elements
   -------------------------------------------------------------------------- */

.input {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.input::placeholder {
  color: var(--color-text-muted);
}

.input--error {
  border-color: var(--color-error);
}

.label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.error-message {
  margin-top: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--color-error);
}

/* --------------------------------------------------------------------------
   Visibility Utilities
   -------------------------------------------------------------------------- */

.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;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Text Utilities
   -------------------------------------------------------------------------- */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-success { color: var(--color-success); }
.text-error { color: var(--color-error); }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }

.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

/* --------------------------------------------------------------------------
   Spacing Utilities
   -------------------------------------------------------------------------- */

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

/* --------------------------------------------------------------------------
   Section Spacing
   -------------------------------------------------------------------------- */

.section {
  padding-block: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--spacing-3xl);
  }
}

.section--compact {
  padding-block: var(--spacing-xl);
}

.section--flush {
  padding-block: 0;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.section-header__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: var(--font-size-2xl);
  }
}

.section-header__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.section-header__link:hover {
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Aspect Ratios
   -------------------------------------------------------------------------- */

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-portrait {
  aspect-ratio: 3 / 4;
}

.aspect-landscape {
  aspect-ratio: 4 / 3;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* --------------------------------------------------------------------------
   Image Styles
   -------------------------------------------------------------------------- */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Loading States
   -------------------------------------------------------------------------- */

.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

/* --------------------------------------------------------------------------
   Overlay
   -------------------------------------------------------------------------- */

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Badge
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  font-weight: 700;
  font-style: italic;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.badge--accent {
  background-color: var(--color-accent);
  color: white;
}

.badge--success {
  background-color: var(--color-success);
  color: white;
}

.badge--error {
  background-color: var(--color-error);
  color: white;
}

/* --------------------------------------------------------------------------
   Breadcrumb - GETURBRICK (Compact)
   -------------------------------------------------------------------------- */

.breadcrumb {
  padding: 6px 0;
}



.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-secondary, #666);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__chevron {
  width: 12px;
  height: 12px;
  color: var(--color-text-muted, #999);
  flex-shrink: 0;
}

.breadcrumb__link {
  color: var(--color-text-secondary, #666);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__link:hover {
  color: var(--color-accent, #5B4FE9);
}

.breadcrumb__current {
  color: var(--color-text-secondary, #666);
}

/* Truncate long breadcrumb items on mobile */
@media (max-width: 767px) {
  .breadcrumb__current {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease forwards;
}

.animate-slide-up {
  animation: slideUp var(--transition-base) ease forwards;
}

.animate-slide-down {
  animation: slideDown var(--transition-base) ease forwards;
}

/* --------------------------------------------------------------------------
   Scroll-triggered Animations
   Uses data-animate attributes with IntersectionObserver
   -------------------------------------------------------------------------- */

/* Base state for animated elements - hidden before animation */
[data-animate],
[data-animate-child] {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Visible state - applied by JS when element enters viewport */
[data-animate].is-visible,
[data-animate-child].is-visible {
  opacity: 1;
}

/* Fade In (default) */
[data-animate="fade"] {
  opacity: 0;
}

[data-animate="fade"].is-visible {
  opacity: 1;
}

/* Fade In Up */
[data-animate="fade-up"],
[data-animate-child] {
  opacity: 0;
  transform: translateY(20px);
}

[data-animate="fade-up"].is-visible,
[data-animate-child].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Down */
[data-animate="fade-down"] {
  opacity: 0;
  transform: translateY(-20px);
}

[data-animate="fade-down"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Left */
[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-20px);
}

[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Right */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(20px);
}

[data-animate="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In */
[data-animate="scale"] {
  opacity: 0;
  transform: scale(0.95);
}

[data-animate="scale"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Zoom In (slightly larger scale) */
[data-animate="zoom"] {
  opacity: 0;
  transform: scale(0.9);
}

[data-animate="zoom"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger container - no animation on container itself */
[data-animate-stagger] {
  opacity: 1;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-child] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Icon Animations - Glow, Pulse, Neon Effects
   -------------------------------------------------------------------------- */

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 2px currentColor);
  }
  50% {
    filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 12px currentColor);
  }
}

/* Neon flicker */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    filter: drop-shadow(0 0 4px currentColor) drop-shadow(0 0 8px currentColor);
  }
  20%, 24%, 55% {
    filter: none;
  }
}

/* Soft breathing glow */
@keyframes breatheGlow {
  0%, 100% {
    filter: drop-shadow(0 0 3px var(--icon-glow-color, currentColor));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 10px var(--icon-glow-color, currentColor)) drop-shadow(0 0 20px var(--icon-glow-color, currentColor));
    opacity: 1;
  }
}

/* Rotate animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Shake animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

/* Icon animation classes */
.icon-animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.icon-animate-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

.icon-animate-neon {
  animation: neonFlicker 3s ease-in-out infinite;
}

.icon-animate-breathe {
  animation: breatheGlow 3s ease-in-out infinite;
}

.icon-animate-rotate {
  animation: rotate 8s linear infinite;
}

.icon-animate-bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

.icon-animate-shake:hover {
  animation: shake 0.3s ease-in-out;
}

/* Hover glow effect */
.icon-hover-glow {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.icon-hover-glow:hover {
  filter: drop-shadow(0 0 8px var(--icon-glow-color, currentColor));
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Brand Colors for Icons
   -------------------------------------------------------------------------- */

/* Instagram gradient */
.icon-instagram-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-instagram-gradient svg {
  stroke: url(#instagram-gradient);
}

/* Instagram colored icon */
.icon-instagram-colored {
  color: #E4405F;
  --icon-glow-color: #E4405F;
}

/* TikTok */
.icon-tiktok-colored {
  color: #000000;
  --icon-glow-color: #00f2ea;
}

/* Twitter/X */
.icon-twitter-colored {
  color: #1DA1F2;
  --icon-glow-color: #1DA1F2;
}

/* YouTube */
.icon-youtube-colored {
  color: #FF0000;
  --icon-glow-color: #FF0000;
}

/* Facebook */
.icon-facebook-colored {
  color: #1877F2;
  --icon-glow-color: #1877F2;
}

/* WhatsApp */
.icon-whatsapp-colored {
  color: #25D366;
  --icon-glow-color: #25D366;
}

/* Trust/Verified - Green */
.icon-trust-colored {
  color: #22c55e;
  --icon-glow-color: #22c55e;
}

/* Express/Fast - Purple */
.icon-express-colored {
  color: #5B4FE9;
  --icon-glow-color: #5B4FE9;
}

/* Warning - Orange */
.icon-warning-colored {
  color: #f59e0b;
  --icon-glow-color: #f59e0b;
}

/* Error - Red */
.icon-error-colored {
  color: #ef4444;
  --icon-glow-color: #ef4444;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .icon-animate-pulse,
  .icon-animate-glow,
  .icon-animate-neon,
  .icon-animate-breathe,
  .icon-animate-rotate,
  .icon-animate-bounce {
    animation: none;
  }
  
  .icon-hover-glow:hover {
    filter: none;
    transform: none;
  }
}

/* ==========================================================================
   Cart Toast - Global Styles
   Available on all pages (rendered in theme.liquid)
   ========================================================================== */

/* Overlay */
.cart-toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 999;
}

.cart-toast-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Toast Modal */
.cart-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  left: auto;
  transform: translateY(-10px) scale(0.98);
  width: calc(100% - 32px);
  max-width: 380px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-out;
  z-index: 1000;
  overflow: hidden;
}

.cart-toast.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.cart-toast__header {
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-toast__title {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
}

.cart-toast__close {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4px -4px 0 0;
  transition: background 0.2s;
}

.cart-toast__close:hover {
  background: #f4f4f5;
}

.cart-toast__close svg {
  width: 16px;
  height: 16px;
  color: #a1a1aa;
}

/* Product */
.cart-toast__product {
  padding: 16px 20px 20px;
  display: flex;
  gap: 14px;
}

.cart-toast__image {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toast__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  mix-blend-mode: multiply;
}

.cart-toast__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.cart-toast__name {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-toast__variant {
  font-size: 12px;
  color: #52525b;
  font-weight: 500;
}

/* Delivery type */
.cart-toast__delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-toast__delivery-title {
  font-size: 12px;
  font-weight: 500;
  color: #71717a;
}

.cart-toast__delivery-badge {
  display: none;
}

.cart-toast__delivery--express .cart-toast__delivery-title {
  color: #5B4FE9;
  font-weight: 600;
}

.cart-toast__delivery--express .cart-toast__delivery-badge {
  display: inline-flex;
}

/* Actions */
.cart-toast__actions {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-toast__btn-primary {
  width: 100%;
  padding: 14px 20px;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
}

.cart-toast__btn-primary:hover {
  background: var(--color-accent);
  color: #fff;
}

.cart-toast__btn-secondary {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
}

.cart-toast__btn-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
  .cart-toast {
    top: 100px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile: Slide from bottom */
@media (max-width: 480px) {
  .cart-toast {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    max-width: 100%;
    border-radius: 8px 8px 0 0;
  }
  
  .cart-toast.is-active {
    transform: translateY(0);
  }
  
  .cart-toast__header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: #d4d4d8;
    border-radius: 2px;
  }
  
  .cart-toast__header {
    position: relative;
    padding-top: 24px;
  }
}
