@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Premium Coffee Brand Colors: The Digital Sommelier (LIGHT MODE) */
  --primary: #5c4033;        
  --primary-dim: #7f5c49; 
  --primary-container: #f9ece0; 
  --primary-fixed: #3d271e;
  --primary-glow: rgba(92, 64, 51, 0.15);

  --secondary: #6e5c54;
  --secondary-container: #f2e7e3;

  --surface: #ffffff;
  --surface-low: #faf9f8;
  --surface-highest: #f4f2f0;
  --surface-elevated: #ffffff;
  
  --on-surface: #1e1b1a;
  --on-surface-variant: #56504d;
  --text-muted: #56504d; /* alias for on-surface-variant */

  --background: #fbfaf9;
  --on-background: #1e1b1a;

  --on-primary: #ffffff;
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --success: #146c2e;
  --success-container: #a8f0c6;
  
  --outline: #857a75;
  --outline-variant: #d4cfcb;


  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing System (Mobile Optimized 4px grid) */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* Easing Curves (Premium Motion) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-sticky: 40;
  --z-overlay: 90;
  --z-drawer: 100;
  --z-toast: 110;

  /* Shadows (Depth System — tuned for light mode) */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.13);
  --shadow-xl: 0 30px 60px -15px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px var(--primary-glow);
}

/* ===================================
   RESET & BASE
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-background);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overscroll-behavior-y: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   BASE UTILITIES
   =================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-4 { gap: var(--space-md); }
.gap-8 { gap: var(--space-xl); }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.hidden { display: none; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Desktop Media Query */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md-grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .md-hidden { display: none; }
}

/* Material Icons Baseline */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ===================================
   COMPONENT: BUTTONS
   =================================== */
.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  -webkit-user-select: none;
  user-select: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo), opacity 0.5s;
  opacity: 0;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

.btn-primary:active { 
  transform: scale(0.97); 
}

.btn-primary:hover { 
  background-color: var(--primary-fixed); 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); 
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-glass {
  background: rgba(39, 28, 16, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--primary);
  border: 1px solid rgba(79, 69, 64, 0.15);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  font-family: var(--font-body);
}

.btn-glass:hover {
  background: rgba(39, 28, 16, 0.2);
  border-color: rgba(79, 69, 64, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid var(--outline-variant);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  font-family: var(--font-body);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===================================
   COMPONENT: CARDS
   =================================== */
.card {
  background-color: var(--surface-low);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  border: none;
  box-shadow: var(--shadow-lg);
}

.card:hover {
  transform: translateY(-8px);
  background-color: var(--surface);
  box-shadow: var(--shadow-xl);
}

.card-header {
  height: 380px; 
  background-color: var(--surface-highest);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.card-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  transition: transform 0.8s var(--ease-smooth);
}

.card:hover .card-header img {
  transform: scale(1.08) translateY(-10px);
}

.card-body {
  padding: var(--space-lg);
  background: var(--surface-low);
  transition: background 0.5s ease;
}

.card:hover .card-body {
  background: var(--surface);
}

/* ===================================
   COMPONENT: GLASS CARD
   =================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s var(--ease-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* ===================================
   COMPONENT: BADGES
   =================================== */
.badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 1px solid var(--outline-variant);
}

.price-tag {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--on-surface);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

/* ===================================
   COMPONENT: HERO GRADIENT
   =================================== */
.hero-gradient {
  background: radial-gradient(circle at center, var(--primary-container) 0%, var(--background) 100%);
}

/* ===================================
   COMPONENT: SKELETON / SHIMMER LOADING
   =================================== */
.skeleton {
  background: var(--surface-highest);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 50%,
    transparent 100%
  );
  animation: shimmer 1.8s infinite;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  width: 80%;
}

.skeleton-text.short {
  width: 50%;
}

.skeleton-image {
  height: 380px;
  width: 100%;
}

.skeleton-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===================================
   COMPONENT: FLOATING LABEL INPUT
   =================================== */
.input-group {
  position: relative;
  margin-bottom: 0;
}

.input-floating {
  width: 100%;
  padding: 1.25rem 1rem 0.5rem;
  border: 1.5px solid var(--outline-variant);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--surface-low);
  color: var(--on-surface);
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  outline: none;
  -webkit-appearance: none;
}

