/* ============================================
   MALATH EVENTS - LUXURY DESIGN SYSTEM
   مؤسسة ملاذ للحفلات والمناسبات الشرقية
   ============================================ */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === ROOT VARIABLES === */
:root {
  /* Light Mode Colors - Gulf Luxury */
  --ivory: #FDF9F3;
  /* Soft ivory, nearly white */
  --beige: #D5B487;
  /* Muted, rich beige */
  --beige-light: #F2E7D3;
  /* Lighter beige for subtle backgrounds */
  --gold: #A9875F;
  /* Refined, slightly muted gold */
  --gold-dark: #8C6F4C;
  /* Deeper gold for contrast */
  --gold-light: #E4C198;
  /* Brighter gold for highlights */
  --text-primary: #332B20;
  /* Dark brown-black for primary text */
  --text-secondary: #6A5B4A;
  /* Muted brown for secondary text */
  --text-muted: #9E8D7B;
  /* Light brown for subtle text */

  /* Accent Colors (updated to align with new palette) */
  --accent-burgundy: #7C3D4D;
  /* Richer burgundy */
  --accent-emerald: #3A6B5C;
  /* Deeper emerald */

  /* Neutral Shades (adjusted to new palette) */
  --white: #FFFFFF;
  --gray-50: #FAFAF9;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-300: #D6D3D1;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #44403C;
  --gray-800: #292524;
  --gray-900: #1C1917;

  /* Semantic Colors (kept as is for functionality) */
  --success: #059669;
  --error: #DC2626;
  --warning: #D97706;
  --info: #2563EB;

  /* Background & Surface (updated to new palette) */
  --bg-primary: var(--ivory);
  --bg-secondary: var(--beige-light);
  --bg-elevated: var(--white);
  --surface: rgba(253, 249, 243, 0.8);
  /* Slightly more opaque ivory for surface */
  --surface-glass: rgba(255, 255, 255, 0.25);
  /* Increased opacity for glass effect */

  /* Border & Divider (updated) */
  --border-color: rgba(169, 135, 95, 0.3);
  /* Gold-based border color */
  --divider: rgba(51, 43, 32, 0.15);
  /* Primary text-based divider */

  /* Shadows (updated for new gold) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px rgba(169, 135, 95, 0.4);
  /* Updated gold shadow */

  /* Typography (updated font-display) */
  --font-arabic: 'Tajawal', sans-serif;
  --font-display: 'Amiri', serif;
  /* Changed to Amiri for a more classic, luxurious Arabic feel */
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.75rem;
  /* 60px */
  --text-7xl: 4.5rem;
  /* 72px */

  /* Spacing Scale */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */

  /* Border Radius */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* === DARK MODE === */
[data-theme="dark"] {
  --charcoal: #1A1A1A;
  /* Dark charcoal */
  --deep-black: #0A0A0A;
  /* True black for deep contrast */
  --dark-surface: #252525;
  /* Dark surface color */
  --gold-glow: #E4C198;
  /* Lighter gold for glow in dark mode */

  --bg-primary: var(--deep-black);
  --bg-secondary: var(--charcoal);
  --bg-elevated: var(--dark-surface);
  --surface: rgba(10, 10, 10, 0.8);
  /* Darker opaque surface */
  --surface-glass: rgba(255, 255, 255, 0.08);
  /* Subtle glass effect */

  --text-primary: #F2E7D3;
  /* Light beige for primary text */
  --text-secondary: #D5B487;
  /* Muted gold for secondary text */
  --text-muted: #9E8D7B;
  /* Light brown for subtle text */

  --border-color: rgba(169, 135, 95, 0.4);
  /* Gold-based border */
  --divider: rgba(242, 231, 211, 0.15);
  /* Light beige-based divider */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 10px 40px rgba(228, 193, 152, 0.3);
  /* Lighter gold shadow */
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  /* Base font size for better scaling */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  /* Increased line-height for better readability */
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  font-size: var(--text-base);
  /* Ensure base font size is applied consistently */
  text-rendering: optimizeLegibility;
  /* Improves text rendering */
}

/* Disable transitions temporarily for instant theme switch */
body.no-transition * {
  transition: none !important;
}


/* Arabic Text Support */
body[lang="ar"],
.arabic-text {
  font-family: var(--font-arabic);
  direction: rtl;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  /* Increased margin for better spacing */
}

h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
  /* Adjusted margin */
}

h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  /* Adjusted margin */
}

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

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-5);
  /* Adjusted margin for paragraphs */
  color: var(--text-secondary);
  font-size: var(--text-base);
  /* Ensure consistent paragraph font size */
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
  outline-offset: 4px;
  /* Improved focus outline */
}

a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
  /* Added underline on hover for better UX */
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

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

.section {
  padding: var(--space-20) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

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

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

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

.text-gold {
  color: var(--gold);
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
  min-height: 48px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover:not(:disabled) {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--surface-glass);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  min-height: 56px;
}

.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  min-height: 40px;
}

/* === CARDS === */
.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === INPUTS === */
.input-group {
  margin-bottom: var(--space-6);
}

.input-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.input-label.required::after {
  content: " *";
  color: var(--error);
}

.input {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 48px;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

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

.input-error-message {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--error);
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

select.input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 1.5em;
  padding-right: var(--space-12);
}

/* === GRID SYSTEM === */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: var(--shadow-gold);
  }

  50% {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

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

/* Hover Effects */
.hover-lift:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.3s ease;
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

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

  .section {
    padding: var(--space-16) 0;
  }

  .section-lg {
    padding: var(--space-20) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section-lg {
    padding: var(--space-16) 0;
  }

  .btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
  }

  /* Mobile UX Improvements */
  .hero {
    padding-top: 70px;
    min-height: 90vh;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-description {
    font-size: var(--text-lg);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Touch-friendly buttons */
  .btn {
    min-height: 50px;
    padding: var(--space-4) var(--space-6);
  }

  /* Mobile navigation improvements */
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  /* Gallery mobile optimization */
  .gallery-item {
    margin-bottom: var(--space-4);
  }

  /* Form mobile improvements */
  .booking-form-wrapper {
    padding: var(--space-6);
  }

  .input {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Floating buttons mobile positioning */
  .floating-buttons {
    right: var(--space-3);
    bottom: var(--space-6);
  }

  .floating-btn {
    width: 56px;
    height: 56px;
  }
}

/* === NOTIFICATION SYSTEM === */
.notification-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-tooltip);
  pointer-events: none;
}

.notification {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 300px;
  max-width: 500px;
  pointer-events: all;
  transform: translateX(120%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(5, 150, 105, 0.05));
}

.notification.error {
  border-color: var(--error);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
}

.notification.warning {
  border-color: var(--warning);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.05));
}

.notification.info {
  border-color: var(--info);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
}

.notification-icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.notification.success .notification-icon {
  color: var(--success);
}

.notification.error .notification-icon {
  color: var(--error);
}

.notification.warning .notification-icon {
  color: var(--warning);
}

.notification.info .notification-icon {
  color: var(--info);
}

.notification-content {
  flex: 1;
  font-family: var(--font-arabic);
}

.notification-title {
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.notification-message {
  font-size: var(--text-sm);
  line-height: 1.5;
}

.notification-close {
  background: none;
  border: none;
  font-size: var(--text-lg);
  cursor: pointer;
  padding: var(--space-1);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.notification-close:hover {
  opacity: 1;
}

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

/* Focus Styles */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* === LOADING ANIMATION === */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.loading-content {
  text-align: center;
  color: var(--gold);
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-6);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.loaded .loading-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === COMPONENT IMPORTS === */
@import url('components.css');