/* ============================================
   BUMISARI PRISMATAMA - CUSTOM STYLES
   ============================================ */

/* CSS Variables */
:root {
  /* Colors from logo */
  --color-primary: #1E3A8A;
  --color-primary-dark: #1e3a8a;
  --color-secondary: #93C5FD;
  --color-accent: #F59E0B;
  --color-accent-hover: #d97706;
  --color-dark: #1F2937;
  --color-light: #F8FAFC;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  
  /* Typography */
  --font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-family-heading: 'Barlow Condensed', 'Barlow', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: 5rem;
  --container-max: 1280px;
  
  /* Shadows */
  --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);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

@media (max-width: 374px) {
  :root {
    --section-padding: 3rem;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  :root {
    --section-padding: 4rem;
  }
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

/* Section Spacing */
.section-padding {
  padding: var(--section-padding) 0;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

#navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

:root {
  --navbar-height: 64px;
}

@media (min-width: 640px) {
  :root {
    --navbar-height: 80px;
  }
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hero-section {
  margin-top: var(--navbar-height);
  height: calc(100vh - var(--navbar-height));
  min-height: 260px;
  width: 100%;
}

#hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0f172a;
}

.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  #hero-slider {
    height: 100%;
  }

  .hero-slide-bg {
    background-size: contain;
    background-position: center;
    background-color: #0f172a;
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  z-index: 20;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: white;
  border-color: var(--color-accent);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem;
  pointer-events: none;
  z-index: 20;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-base);
}

@media (max-width: 374px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .slider-controls {
    bottom: 0.5rem;
  }
}

/* ============================================
   ABOUT SECTION STYLES
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.about-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.about-content .subtitle {
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.7vw, 1.125rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 374px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin: 0;
}

/* ============================================
   PRODUCTS SECTION STYLES
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

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

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

.product-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.product-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--color-gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-text {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.brand-card {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.brand-logo-wrap {
  background: #f8fafc;
  padding: 0.75rem;
}

.brand-logo {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
  border-radius: 0.5rem;
}

.brand-info {
  padding: 0.9rem 1rem 1rem;
}

.brand-info h3 {
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.brand-info p {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

@media (max-width: 374px) {
  .brand-logo {
    height: 120px;
  }

  .brand-info h3 {
    font-size: 1rem;
  }
}

/* ============================================
   MODAL STYLES
   ============================================ */

#product-modal {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

#product-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

#product-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-gray-600);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-gray-200);
  color: var(--color-dark);
}

.modal-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform var(--transition-fast);
  will-change: transform;
}

@media (min-width: 768px) {
  .modal-image {
    height: 300px;
  }
}

.modal-gallery {
  position: relative;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.modal-gallery.dragging {
  cursor: grabbing;
}

.modal-gallery.dragging .modal-image {
  transition: none;
}

.modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 41, 55, 0.75);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

@media (min-width: 768px) {
  .modal-gallery-nav {
    width: 42px;
    height: 42px;
  }
}

.modal-gallery-prev {
  left: 0.75rem;
}

.modal-gallery-next {
  right: 0.75rem;
}

.modal-gallery-nav:hover {
  background: rgba(31, 41, 55, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.modal-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.15rem;
}

.modal-gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: var(--color-gray-200);
  cursor: pointer;
}

.modal-gallery-dot.active {
  background: var(--color-accent);
}

.modal-body {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .modal-body {
    padding: 2rem;
  }
}

.modal-body h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-body p {
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.modal-features {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-gray-700);
}

.modal-features li i {
  color: var(--color-accent);
}

.modal-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 374px) {
  .modal-cta {
    flex-direction: column;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-primary {
    padding: 1rem 2rem;
  }
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-primary);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-secondary {
    padding: 1rem 2rem;
  }
}

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

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.contact-info h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-item-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

.contact-item-text h4 {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: var(--color-gray-600);
  margin: 0;
}

.contact-item-text a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-item-text a:hover {
  text-decoration: underline;
}

.contact-cta-card {
  background: var(--color-primary);
  border-radius: 1rem;
  padding: 1.5rem;
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-cta-card {
    padding: 3rem;
  }
}

.contact-cta-card h3 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-cta-card p {
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-cta-card .btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .contact-cta-card .btn-accent {
    padding: 1rem 2rem;
  }
}

.contact-cta-card .btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-map-wrap {
  margin-top: 1.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 374px) {
  .contact-map-wrap iframe {
    height: 260px;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .footer-social a {
    width: 40px;
    height: 40px;
  }
}

.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

.wa-float-wrap {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
}

.wa-float-notice {
  background: #ffffff;
  color: var(--color-dark);
  border: 1px solid rgba(31, 41, 55, 0.12);
  border-radius: 0.65rem;
  padding: 0.45rem 0.65rem;
  max-width: 220px;
  font-size: 0.72rem;
  line-height: 1.35;
  box-shadow: var(--shadow-lg);
  animation: waNoticePulse 2.8s ease-in-out infinite;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  position: relative;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: waButtonPulse 2.4s ease-in-out infinite;
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 28px rgba(37, 211, 102, 0.45);
}

.wa-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.wa-float-ping {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPing 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes waButtonPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes waPing {
  0% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes waNoticePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 374px) {
  .wa-float-wrap {
    right: 0.6rem;
    bottom: 0.6rem;
    gap: 0.35rem;
  }

  .wa-float-notice {
    max-width: 160px;
    font-size: 0.65rem;
    padding: 0.35rem 0.5rem;
  }

  .wa-float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

#mobile-menu.active {
  max-height: 300px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  #navbar,
  .slider-controls,
  .slider-arrows,
  #product-modal,
  .wa-float-wrap,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    color: black;
  }
  
  .hero-slide-bg::before {
    background: white;
  }
  
}