.input-floating:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.input-floating:focus + .input-label,
.input-floating:not(:placeholder-shown) + .input-label {
  top: 0.35rem;
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.input-label {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  font-size: 1rem;
  color: var(--on-surface-variant);
  pointer-events: none;
  transition: all 0.25s var(--ease-out-expo);
  font-weight: 400;
}

.input-floating.is-valid {
  border-color: var(--success);
}

.input-floating.is-error {
  border-color: #ff6b6b;
}

.input-icon-status {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.input-icon-status.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ===================================
   COMPONENT: PROGRESS BAR (Shipping)
   =================================== */
.progress-bar-track {
  width: 100%;
  height: 4px;
  background: var(--surface-highest);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dim));
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease-out-expo);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 8px;
  height: 8px;
  background: var(--primary-dim);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-glow);
}

.shipping-progress {
  padding: var(--space-md);
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
}

.shipping-progress-text {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.shipping-progress-text strong {
  color: var(--primary);
  font-weight: 600;
}

/* ===================================
   COMPONENT: CHECKOUT STEPPER
   =================================== */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-md) 0;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  opacity: 0.4;
  transition: all 0.3s var(--ease-smooth);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stepper-step.active {
  opacity: 1;
  color: var(--primary);
}

.stepper-step.completed {
  opacity: 0.7;
  color: var(--success);
}

.stepper-step .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--outline-variant);
  transition: all 0.3s var(--ease-spring);
}

.stepper-step.active .step-dot {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  transform: scale(1.3);
}

.stepper-step.completed .step-dot {
  background: var(--success);
}

.stepper-divider {
  width: 24px;
  height: 1px;
  background: var(--outline-variant);
  margin: 0 0.5rem;
}

/* ===================================
   COMPONENT: ACCORDION
   =================================== */
.accordion {
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--surface-low);
  cursor: pointer;
  transition: background 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

.accordion-header:hover {
  background: var(--surface-elevated);
}

.accordion-header .accordion-icon {
  transition: transform 0.3s var(--ease-out-expo);
  font-size: 1.2rem;
  color: var(--on-surface-variant);
}

.accordion.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
  background: var(--surface);
}

.accordion.open .accordion-body {
  max-height: 500px;
}

.accordion-body-inner {
  padding: var(--space-md);
}

/* ===================================
   COMPONENT: TOAST NOTIFICATION
   =================================== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-highest);
  color: var(--on-surface);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-spring);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--outline-variant);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast .material-symbols-outlined {
  color: var(--success);
  font-size: 1.2rem;
}

/* ===================================
   COMPONENT: BOTTOM NAV MOBILE
   =================================== */
.mobile-nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--outline-variant);
}

.mobile-nav a {
  color: var(--on-surface-variant);
  transition: color 0.3s ease;
  position: relative;
}

.mobile-nav a.active {
  color: var(--primary);
  font-weight: 500;
}

.nav-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.4s var(--ease-spring);
}

/* ===================================
   COMPONENT: CONFETTI
   =================================== */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  border-radius: 2px;
  opacity: 0;
  z-index: var(--z-toast);
  pointer-events: none;
}

/* ===================================
   COMPONENT: TIMELINE
   =================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-md) 0;
}

.timeline-step {
  display: flex;
  gap: var(--space-md);
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--outline-variant);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-spring);
}

.timeline-step.active .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.timeline-step.completed .timeline-dot {
  background: var(--success);
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 5.5px;
  top: 16px;
  bottom: 0;
  width: 1px;
  background: var(--outline-variant);
  z-index: 1;
}

.timeline-step.completed:not(:last-child)::before {
  background: var(--success);
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-surface);
  margin-bottom: 2px;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

/* ===================================
   KEYFRAME ANIMATIONS
   =================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fadeScale {
  0% { 
    opacity: 0; 
    transform: scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes badgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@keyframes bounceIn {
  0% { 
    opacity: 0; 
    transform: scale(0.3); 
  }
  50% { 
    transform: scale(1.08); 
  }
  70% { 
    transform: scale(0.95); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

/* ===================================
   ANIMATION UTILITY CLASSES
   =================================== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-spring);
}

.anim-scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.anim-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }

/* ===================================
   SCROLLBAR STYLING (Webkit)
   =================================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--outline-variant);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--outline);
}

/* ===================================
   SELECTION STYLING
   =================================== */
::selection {
  background: var(--primary);
  color: var(--on-primary);
}

/* ===================================
   RESPONSIVE: CATALOG FILTERS
   =================================== */
@media(min-width: 900px) {
  .catalog-filters { display: block !important; }
}
@media(min-width: 1024px) {
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ===================================
   SAFE AREA (iPhone Notch / Dynamic Island)
   =================================== */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
