:root {
  --font-family:
    'Noto Sans Thai', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, sans-serif;
  --header-height: 80px;
  --redesign-blue: #0666f2;
  --redesign-navy: #061f5f;
  --redesign-orange: #ff9208;
  --redesign-ice: #eef6ff;
  --redesign-border: #dce9fb;
  --text-muted: #61749a;
  --color-bg-card: #ffffff;
  --color-border-light: #f5f5f5;
  --color-text-primary: #111111;
  --color-text-secondary: #444444;
  --color-text-tertiary: #888888;
  --color-primary: #1060c0;
  --color-accent: #b37400;
  --font-size-base: 1rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --radius-md: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--redesign-navy);
  background: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

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

.container {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 28px;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
}

.redesign-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dfe9f7;
  box-shadow: 0 10px 30px rgba(8, 38, 94, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1180px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: var(--header-height);
  color: var(--redesign-navy);
  letter-spacing: 0;
}

.header__logo-img {
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header__logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  transform: translateY(1px);
}

.header__logo-copy strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 0.9;
}

.header__logo-copy span {
  display: block;
  color: #173979;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 0;
}

.header__nav a {
  position: relative;
  color: var(--redesign-navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.header__nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--redesign-blue);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 0;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #dce9fb;
  border-radius: 999px;
  background: #f6fbff;
}

.locale-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: #61749a;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.locale-switch__btn:hover,
.locale-switch__btn:focus-visible {
  color: var(--redesign-blue);
  outline: 0;
}

.locale-switch__btn.is-active {
  color: #ffffff;
  background: var(--redesign-blue);
  box-shadow: 0 8px 16px rgba(13, 105, 242, 0.2);
}

.header__shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--redesign-orange);
  box-shadow: 0 12px 24px rgba(255, 146, 8, 0.24);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header__shop-btn:hover {
  color: #ffffff;
  background: #ff8400;
  box-shadow: 0 14px 26px rgba(255, 132, 0, 0.26);
  transform: translateY(-2px);
}

.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header__menu-btn span {
  width: 23px;
  height: 2px;
  border-radius: 99px;
  background: var(--redesign-navy);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.header__menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  gap: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #dfe9f7;
  box-shadow: 0 24px 48px rgba(8, 38, 94, 0.08);
  transform: translateY(calc(-100% - var(--header-height)));
  transition: transform var(--transition-base);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu__locale {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #edf3fb;
  color: var(--redesign-navy);
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu__locale {
  gap: 18px;
  border-bottom: 0;
}

.mobile-menu__locale.locale-switch {
  width: max-content;
  min-height: 0;
  margin-top: 16px;
  border: 1px solid #dce9fb;
}

.redesign-main {
  overflow: hidden;
}

.mock-hero {
  min-height: 617px;
  padding: var(--header-height) 0 0;
  text-align: left;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, #f7fbff 54%, #f7fbff 100%);
}

.mock-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  align-items: center;
  min-height: 468px;
  margin-top: 31px;
}

.mock-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 444px;
  padding: 44px 0 38px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  color: var(--redesign-blue);
  background: #eaf4ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--redesign-blue);
  background: #d7eaff;
}

