/**
 * ==========================================================================
 * UX Element: Landing Header (Bố cục 4: Heritage Top-Bar)
 * Theme: Cốm Làng Vòng
 * Tuân thủ quy chuẩn thiết kế: AGENTS.md
 * Đã tối ưu hoàn hảo cho Desktop, Tablet (768px-1023px) và Mobile (< 768px)
 * ==========================================================================
 */

:root {
  --cv-cream: #FFFDF5;
  --cv-soft-lime: #F1F5D8;
  --cv-green-primary: #A8C957;
  --cv-green-hover: #8FB83F;
  --cv-green-dark: #527A32;
  --cv-green-deep: #31572C;
  --cv-brown: #7A5C3E;
  --cv-border-light: #E4E9D3;
  --cv-white: #FFFFFF;
  --cv-shadow-sm: 0 4px 16px rgba(49, 87, 44, 0.06);
  --cv-shadow-md: 0 8px 30px rgba(49, 87, 44, 0.08);
}

/* ==========================================================================
   1. MAIN HEADER WRAPPER
   ========================================================================== */
.cv-landing-header {
  position: relative;
  width: 100%;
  background-color: var(--cv-cream);
  z-index: 9999;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 4px 20px rgba(49, 87, 44, 0.06);
  border-bottom: 2px solid var(--cv-green-primary, #A8C957);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-radius 0.3s ease, border-color 0.3s ease;
  overflow: visible;
}

/* Sticky Header - Ghim cố định ở đầu trang khi cuộn */
.cv-landing-header.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

.cv-landing-header.is-scrolled,
.cv-landing-header.scrolled {
  background-color: rgba(255, 253, 245, 0.68) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom-left-radius: 24px !important;
  border-bottom-right-radius: 24px !important;
  box-shadow: 0 10px 32px rgba(49, 87, 44, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  border-bottom: 2px solid var(--cv-green-primary, #A8C957) !important;
}

/* Tự động thu gọn Top-bar mượt mà khi cuộn trang */
.cv-landing-header.is-scrolled .cv-topbar,
.cv-landing-header.scrolled .cv-topbar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.cv-landing-header.is-scrolled .cv-main-nav,
.cv-landing-header.scrolled .cv-main-nav {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 62px;
  background: transparent !important;
}

/* Transparent mode on Hero */
.cv-landing-header.is-transparent:not(.is-scrolled) {
  background-color: transparent;
  border-bottom: 1.5px solid rgba(168, 201, 87, 0.45);
}

.cv-landing-header.is-transparent:not(.is-scrolled) .cv-topbar {
  background-color: rgba(24, 59, 42, 0.85);
  backdrop-filter: blur(8px);
}

.cv-landing-header.is-transparent:not(.is-scrolled) .cv-nav-menu > li > a {
  color: #FFFFFF;
}

/* ==========================================================================
   2. CONTAINER RESPONSIVE (AGENTS.md Section 19)
   ========================================================================== */
.cv-header-container {
  width: min(100% - 64px, 1200px);
  margin-inline: auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cv-header-container {
    width: min(100% - 40px, 960px);
  }
}

@media (max-width: 767px) {
  .cv-header-container {
    width: calc(100% - 24px);
  }
}

/* ==========================================================================
   3. THANH TOP-BAR (TÊN THƯƠNG HIỆU & NHIỀU SỐ HOTLINE)
   ========================================================================== */
.cv-topbar {
  background-color: var(--cv-green-deep);
  color: var(--cv-soft-lime);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12.5px;
  padding: 8px 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
  border-bottom: 1px solid rgba(241, 245, 216, 0.12);
  line-height: 1.4;
  width: 100%;
}

.cv-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: clamp(16px, 3vw, 40px);
  box-sizing: border-box;
  gap: 16px;
}

/* Tên thương hiệu Topbar - Desktop: Cùng 1 dòng (Name • Tagline) */
.cv-topbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-right: auto;
}

.cv-topbar-name {
  font-family: "Noto Serif", serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cv-white);
  letter-spacing: 0.02em;
}

.cv-topbar-divider {
  display: inline-block;
  color: rgba(241, 245, 216, 0.4);
  font-size: 11px;
}

.cv-topbar-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #DCE8C7;
  font-style: italic;
}

/* Hotlines List */
.cv-topbar-hotlines {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cv-hotline-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #DCE8C7;
  font-size: 12px;
  font-weight: 500;
}

.cv-phone-icon {
  animation: cvPhoneJiggle 4s infinite ease;
}

@keyframes cvPhoneJiggle {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(12deg); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
}

.cv-hotline-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cv-hotline-link {
  color: var(--cv-green-primary);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.cv-hotline-link:hover {
  color: var(--cv-white);
  text-decoration: underline;
}

.cv-hotline-sep {
  color: rgba(241, 245, 216, 0.4);
}

/* ==========================================================================
   4. KHU VỰC NAVBAR CHÍNH (MAIN NAVBAR)
   ========================================================================== */
.cv-main-nav {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.3s ease, min-height 0.3s ease;
}

.cv-main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: clamp(16px, 3vw, 40px);
  box-sizing: border-box;
  gap: 20px;
}

