/*
 * Scelto Bags - Homepage Redesign Stylesheet
 * Professional, Modern, and Mobile-Responsive Design
 */

/* ==========================================
   ELEMENTOR PREVIEW MODE - DISABLE ANIMATIONS
   ========================================== */
/* When editing in Elementor, show all content immediately without animations */
#elementor-preview .h2026-hero-slide,
#elementor-preview .h2026-fade-in,
#elementor-preview .h2026-product-card,
#elementor-preview .h2026-category-card,
#elementor-preview .h2026-stat-item,
#elementor-preview .h2026-scale-in,
.elementor-editor-active .h2026-hero-slide,
.elementor-editor-active .h2026-fade-in,
.elementor-editor-active .h2026-product-card,
.elementor-editor-active .h2026-category-card,
.elementor-editor-active .h2026-stat-item,
.elementor-editor-active .h2026-scale-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ==========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================== */
:root {
  /* Color Palette - Elegant & Classy */
  --color-primary: #8B6F47;
  --color-primary-dark: #6B5437;
  --color-primary-light: #A68A5F;
  --color-secondary: #2C2C2C;
  --color-accent: #D4AF37;
  --color-text-dark: #1A1A1A;
  --color-text-light: #666666;
  --color-text-white: #FFFFFF;
  --color-bg-light: #FAFAFA;
  --color-bg-white: #FFFFFF;
  --color-border: #E5E5E5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8B6F47 0%, #A68A5F 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(139, 111, 71, 0.9) 0%, rgba(44, 44, 44, 0.8) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 3.5rem;

  /* Typography - More Moderate & Beautiful */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-size-xs: 0.813rem;
  --font-size-sm: 0.938rem;
  --font-size-md: 1.063rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.25rem;
  --font-size-3xl: 3rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ==========================================
   GOOGLE FONTS IMPORT
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-normal);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.h2026-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.h2026-section-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
  position: relative;
}

.h2026-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

.h2026-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.h2026-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.h2026-btn:hover::before {
  left: 100%;
}

.h2026-btn-primary {
  background: #000000;
  color: var(--color-text-white);
  box-shadow: var(--shadow-md);
}

.h2026-btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.h2026-btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-md);
}

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

/* Animation Classes */
.h2026-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.h2026-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.h2026-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.h2026-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.h2026-hero-section {
  position: relative;
  height: 85vh;
  min-height: 550px;
  overflow: hidden;
  background: var(--color-bg-light);
}

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

.h2026-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2026-hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.h2026-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default: fill container and crop excess */
  object-position: center center;
  /* Default: center the image */
  /* object-fit and object-position can be overridden by Elementor widget settings */
  z-index: 1;
}

.h2026-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  z-index: 2;
}

.h2026-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-text-white);
  max-width: 800px;
  padding: 0 var(--spacing-md);
  bottom: -80px;
}

.h2026-hero-subtitle {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.h2026-hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.h2026-hero-description {
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.h2026-hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.h2026-hero-nav {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: var(--spacing-xs);
}

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

.h2026-hero-dot.active {
  background: var(--color-text-white);
  transform: scale(1.2);
}

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

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

/* ==========================================
   CATEGORY SHOWCASE SECTION
   ========================================== */
.h2026-category-showcase {
  background: var(--color-bg-light);
}

.h2026-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.h2026-category-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.h2026-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.h2026-category-card:hover .h2026-category-image {
  transform: scale(1.1);
}

.h2026-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
  transition: background var(--transition-normal);
}

.h2026-category-card:hover .h2026-category-overlay {
  background: linear-gradient(to top, rgba(139, 111, 71, 0.9) 0%, rgba(139, 111, 71, 0.3) 60%);
}

.h2026-category-info h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  color: var(--color-text-white);
  margin-bottom: var(--spacing-xs);
}

.h2026-category-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

/* ==========================================
   FEATURED PRODUCTS SECTION
   ========================================== */
.h2026-featured-products {
  background: var(--color-bg-white);
}

.h2026-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.h2026-product-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

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

.h2026-product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-light);
}

.h2026-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.h2026-product-card:hover .h2026-product-image {
  transform: scale(1.08);
}

.h2026-product-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--color-accent);
  color: var(--color-text-white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}


.h2026-product-actions {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 3;
}

.h2026-product-card:hover .h2026-product-actions {
  bottom: var(--spacing-sm);
  opacity: 1;
}

.h2026-product-action-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-text-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.h2026-product-action-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.h2026-product-action-btn svg {
  width: 20px;
  height: 20px;
}