.hero__badge-dot img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__title {
  max-width: 520px;
  margin: 0 0 16px;
  color: var(--redesign-navy);
  font-size: clamp(30px, 9vw, 52px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero__title span {
  display: block;
  color: var(--redesign-blue);
}

.hero__headline-subtitle {
  max-width: 540px;
  margin: -4px 0 14px;
  color: var(--redesign-navy);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero__subtitle {
  max-width: 472px;
  margin: 0 0 26px;
  color: #49628f;
  font-size: 18px;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  max-width: none;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn--lg {
  padding: 0 30px;
  font-size: 16px;
}

.btn--primary {
  color: #ffffff;
  background: var(--redesign-orange);
  border: 1.5px solid var(--redesign-orange);
  box-shadow: 0 14px 26px rgba(255, 146, 8, 0.2);
}

.btn--primary:hover {
  color: #ffffff;
  background: #ff8400;
  border-color: #ff8400;
  box-shadow: 0 14px 26px rgba(255, 132, 0, 0.26);
  transform: translateY(-2px);
}

.btn--secondary {
  color: var(--redesign-blue);
  background: #ffffff;
  border: 1.5px solid var(--redesign-blue);
}

.btn--secondary:hover {
  color: var(--redesign-blue);
  background: #f6fbff;
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(max-content, 1fr));
  gap: 0;
  max-width: 560px;
  margin: 32px 0 0;
  padding: 0;
}

.hero__stat-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 4px 20px 0 0;
}

.hero__stat-item:not(:first-child) {
  padding-left: 20px;
}

.hero__stat-item:not(:last-child) {
  border-right: 1px solid #dce7f6;
}

.hero__stat-item img {
  width: 44px;
  height: 44px;
  margin-top: 2px;
  object-fit: contain;
}

.hero__stat-value,
.hero__stat-label {
  display: block;
}

.hero__stat-value {
  color: var(--redesign-navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.hero__stat-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.mock-hero__visual {
  --hero-blue-height: 468px;
  --hero-visual-height: 468px;
  --hero-person-size: 468px;
  --hero-bleed-right: max(28px, calc((100vw - 1140px) / 2 + 28px));
  --hero-visual-offset-y: 0px;
  --hero-blue-width: calc(640px + var(--hero-bleed-right));
  position: relative;
  align-self: stretch;
  min-height: var(--hero-visual-height);
}

.mock-hero__blob {
  position: absolute;
  top: var(--hero-visual-offset-y);
  right: calc(-1 * var(--hero-bleed-right));
  width: var(--hero-blue-width);
  height: var(--hero-blue-height);
  border-radius: 120px 0 0 120px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.42) 0 28px, transparent 29px),
    linear-gradient(145deg, #d9ebff 0%, #7eb8ff 62%, #2b87f6 100%);
}

.mock-hero__blob::before {
  content: '';
  position: absolute;
  top: -38px;
  right: -12px;
  width: 280px;
  height: 168px;
  border-radius: 0 0 0 120px;
  background: rgba(255, 255, 255, 0.58);
}

.mock-hero__person {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: var(--hero-person-size);
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

@media (min-width: 901px) {
  html[lang='en'] .mock-hero__visual {
    --hero-visual-offset-y: 108px;
    --hero-blue-width: calc(604px + var(--hero-bleed-right));
  }
}

.category-strip {
  padding: 8px 0 34px;
  background: #ffffff;
}

.category-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 41px;
}

.category-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  min-height: 98px;
  padding: 20px;
  border: 1px solid var(--redesign-border);
  border-radius: 14px;
  color: #1060c0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 62, 122, 0.06);
  text-align: left;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.category-card:hover {
  border-color: #b8d3f8;
  box-shadow: 0 16px 34px rgba(20, 62, 122, 0.1);
  transform: translateY(-1px);
}

.category-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.category-card__name,
.category-card__count {
  display: block;
}

.category-card__name {
  margin: 0 0 5px;
  color: var(--redesign-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.category-card__count {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--redesign-blue);
  border-radius: 50%;
  color: var(--redesign-blue);
  font-size: 25px;
  line-height: 1;
}

.page-main {
  padding-top: var(--header-height);
  overflow: hidden;
  background: #ffffff;
}

.page-hero {
  padding: 42px 0 24px;
  background:
    radial-gradient(circle at 10% 18%, rgba(6, 102, 242, 0.08) 0 96px, transparent 97px),
    linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f6fbff 50%, #f6fbff 100%);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--redesign-navy);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.16;
}

.page-hero p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #49628f;
  font-size: 17px;
  line-height: 1.7;
}

.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #dce9fb;
  border-radius: 999px;
  color: var(--redesign-blue);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-nav {
  padding: 20px 0 8px;
  background: #ffffff;
}

.catalog-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-filter {
  padding: 16px 0 10px;
  background: #ffffff;
}

.catalog-filter__panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--redesign-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(20, 62, 122, 0.07);
}

.catalog-filter__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.catalog-filter__title {
  margin: 0;
  color: var(--redesign-navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
}

.catalog-filter__summary {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-filter__reset {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  color: var(--redesign-blue);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.catalog-filter__reset:hover,
.catalog-filter__reset:focus-visible {
  border-color: var(--redesign-blue);
  background: #eef6ff;
  outline: 0;
}

.catalog-filter__reset[hidden] {
  display: none;
}

.catalog-filter__controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.72fr)) auto;
  gap: 12px;
  align-items: end;
}

.catalog-filter__search,
.catalog-filter__field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.catalog-filter__label {
  color: #61749a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.catalog-filter__search-box,
.catalog-filter__field select,
.catalog-filter__toggle {
  min-height: 46px;
  border: 1px solid #cfe0f7;
  border-radius: 10px;
  color: #17345f;
  background: #ffffff;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
}

.catalog-filter__search-box {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
}

.catalog-filter__search-box svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--redesign-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-filter__search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  outline: 0;
}

.catalog-filter__search-box input::placeholder {
  color: #8a9abc;
}

.catalog-filter__field select {
  width: 100%;
  padding: 0 36px 0 12px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #0666f2 50%),
    linear-gradient(135deg, #0666f2 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 20px,
    calc(100% - 11px) 20px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.catalog-filter__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--redesign-blue);
  white-space: nowrap;
}

.catalog-filter__toggle input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--redesign-blue);
}