/* Logo Image Only */
.cv-header-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cv-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cv-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.cv-brand-link:hover .cv-brand-logo {
  transform: scale(1.03);
}

/* ==========================================================================
   5. NAVIGATION MENU (DESKTOP & TABLET)
   ========================================================================== */
.cv-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin: 0 16px;
}

/* Capsule Floating Dock Container */
.cv-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 4px;
  gap: 3px;
  background: rgba(255, 253, 245, 0.92);
  border: 1px solid rgba(82, 122, 50, 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(49, 87, 44, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-landing-header.is-transparent:not(.is-scrolled) .cv-nav-menu {
  background: rgba(255, 253, 245, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 24px rgba(49, 87, 44, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cv-landing-header.is-scrolled .cv-nav-menu,
.cv-landing-header.scrolled .cv-nav-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(82, 122, 50, 0.18) !important;
  box-shadow: 0 4px 16px rgba(49, 87, 44, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cv-nav-menu > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav Item Links */
.cv-nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 17px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #31572C;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

/* Hover State: Soft Com-green Pill */
.cv-nav-menu > li > a:hover {
  color: #1E3D18;
  background-color: rgba(168, 201, 87, 0.22);
  transform: translateY(-1px);
}

/* Active State: Deep Forest Green Badge */
.cv-nav-menu > li.active > a,
.cv-nav-menu > li.current-menu-item > a,
.cv-nav-menu > li.current_page_item > a {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #527A32 0%, #31572C 100%);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(49, 87, 44, 0.25);
  transform: translateY(-1px);
}

/* Submenu Dropdown */
.cv-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: rgba(255, 253, 245, 0.98);
  border: 1px solid rgba(82, 122, 50, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(49, 87, 44, 0.12);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cv-nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cv-nav-menu .sub-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-nav-menu .sub-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cv-green-deep);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cv-nav-menu .sub-menu a:hover {
  background-color: var(--cv-soft-lime);
  color: var(--cv-green-dark);
  transform: translateX(3px);
}

/* ==========================================================================
   6. CTA BUTTON (ĐÃ BỎ ĐÈN LỒNG)
   ========================================================================== */
.cv-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 22px;
  background-color: var(--cv-green-primary);
  color: var(--cv-green-deep) !important;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(168, 201, 87, 0.4);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cv-cta-btn:hover {
  background-color: var(--cv-green-hover);
  color: var(--cv-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(143, 184, 63, 0.5);
}

.cv-cta-btn:active {
  transform: translateY(0);
}

.cv-cta-label {
  display: inline-block;
}


/* ==========================================================================
   8. HAMBURGER TOGGLE BUTTON
   ========================================================================== */
.cv-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  background: rgba(255, 253, 245, 0.95) !important;
  border: 1px solid rgba(82, 122, 50, 0.25) !important;
  border-radius: 10px !important;
  color: var(--cv-green-deep, #31572C) !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(49, 87, 44, 0.08) !important;
  transition: all 0.25s ease !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  position: relative;
  z-index: 100;
}

.cv-hamburger:hover {
  background: rgba(241, 245, 216, 0.95) !important;
  border-color: var(--cv-green-primary, #A8C957) !important;
  color: var(--cv-green-dark, #527A32) !important;
  transform: scale(1.04);
}

.cv-hamburger:active {
  transform: scale(0.96);
}

.cv-hamburger-icon {
  display: block;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.cv-hamburger .cv-icon-close {
  display: none !important;
}

.cv-hamburger[aria-expanded="true"] {
  background: rgba(82, 122, 50, 0.12) !important;
  border-color: var(--cv-green-dark, #527A32) !important;
}

.cv-hamburger[aria-expanded="true"] .cv-icon-open {
  display: none !important;
}

.cv-hamburger[aria-expanded="true"] .cv-icon-close {
  display: block !important;
}

/* ==========================================================================
   9. ĐẶC BIỆT: CHUẨN HÓA TABLET (768px - 1023px) — AGENTS.md Quy chuẩn 6 & 20
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .cv-topbar {
    padding: 7px 0;
    font-size: 12px;
  }
  .cv-topbar-name {
    font-size: 12.5px;
  }
  .cv-topbar-hotlines {
    font-size: 12px;
  }
  .cv-hotline-link {
    font-size: 12px;
  }

  /* Trên Tablet: MENU VẪN HIỆN, giảm khoảng cách theo AGENTS.md */
  .cv-header-nav {
    display: flex !important;
  }
  .cv-nav-menu {
    gap: 2px;
    padding: 3px;
  }
  .cv-nav-menu > li > a {
    font-size: 12.5px;
    padding: 6px 12px;
  }

  /* Nút CTA gọn hơn */
  .cv-cta-desktop {
    display: inline-flex !important;
    min-height: 38px;
    padding: 7px 16px;
    font-size: 13px;
  }

  /* ẨN nút Hamburger trên Tablet để không bị lỗi 2 nút cùng lúc */
  .cv-hamburger {
    display: none !important;
  }
}

/* ==========================================================================
   10. ĐẶC BIỆT: CHUẨN HÓA MOBILE (< 768px) — AGENTS.md Quy chuẩn 6 & 20
   ========================================================================== */
@media (max-width: 767px) {
  /* Topbar trên mobile: 2 dòng trên dưới (Brand ở trên, Hotline ở dưới) */
  .cv-topbar {
    padding: 6px 0;
    font-size: 11.5px;
  }
  .cv-topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-inline: 14px;
    gap: 3px;
    box-sizing: border-box;
    text-align: center;
  }
  /* DÒNG 1 (TRÊN): Tên thương hiệu (Name ở trên, Tagline ở dưới, ẩn divider) */
  .cv-topbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1px;
    white-space: nowrap;
    text-align: center;
    margin: 0 auto;
  }
  .cv-topbar-name {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--cv-white);
    line-height: 1.2;
  }
  .cv-topbar-divider {
    display: none !important;
  }
  .cv-topbar-tagline {
    display: block !important;
    font-size: 10.5px;
    font-style: italic;
    color: #DCE8C7;
    line-height: 1.2;
  }
  /* DÒNG 2 (DƯỚI): Danh sách Hotline */
  .cv-topbar-hotlines {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 6px;
    font-size: 11.5px;
    margin: 0 auto;
    white-space: nowrap;
  }
  .cv-hotline-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #DCE8C7;
  }
  .cv-hotline-label span {
    display: inline !important;
    font-size: 11px;
  }
  .cv-phone-icon {
    width: 12px;
    height: 12px;
  }
  .cv-hotline-links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cv-hotline-link {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cv-green-primary);
  }

  /* Bo 2 góc dưới cho header trên Mobile */
  .cv-landing-header,
  .cv-landing-header.is-scrolled,
  .cv-landing-header.scrolled {
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
  }

  /* Navbar trên mobile: Chỉ có Logo bên trái và Hamburger bên phải */
  .cv-main-nav {
    min-height: 75px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cv-main-nav-inner {
    padding-inline: 14px;
  }
  .cv-header-brand .cv-brand-logo {
    max-height: 69px !important;
  }

  /* ẨN Menu chính và nút CTA ngang trên mobile */
  .cv-header-nav {
    display: none !important;
  }
  .cv-cta-desktop {
    display: none !important;
  }

  /* HIỂN THỊ nút Hamburger mở Drawer */
  .cv-hamburger {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   11. MOBILE DRAWER & BACKDROP
   ========================================================================== */
.cv-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(49, 87, 44, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
}

.cv-drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.cv-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background-color: var(--cv-cream);
  box-shadow: -10px 0 40px rgba(49, 87, 44, 0.15);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.cv-drawer.is-active {
  transform: translateX(0);
}

.cv-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cv-border-light);
  background: #FFFFFF;
}

.cv-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-drawer-logo {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.cv-drawer-title {
  font-family: "Noto Serif", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cv-green-dark);
  line-height: 1.2;
}

.cv-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cv-soft-lime);
  color: var(--cv-green-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cv-drawer-close:hover {
  background-color: var(--cv-green-primary);
  transform: rotate(90deg);
}

/* Drawer Body */
.cv-drawer-body {
  flex-grow: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.cv-drawer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-drawer-menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed rgba(228, 233, 211, 0.8);
}

.cv-drawer-menu-list li:last-child {
  border-bottom: none;
}

.cv-drawer-menu-list a {
  display: block;
  padding: 13px 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cv-green-deep);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.cv-drawer-menu-list a:hover,
.cv-drawer-menu-list .current-menu-item > a {
  color: var(--cv-green-dark);
  padding-left: 10px;
}

.cv-drawer-menu-list .sub-menu {
  list-style: none;
  padding-left: 14px;
  margin: 0;
  background-color: rgba(241, 245, 216, 0.35);
  border-radius: 8px;
}

.cv-drawer-menu-list .sub-menu a {
  font-size: 13.5px;
  padding: 9px 10px;
}

/* Drawer Footer */
.cv-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--cv-border-light);
  background: #FFFFFF;
}

.cv-cta-mobile {
  width: 100%;
  min-height: 44px;
  font-size: 14px;
}

.cv-drawer-hotlines {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--cv-border-light);
}

.cv-drawer-hotlines-title {
  display: block;
  font-size: 11.5px;
  color: var(--cv-brown);
  margin-bottom: 8px;
  font-weight: 500;
}

.cv-drawer-hotlines-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cv-drawer-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  background: var(--cv-soft-lime);
  color: var(--cv-green-deep);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}

.cv-drawer-phone-btn:hover {
  background: var(--cv-green-primary);
}

body.cv-drawer-open {
  overflow: hidden;
}

/* ==========================================================================
   12. ACCESSIBILITY & REDUCED MOTION (AGENTS.md Section 24)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .cv-landing-header,
  .cv-brand-logo,
  .cv-cta-btn,
  .cv-phone-icon,
  .cv-hamburger-inner,
  .cv-drawer-backdrop,
  .cv-drawer,
  .cv-drawer-close {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
