/* ============================================
   Rcam — Main Stylesheet (REFACTORED ✅)
   Premium minimalist e-commerce design
   ============================================ */

/* CSS Variables */
:root {
  /* Backgrounds ONLY */
  --bg-primary: #f5f5f0;
  --bg-secondary: #f5f5f0;
  --bg-image: #f5f5f0;

  /* Text ONLY */
  --text-primary: #1a1a1a;
  --text-muted: #6b6b6b;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;

  /* Accent palette */
  --color-accent: #e8c97a;
  --color-accent-hover: #c9a84c;

  /* Surfaces */
  --color-surface: #ffffff;
  --color-bg: #f5f5f0;
  --color-border: #e8e8e3;
  --nav-bg: #1a1a1a;
  --footer-bg: #1a1a1a;

  /* Buttons */
  --radius-btn: 6px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-card: 12px;
  --radius-pill: 20px;
  --radius-full: 999px;
  --container-max: 1200px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 96px;
  --nav-height: 72px;

  /* Motion */
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.16);
}

/* ============================================
   Global Animation Keyframes
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Lato",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--nav-bg);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.navbar .logo {
  color: #ffffff;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar .icon-btn {
  color: #ffffff;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge.bump {
  animation: badgeBump 0.3s ease;
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 2px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar .mobile-toggle span {
  background: #ffffff;
}

.mobile-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.mobile-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 137, 61, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(168, 137, 61, 0.24);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(232, 201, 122, 0.12);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Sections & Containers
   ============================================ */

.section {
  padding: var(--space-4xl) var(--space-lg);
}

.section-alt {
  background: var(--bg-primary);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-primary);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 20px auto 0;
  background: var(--color-accent);
  border-radius: 999px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  text-align: center;
}

.footer p {
  color: #ffffff;
  font-size: 0.875rem;
}

/* ============================================
   Profile Dropdown
   ============================================ */

.profile-dropdown-wrapper {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-surface);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1100;
}

.profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dropdown-item:hover {
  background: rgba(232, 201, 122, 0.12);
  color: var(--color-accent);
}

.dropdown-item svg {
  flex-shrink: 0;
  color: var(--color-text-secondary);
}

.dropdown-item:hover svg {
  color: var(--color-accent);
}

.dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 0;
}

.logout-btn {
  color: #ff3b30;
}

.logout-btn:hover {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.06);
}

.logout-btn svg {
  color: #ff3b30;
}

/* ============================================
   Auth Modal
   ============================================ */

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.auth-modal-overlay.active .auth-modal {
  transform: scale(1);
}

.auth-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}

.auth-tabs {
  display: flex;
  gap: 4px;
}

.auth-tab {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.auth-tab.active {
  color: var(--color-text);
  background: rgba(201, 168, 76, 0.12);
}

.auth-modal-close {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition);
}

.auth-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.auth-modal-close svg {
  width: 20px;
  height: 20px;
}

.auth-modal-body {
  padding: 24px 28px 32px;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.auth-form.active {
  display: flex;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-form .form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.auth-form .form-group input {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
}

.auth-form .form-group input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.auth-error {
  color: #ff3b30;
  font-size: 0.875rem;
  min-height: 20px;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

/* ============================================
   Form Utilities
   ============================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Enhanced focus-visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.icon-btn:focus-visible,
.nav-link:focus-visible,
.auth-tab:focus-visible,
.modal-close:focus-visible,
.auth-modal-close:focus-visible {
  border-radius: var(--radius-full);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row.two-col > .form-group {
  flex: 1 1 50%;
}

.form-row.three-col > .form-group {
  flex: 1 1 33.333%;
}

/* ============================================
   Favorite Button
   ============================================ */

.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.favorite-btn:hover {
  transform: scale(1.1);
  color: #ff3b30;
}

.favorite-btn.active {
  color: #ff3b30;
}

.favorite-btn.active svg {
  fill: #ff3b30;
  stroke: #ff3b30;
}

.product-image-wrapper {
  position: relative;
}

/* ============================================
   Star Rating
   ============================================ */

.star {
  width: 16px;
  height: 16px;
  color: #ffb800;
  transition: transform 0.2s ease;
}

.star.empty {
  color: #e0e0e0;
}

/* ============================================
   Empty States
   ============================================ */

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-secondary);
}

.empty-state p {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

/* ============================================
   Modal Overlay Base
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Scroll-Triggered Animations
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.fade-in {
  transform: none;
}

.animate-on-scroll.fade-in.is-visible {
  opacity: 1;
}

.animate-on-scroll.scale-in {
  transform: scale(0.94);
}

.animate-on-scroll.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.slide-right {
  transform: translateX(-30px);
}

.animate-on-scroll.slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(30px);
}

.animate-on-scroll.slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.08s;
}
.stagger-2 {
  transition-delay: 0.16s;
}
.stagger-3 {
  transition-delay: 0.24s;
}
.stagger-4 {
  transition-delay: 0.32s;
}
.stagger-5 {
  transition-delay: 0.4s;
}
.stagger-6 {
  transition-delay: 0.48s;
}

/* ============================================
   Skeleton / Shimmer Loading States
   ============================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-bg) 25%,
    var(--color-surface) 50%,
    var(--color-bg) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
  border-radius: 4px;
}

.skeleton-text:last-child {
  width: 75%;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
}

/* ============================================
   Lazy Image Loading
   ============================================ */

.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(8px);
}

.lazy-image.loaded {
  opacity: 1;
  filter: blur(0);
}

/* ============================================
   Spacing Utilities
   ============================================ */

.py-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-md {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-xl {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gap-sm {
  gap: 16px;
}
.gap-md {
  gap: 24px;
}
.gap-lg {
  gap: 40px;
}
.gap-xl {
  gap: 64px;
}

/* ============================================
   Hover Utilities
   ============================================ */

.hover-lift {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* ============================================
   Responsive Base
   ============================================ */

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1.0625rem;
    color: var(--text-primary);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-accent);
    background: rgba(232, 201, 122, 0.12);
  }

  .mobile-toggle {
    display: flex;
  }

  .section {
    padding: 60px 24px;
  }

  .form-row.two-col,
  .form-row.three-col {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .btn {
    padding: 11px 22px;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 15px;
  }
}

/* ============================================
   Reduced Motion Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .skeleton {
    animation: none;
    background: #f5f5f0;
  }

  .lazy-image {
    opacity: 1;
    filter: none;
    transition: none;
  }
}