.catalog-filter__search-box:focus-within,
.catalog-filter__field select:focus,
.catalog-filter__toggle:focus-within {
  border-color: var(--redesign-blue);
  box-shadow: 0 0 0 4px rgba(6, 102, 242, 0.1);
  outline: 0;
}

.catalog-section {
  padding: 28px 0 34px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.catalog-section + .catalog-section {
  border-top: 1px solid #e8f0fb;
}

.catalog-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.catalog-section__heading h2 {
  margin: 0;
  color: var(--redesign-navy);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-section__heading p {
  max-width: 460px;
  margin: 0;
  color: #526895;
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.accessory-callout {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid #dce9fb;
  border-radius: 14px;
  background: #f6fbff;
}

.accessory-callout[hidden] {
  display: none;
}

.accessory-callout img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.accessory-callout h2 {
  margin: 0 0 6px;
  color: var(--redesign-navy);
  font-size: 24px;
  font-weight: 800;
}

.accessory-callout p {
  margin: 0;
  color: #526895;
  line-height: 1.65;
}

.accessory-callout .btn {
  justify-self: end;
  min-width: 132px;
}

.about-story {
  padding: 34px 0;
  background: #ffffff;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-story__copy h2 {
  margin: 0 0 12px;
  color: var(--redesign-navy);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}

.about-story__copy p {
  margin: 0 0 14px;
  color: #49628f;
  font-size: 16px;
  line-height: 1.75;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-metric {
  min-height: 120px;
  padding: 18px;
  border: 1px solid #dce9fb;
  border-radius: 12px;
  background: #f6fbff;
}

.about-metric strong {
  display: block;
  color: var(--redesign-blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.about-metric span {
  display: block;
  margin-top: 8px;
  color: #526895;
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 28px 0 34px;
}

.featured-redesign,
.why-redesign {
  background: #ffffff;
}

.section__header {
  margin-bottom: 18px;
  text-align: left;
}

.section__header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section__header--left {
  margin-bottom: 16px;
}

.section__eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--redesign-blue);
  background: #eaf4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section__title {
  margin: 0;
  color: var(--redesign-navy);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--redesign-blue);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.products-grid__message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid #dbe7f8;
  border-radius: 10px;
  color: var(--redesign-muted);
  background: #f6faff;
  text-align: center;
  font-weight: 700;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
  color: inherit;
  background: var(--color-bg-card);
  font-family: var(--font-family);
  text-decoration: none;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

@media (hover: hover) {
  .pcard:hover {
    border-color: #d6deec;
    box-shadow: 0 6px 18px rgba(10, 42, 107, 0.1);
    transform: translateY(-3px);
  }
}

.pcard__image-area {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0 0 14px;
  border-radius: 10px;
  background: #f4f8ff;
}

.pcard__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcard__badges-container {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pcard__badge-discount,
.pcard__badge-hand {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.pcard__badge-discount {
  background: #ff9208;
}

.pcard__badge-hand.new {
  background: #2bb24c;
}

.pcard__badge-hand.used {
  background: #1652c4;
}

.pcard__body {
  display: block;
  flex: 1;
  padding: 0;
}

.pcard__title {
  display: block;
  min-height: 0;
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.pcard__spec-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.pcard__battery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 2px 8px;
  border-radius: 6px;
  color: #ffffff;
  background: #2bb24c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.pcard__condition-warranty {
  color: #555555;
  font-size: 13px;
  font-weight: 400;
}

.pcard__price-section {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 0;
  margin-bottom: 12px;
}

.pcard__price-label {
  color: #1652c4;
  font-size: 13px;
  font-weight: 400;
}

.pcard__price-old {
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}

.pcard__price-new {
  color: #e63329;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

.pcard__installment-shelf {
  display: block;
  min-height: 0;
  margin-bottom: 12px;
}

.pcard__installment-banner {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  color: #0c447c;
  background: #e6f1fb;
  box-shadow: none;
  font-size: 12px;
  font-weight: 500;
  transition: background var(--transition-fast);
}

@media (hover: hover) {
  .pcard:hover .pcard__installment-banner {
    background: #d4e6f9;
  }
}

.pcard__star {
  position: relative;
  width: 15px;
  height: 11px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
  font-size: 0;
}

.pcard__star::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 2px;
  left: 2px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.pcard__installment-text {
  font-size: 12px;
  font-weight: 500;
}

.pcard__details {
  display: block;
  margin-bottom: 14px;
  padding-top: 0;
  border-top: 0;
}

.pcard__detail-item {
  color: #888888;
  font-size: 12px;
  line-height: 1.5;
}

.pcard__detail-item strong {
  color: #444444;
  font-weight: 500;
}

.pcard__description {
  display: none;
}

.pcard__action-area {
  margin-top: auto;
}

.pcard__btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f61d6 0%, #134db8 100%);
  box-shadow: 0 10px 22px rgba(22, 82, 196, 0.16);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.pcard__btn-view::before {
  content: '';
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E")
      center / 13px 13px no-repeat,
    rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.pcard__btn-view::after {
  content: none;
}

@media (hover: hover) {
  .pcard:hover .pcard__btn-view,
  .pcard__btn-view:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0f48b1 0%, #0a2a6b 100%);
    box-shadow: 0 14px 28px rgba(10, 42, 107, 0.22);
    transform: translateY(-1px);
  }
}

.pcard__btn-view:focus-visible {
  outline: 3px solid rgba(31, 97, 214, 0.28);
  outline-offset: 3px;
}

.pcard__btn-view:active {
  background: #0a2a6b;
  transform: scale(0.99);
}

.service-band {
  padding: 18px 0 26px;
  background: #ffffff;
}

.service-band__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.55fr;
  gap: 36px;
  align-items: center;
  min-height: 172px;
  padding: 28px 34px;
  border: 1px solid #dce9fb;
  border-radius: 14px;
  background:
    radial-gradient(circle at 4% 72%, rgba(6, 102, 242, 0.08) 0 70px, transparent 71px),
    linear-gradient(90deg, #f6fbff 0%, #eef7ff 100%);
}

.service-band__intro h2 {
  margin: 0 0 12px;
  color: var(--redesign-navy);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

.service-band__intro p {
  max-width: 330px;
  margin: 0;
  color: #4f6695;
  font-size: 14px;
  line-height: 1.75;
}

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

.service-item {
  min-height: 128px;
  padding: 0 22px;
  text-align: center;
}

.service-item:not(:last-child) {
  border-right: 1px solid #d5e3f5;
}

.service-item img {
  width: 92px;
  height: 92px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.service-item h3,
.trust-card__title {
  margin: 0 0 7px;
  color: var(--redesign-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.service-item p,
.trust-card__desc {
  margin: 0;
  color: #526895;
  font-size: 12.5px;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 15px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid var(--redesign-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 62, 122, 0.05);
  text-align: left;
}

.trust-card img {
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.map-redesign {
  padding: 0 0 26px;
  background: #ffffff;
}

.map-redesign__panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.92fr;
  gap: 22px;
  align-items: center;
  min-height: 156px;
  padding: 16px 20px;
  border: 1px solid var(--redesign-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 62, 122, 0.05);
}

.map-redesign__art {
  height: 126px;
  overflow: hidden;
  border-radius: 11px;
  background: #f4f8fd;
}

.map-redesign__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-redesign__info h2 {
  margin: 0 0 8px;
  color: var(--redesign-navy);
  font-size: 15px;
  font-weight: 800;
}

.map-redesign__info p {
  margin: 0 0 7px;
  color: #465d8c;
  font-size: 12.5px;
  line-height: 1.45;
}

.map-redesign__actions {
  display: grid;
  gap: 12px;
}

.map-redesign__actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  font-size: 14px;
}

.social-redesign {
  padding: 0 0 28px;
  background: #ffffff;
  text-align: center;
}

.social-redesign h2 {
  margin: 0 0 14px;
  color: var(--redesign-navy);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.social-redesign__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 970px;
  margin: 0 auto;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 40, 92, 0.16);
  font-size: 16px;
  font-weight: 800;
}

.social-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: 44px;
  height: 44px;
  color: inherit;
  font-size: 0;
  flex: 0 0 44px;
  line-height: 1;
}

.social-cta__svg {
  display: block;
  width: 32px;
  height: 32px;
}

.social-cta__svg--line {
  width: 34px;
  height: 34px;
}

.social-cta--line {
  background: #04c537;
}

.social-cta--line .social-cta__icon {
  border-radius: 50%;
  color: #04b832;
  background: #ffffff;
}

.social-cta--facebook {
  background: #123d9c;
}

.social-cta--facebook .social-cta__icon {
  color: #ffffff;
}

.social-cta--instagram {
  background: linear-gradient(100deg, #b92bd1 0%, #ee2f7c 52%, #ff8744 100%);
}

.social-cta--instagram .social-cta__icon {
  color: #ffffff;
}

.privacy-content {
  padding: 34px 0 64px;
  background: #ffffff;
}

.privacy-article {
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
  color: #31476f;
}

.privacy-note,
.privacy-contact {
  padding: 18px 20px;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  background: #f7fbff;
}

.privacy-note p,
.privacy-contact p {
  margin: 0;
  color: #526895;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-section {
  padding-top: 22px;
  border-top: 1px solid #e4edf9;
}

.privacy-section h2 {
  margin: 0 0 10px;
  color: var(--redesign-navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.privacy-section p,
.privacy-section li {
  color: #405987;
  font-size: 15px;
  line-height: 1.75;
}

.privacy-section p {
  margin: 0;
}

.privacy-section p + p {
  margin-top: 10px;
}

.privacy-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.privacy-contact {
  display: grid;
  gap: 8px;
}

.scroll-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--redesign-blue);
  box-shadow: 0 14px 30px rgba(6, 102, 242, 0.28);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: #0358d8;
  box-shadow: 0 16px 34px rgba(6, 102, 242, 0.34);
  transform: translateY(-2px);
  outline: 0;
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.redesign-footer {
  padding: 28px 0 0;
  border-top: 1px solid #dfe9f7;
  color: #455c8d;
  background: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.25fr;
  gap: 40px;
  margin-bottom: 20px;
}

.redesign-footer .header__logo {
  margin-bottom: 12px;
}

.footer__brand-desc {
  max-width: 360px;
  margin: 0;
  color: #526895;
  font-size: 13px;
  line-height: 1.65;
}

.footer__heading {
  margin: 0 0 12px;
  color: var(--redesign-navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer__links {
  display: grid;
  gap: 7px;
}

.footer__links a {
  color: #526895;
  font-size: 13px;
  line-height: 1.45;
}

.footer__links a:hover {
  color: var(--redesign-blue);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 28px;
  color: #6b7da1;
  background: #f7fbff;
  border-top: 1px solid #dfe9f7;
}

.footer__bottom p {
  margin: 0;
  font-size: 12px;
}

.footer__bottom a {
  color: #526895;
}

@media (max-width: 1120px) {
  .mock-hero {
    --hero-copy-touch-edge: min(421px, calc(100vw - 496px));
    --hero-copy-touch-width: calc(var(--hero-copy-touch-edge) - 28px);
  }

  .header__nav {
    gap: 22px;
  }

  .mock-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .mock-hero__copy {
    max-width: var(--hero-copy-touch-width);
  }

  .hero__cta-group {
    flex-wrap: wrap;
    gap: 14px;
  }

  .btn--lg {
    padding: 0 24px;
  }

  .hero__title,
  .hero__headline-subtitle,
  .hero__subtitle {
    max-width: var(--hero-copy-touch-width);
  }

  .mock-hero__blob {
    width: calc(100vw - var(--hero-copy-touch-edge));
  }

  .hero__title {
    font-size: 46px;
  }

  .hero__stats {
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .header__logo-img {
    width: 44px;
    height: 44px;
  }

  .header__logo-copy strong {
    font-size: 24px;
  }

  .header__nav,
  .header__actions > .locale-switch,
  .header__shop-btn {
    display: none;
  }

  .header__menu-btn {
    display: inline-flex;
  }

  .mock-hero {
    min-height: auto;
    background: #ffffff;
  }

  .mock-hero__inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
    min-height: auto;
    margin-top: 0;
  }

  .mock-hero__copy {
    max-width: none;
    padding: 38px 0 0;
  }

  .hero__title {
    max-width: 520px;
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero__headline-subtitle {
    max-width: 540px;
  }

  .hero__subtitle {
    max-width: 472px;
  }

  .mock-hero__visual {
    --hero-blue-height: 360px;
    --hero-visual-height: 386px;
    --hero-person-size: min(360px, 84vw);
    --hero-bleed-right: 28px;
    --hero-visual-offset-y: 0px;
    overflow: visible;
  }

  .mock-hero__blob {
    right: calc(-1 * var(--hero-bleed-right));
    width: calc(100% + var(--hero-bleed-right));
    max-width: none;
  }

  .mock-hero__blob::before {
    top: 0;
  }

  .mock-hero__person {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .page-hero__inner,
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__meta {
    justify-self: start;
  }

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

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

  .catalog-filter__search {
    grid-column: 1 / -1;
  }

  .catalog-filter__toggle {
    justify-content: flex-start;
  }

  .catalog-section__heading {
    display: grid;
    align-items: start;
  }

  .catalog-section__heading p {
    max-width: none;
    text-align: left;
  }

  .category-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

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

  .service-band__panel {
    grid-template-columns: 1fr;
  }

  .service-band__intro p {
    max-width: none;
  }

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

  .map-redesign__panel {
    grid-template-columns: 1fr;
  }

  .social-redesign__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  body,
  .redesign-main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .header__inner {
    padding: 0 18px;
  }

  .header__logo {
    gap: 8px;
  }

  .header__actions {
    gap: 8px;
  }

  .header__menu-btn {
    width: 42px;
    height: 42px;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__cta-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__cta-group .btn {
    width: 100%;
    min-height: 46px;
  }

  .hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin-top: 24px;
  }

  .hero__stat-item,
  .hero__stat-item:not(:first-child) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 86px;
    padding: 0 8px;
    text-align: center;
  }

  .hero__stat-item img {
    width: 34px;
    height: 34px;
  }

  .hero__stat-value {
    font-size: 20px;
  }

  .hero__stat-label {
    margin-top: 2px;
    font-size: 11px;
  }

  .page-hero {
    padding: 30px 0 18px;
  }

  .page-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .page-hero p {
    font-size: 15px;
  }

  .privacy-content {
    padding: 24px 0 48px;
  }

  .privacy-note,
  .privacy-contact {
    padding: 16px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .scroll-top {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .catalog-nav__grid,
  .about-metrics {
    grid-template-columns: 1fr;
  }

  .catalog-filter {
    padding: 8px 0 0;
  }

  .catalog-filter__panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-filter__topline {
    display: none;
  }

  .catalog-filter__controls {
    display: block;
  }

  .catalog-filter__search,
  .catalog-filter__field,
  .catalog-filter__reset {
    display: none;
  }

  .catalog-filter__toggle {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(20, 62, 122, 0.08);
  }

  .accessory-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .accessory-callout img {
    margin: 0 auto;
  }

  .accessory-callout .btn {
    width: 100%;
  }

  .mock-hero__visual {
    --hero-blue-height: 292px;
    --hero-visual-height: 314px;
    --hero-person-size: min(292px, 86vw);
    --hero-bleed-right: 18px;
  }

  .mock-hero__blob {
    right: calc(-1 * var(--hero-bleed-right));
    width: calc(100% + var(--hero-bleed-right));
    max-width: none;
    border-radius: 74px 0 0 74px;
  }

  .category-strip__grid {
    grid-template-columns: 1fr;
  }

  .section__header--split {
    display: grid;
    align-items: start;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pcard__body {
    padding: var(--space-sm);
  }

  .pcard__description {
    font-size: 0.8rem;
  }

  .pcard__price-section {
    flex-wrap: wrap;
  }

  .service-band__items,
  .trust-grid,
  .map-redesign__actions {
    grid-template-columns: 1fr;
  }

  .service-band__panel {
    padding: 24px 22px;
  }

  .service-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #d5e3f5;
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .map-redesign__art {
    height: 170px;
  }

  .footer__bottom {
    display: grid;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .container,
  .header__inner {
    padding: 0 14px;
  }

  .header__logo-copy strong {
    font-size: 20px;
  }

  .header__logo-copy span {
    font-size: 8px;
  }

  .mock-hero__copy {
    padding: 28px 0 0;
  }

  .hero__badge {
    gap: 6px;
    margin-bottom: 14px;
    padding: 7px 10px 7px 7px;
  }

  .hero__badge-dot {
    width: 27px;
    height: 27px;
  }

  .hero__badge-dot img {
    width: 21px;
    height: 21px;
  }

  .hero__title {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .hero__subtitle {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero__stats {
    gap: 10px;
    margin-top: 20px;
  }

  .hero__stat-item {
    min-height: 48px;
  }

  .mock-hero__visual {
    --hero-blue-height: clamp(318px, 88vw, 330px);
    --hero-visual-height: 330px;
    --hero-person-size: min(270px, 84vw);
    --hero-bleed-right: 14px;
  }

  .mock-hero__blob {
    right: calc(-1 * var(--hero-bleed-right));
    width: calc(100% + var(--hero-bleed-right));
    border-radius: 88px 0 0 88px;
  }

  .section__title {
    font-size: clamp(24px, 7.5vw, 30px);
  }

  .section__header--split {
    gap: 12px;
  }

  .section__link {
    font-size: 14px;
  }

  .social-redesign h2 {
    font-size: 20px;
  }

  .social-cta {
    width: 100%;
  }

  .social-cta__icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .social-cta__svg {
    width: 30px;
    height: 30px;
  }

  .social-redesign__grid {
    gap: 14px;
  }

  .map-redesign__actions .btn {
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