.h2026-product-action-btn.adding {
  background: #4CAF50;
  color: #fff;
  pointer-events: none;
}

.h2026-product-action-btn.added {
  background: #4CAF50;
  color: #fff;
}


.h2026-product-info {
  padding: var(--spacing-md);
}

.h2026-product-category {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

.h2026-product-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.h2026-product-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
}

.h2026-product-price .h2026-original-price {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-left: var(--spacing-xs);
  font-weight: 400;
}

/* ==========================================
   MODEL SHOWCASE SECTION
   ========================================== */
.h2026-model-showcase {
  background: var(--color-bg-white);
}

.h2026-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  align-items: center;
}

.h2026-showcase-content {
  padding: var(--spacing-md);
}

.h2026-showcase-subtitle {
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.h2026-showcase-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.h2026-showcase-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.h2026-showcase-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.h2026-showcase-features li {
  font-size: var(--font-size-sm);
  color: var(--color-text-dark);
  padding: var(--spacing-xs) 0;
  padding-left: 1.5rem;
  position: relative;
}

.h2026-showcase-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.h2026-showcase-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}

.h2026-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.h2026-showcase-image-wrapper:hover .h2026-showcase-image {
  transform: scale(1.05);
}

.h2026-showcase-grid.reverse {
  direction: rtl;
}

.h2026-showcase-grid.reverse>* {
  direction: ltr;
}

/* ==========================================
   INSTAGRAM FEED SECTION
   ========================================== */
.h2026-instagram-section {
  background: var(--color-bg-light);
}

.h2026-instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.h2026-instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.h2026-instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.h2026-instagram-item:hover .h2026-instagram-image {
  transform: scale(1.1);
}

.h2026-instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 111, 71, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.h2026-instagram-item:hover .h2026-instagram-overlay {
  opacity: 1;
}

.h2026-instagram-icon {
  font-size: 3rem;
  color: var(--color-text-white);
}

/* ==========================================
   BRAND STORY SECTION
   ========================================== */
.h2026-brand-story-section {
  background: var(--color-bg-light);
  text-align: center;
}

.h2026-brand-story-section .h2026-section-title {
  color: var(--color-secondary);
}

.h2026-brand-story-content {
  max-width: 800px;
  margin: 0 auto;
}

.h2026-brand-story-text {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--spacing-lg);
}

.h2026-brand-story-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.h2026-stat-item {
  padding: var(--spacing-md);
}

.h2026-stat-number {
  font-family: var(--font-primary);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.h2026-stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets and below */
@media (max-width: 1024px) {
  :root {
    --font-size-3xl: 3rem;
    --font-size-2xl: 2.5rem;
    --spacing-xl: 4rem;
  }

  .h2026-hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .h2026-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .elementor-element .h2026-products-grid,
  .h2026-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-2xl: 2rem;
    --font-size-xl: 1.75rem;
    --font-size-lg: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
  }

  .h2026-container {
    padding: 0 var(--spacing-sm);
  }

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

  .h2026-hero-section {
    height: 70vh;
    min-height: 450px;
  }

  .h2026-hero-content {
    bottom: -40px;
    padding: 0 var(--spacing-sm);
  }

  .h2026-hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .h2026-hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
  }

  .h2026-hero-description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
  }

  .h2026-hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    margin-bottom: 3rem;
  }

  .h2026-hero-cta .h2026-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 2rem;
  }

  .h2026-hero-nav {
    bottom: var(--spacing-sm);
  }

  /* Ensure hero images cover full container on mobile */
  .h2026-hero-background {
    object-fit: cover !important;
    min-height: 100%;
    min-width: 100%;
  }

  .h2026-showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .h2026-showcase-grid.reverse {
    direction: ltr;
  }

  .h2026-brand-story-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .h2026-category-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .h2026-category-card {
    height: 300px;
  }

  .h2026-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--spacing-sm);
  }

  .h2026-product-info {
    padding: var(--spacing-sm);
  }

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

  .h2026-newsletter-form {
    flex-direction: column;
  }

  .h2026-newsletter-input {
    width: 100%;
  }

  .h2026-btn {
    padding: 0.875rem 2rem;
    font-size: var(--font-size-xs);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
  }

  .h2026-hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .h2026-section-title {
    font-size: var(--font-size-xl);
  }

  .elementor-element .h2026-products-grid,
  .h2026-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================
   LOADING ANIMATIONS
   ========================================== */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

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

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ==========================================
   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 for keyboard navigation */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

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