:root {
  --ae-header-height: 64px;
  --color-charcoal: #0F141A;
  --color-surface: #F6F7F9;
  --color-primary: #003b64;
  --color-secondary: #f91913;
  --color-text-primary: #111827;
  --color-text-secondary: #9CA3AF;
  --color-white: #ffffff;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

.ae-container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.ae-title {
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
}

@media (min-width: 768px) {
  .ae-title {
    font-size: 40px;
  }
}

.ae-lead {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.75);
}

.ae-page-head {
  margin-bottom: 22px;
}

.ae-hero {
  background: var(--color-white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
}

.ae-hero--home {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 80%);
  padding: 32px 24px;
}

.ae-hero__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .ae-hero__grid {
    grid-template-columns: minmax(250px, 1fr) 360px;
    align-items: center;
  }
}

.ae-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.ae-search--hero {
  margin-top: 22px;
  max-width: 700px;
}

.ae-search__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.ae-search__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
  font-size: 16px;
}

.ae-search__suggestions--hero {
  margin-top: 8px;
}

.ae-button--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.ae-hero__features {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ae-hero__feature {
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: inline-flex;
  font-weight: 700;
  max-width: fit-content;
}

.ae-hero__visual {
  display: flex;
  justify-content: center;
}

.ae-hero__visual-card {
  min-height: 380px;
  width: 100%;
  max-width: 400px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(0, 59, 100, 0.95), rgba(2, 57, 128, 0.9));
  color: white;
  box-shadow: var(--shadow-soft);
}

.ae-hero__visual-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ae-hero__visual-grid {
  display: grid;
  gap: 12px;
}

.ae-hero__visual-grid a {
  display: block;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
}

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

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

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

.ae-category-showcase__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .ae-category-showcase__grid {
    grid-template-columns: 420px 1fr;
    align-items: start;
  }
}

.ae-category-featured-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ae-category-featured__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-secondary);
}

.ae-category-featured__title {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
}

.ae-category-featured__description {
  color: rgba(17, 24, 39, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.ae-category-featured__meta {
  font-weight: 800;
  color: rgba(17, 24, 39, 0.85);
}

.ae-category-featured-card .ae-button {
  width: fit-content;
}

.ae-category-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ae-category-card__title {
  font-size: 18px;
  font-weight: 800;
}

.ae-category-card__description {
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.ae-category-card__meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.85);
  font-weight: 700;
}

.ae-section__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.ae-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.ae-homepage-products {
  margin-top: 16px;
}

.ae-search__label {
  display: none;
}

.ae-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ae-button:hover {
  filter: brightness(1.06);
}

.ae-button--secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid rgba(0, 59, 100, 0.18);
}

.ae-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.65);
  margin-bottom: 14px;
}

.ae-breadcrumbs__link {
  color: rgba(17, 24, 39, 0.65);
}

.ae-breadcrumbs__link:hover {
  color: var(--color-primary);
}

.ae-breadcrumbs__sep {
  opacity: 0.5;
}

.ae-breadcrumbs__current {
  color: rgba(17, 24, 39, 0.85);
  font-weight: 700;
}

.ae-section {
  margin-top: 26px;
}

.ae-section--product-listing {
  margin-top: 14px;
}

.ae-section__title {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.ae-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .ae-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.ae-card {
  display: block;
  background: var(--color-white);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
}

.ae-card:hover {
  border-color: rgba(0, 59, 100, 0.24);
}

.ae-card__title {
  font-weight: 800;
}

.ae-card__meta {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.65);
}

.ae-empty {
  padding: 14px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  color: rgba(17, 24, 39, 0.7);
}

.ae-subcategory-select {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.ae-subcategory-select__label {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.7);
  font-weight: 700;
}

.ae-subcategory-select__input {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
}

.ae-category-browser {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ae-category-browser__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.ae-category-browser__eyebrow {
  margin: 0 0 3px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ae-category-browser__coupon-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.ae-category-browser__coupon-link:hover {
  color: #ea580c;
  text-decoration: underline;
}

.ae-category-browser__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

@media (max-width: 760px) {
  .ae-category-browser__head {
    display: grid;
  }
}

.ae-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 1180px) {
  .ae-listing {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
  }
}

.ae-filters {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: none;
  padding: 14px;
}

@media (max-width: 1179px) {
  .ae-listing[data-ae-filters-collapsible="true"][data-ae-filters-open="false"] .ae-filters {
    display: none;
  }
}

@media (min-width: 1180px) {
  .ae-filters {
    position: sticky;
    top: 88px;
    height: fit-content;
    max-height: none;
    overflow: visible;
  }
}

.ae-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}

.ae-filters__title {
  font-weight: 900;
  font-size: 16px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-filters__clear {
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 6px 8px;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
  flex-shrink: 0;
}

.ae-filters__clear:hover {
  background: rgba(0, 59, 100, 0.06);
}

.ae-filters__clear:focus-visible {
  outline: 2px solid rgba(0, 59, 100, 0.35);
  outline-offset: 3px;
}

.ae-filter {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.ae-filter:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.ae-filter__title {
  font-weight: 800;
  margin-bottom: 10px;
}

.ae-filter__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.ae-filter__toggle-text {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-filter__toggle:focus-visible {
  outline: 2px solid rgba(0, 59, 100, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.ae-filter__toggle-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ae-filter__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(0, 59, 100, 0.1);
  color: var(--color-primary);
}

.ae-filter__meta:empty {
  display: none;
}

.ae-filter__chevron {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: transform 180ms ease;
}

.ae-filter__toggle[aria-expanded="false"] .ae-filter__chevron {
  transform: rotate(-90deg);
}

.ae-filter__empty {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.6);
}

.ae-filter__content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ae-filter__content[hidden] {
  display: none !important;
}

.ae-filter__toggle + .ae-filter__content {
  margin-top: 10px;
}

.ae-filter__content--price {
  grid-template-columns: 1fr 1fr;
}

.ae-filter__field {
  display: grid;
  gap: 6px;
}

.ae-filter__label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.7);
}

.ae-filter__input {
  width: 100%;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ae-filter__select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
}

.ae-filter__select:disabled {
  background: rgba(17, 24, 39, 0.04);
  color: rgba(17, 24, 39, 0.55);
}

.ae-filter__apply {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
}

.ae-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 12px;
  cursor: pointer;
  min-width: 0;
}

.ae-option:hover {
  background: rgba(17, 24, 39, 0.04);
}

.ae-option--checked {
  background: rgba(0, 59, 100, 0.06);
}

.ae-option--checked .ae-option__text {
  font-weight: 900;
}

.ae-option__checkbox {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: var(--color-white);
  display: grid;
  place-items: center;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.ae-option__checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.6 14.3L3.8 10.5l-1.4 1.4 5.2 5.2L17.6 7.1l-1.4-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.ae-option__checkbox:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ae-option__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-option__count {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.55);
  white-space: nowrap;
}

.ae-filter__options {
  overflow-x: hidden;
}

.ae-filter__more {
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 10px;
  cursor: pointer;
  justify-self: start;
}

.ae-filter__more:hover {
  background: rgba(0, 59, 100, 0.06);
  text-decoration: underline;
}

.ae-results {
  min-width: 0;
}

.ae-results__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 12px;
}

.ae-results__coupon-link {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-decoration: none;
}

.ae-results__coupon-link:hover {
  color: #ea580c;
  text-decoration: underline;
}

.ae-results__tools {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}

.ae-results__filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 59, 100, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.ae-results__count {
  font-weight: 800;
  color: rgba(17, 24, 39, 0.8);
  white-space: nowrap;
}

.ae-sort {
  display: grid;
  gap: 6px;
}

.ae-sort__label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.65);
}

.ae-sort__select {
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
}

@media (max-width: 760px) {
  .ae-results__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ae-results__tools {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
}

@media (max-width: 1179px) {
  .ae-results__filter-toggle {
    display: inline-flex;
  }

  .ae-results__tools {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .ae-results__tools {
    gap: 10px;
  }

  .ae-sort {
    width: 100%;
  }

  .ae-sort__select {
    width: 100%;
  }
}

.ae-coupons-panel {
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.78));
}

.ae-coupons-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ae-coupons-panel__eyebrow {
  margin: 0 0 3px;
  color: var(--color-secondary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ae-coupons-panel__title {
  margin: 0;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.2;
}

.ae-coupons-panel__count {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 900;
}

.ae-coupons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .ae-coupons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .ae-coupons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ae-coupon-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(249, 115, 22, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.ae-coupon-card__top,
.ae-coupon-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.ae-coupon-card__top {
  color: rgba(17, 24, 39, 0.56);
  font-size: 11px;
  font-weight: 800;
}

.ae-coupon-card__network {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 59, 100, 0.08);
  color: var(--color-primary);
  text-transform: uppercase;
}

.ae-coupon-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(17, 24, 39, 0.92);
}

.ae-coupon-card__merchant,
.ae-coupon-card__description {
  margin: 0;
  color: rgba(17, 24, 39, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.ae-coupon-card__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ae-coupon-card__code {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255, 247, 237, 0.92);
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.ae-coupon-card__action {
  flex: 0 0 auto;
  border-radius: 12px;
  padding: 8px 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 900;
}

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

@media (min-width: 768px) {
  .ae-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .ae-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.ae-product {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: transparent;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  min-width: 0;
  overflow: hidden;
}

.ae-product__wishlist {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: rgba(17, 24, 39, 0.72);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.ae-product__wishlist:hover,
.ae-product__wishlist[data-active="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.ae-product__link {
  display: grid;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.ae-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.ae-product__footer > div {
  min-width: 0;
}

.ae-product__shop {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.ae-product__image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.04);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ae-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ae-product__placeholder-icon {
  width: 42px;
  height: 42px;
  opacity: 0.35;
}

.ae-product__brand {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.6);
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-product__title {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ae-product__price {
  font-weight: 900;
  color: var(--color-primary);
}

.ae-product__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.ae-product__price-current {
  font-weight: 900;
  color: var(--color-primary);
  overflow-wrap: anywhere;
}

.ae-product__price-old {
  font-weight: 800;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.45);
  text-decoration: line-through;
}

.ae-product__merchant {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.62);
  font-weight: 800;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-product__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.ae-product__badge--discount {
  background: rgba(239, 68, 68, 0.12);
  color: rgb(190, 18, 60);
}

.ae-product__badge--ship {
  background: rgba(16, 185, 129, 0.12);
  color: rgb(4, 120, 87);
}

.ae-product__meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.65);
  font-weight: 700;
  min-width: 0;
}

.ae-product__meta-item {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ae-product__meta-sep {
  opacity: 0.6;
}

.ae-pagination {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ae-page-btn {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
  font-weight: 800;
}

.ae-page-btn:disabled {
  opacity: 0.45;
}

.ae-page-meta {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.7);
  font-weight: 700;
}

.ae-compare {
  display: grid;
  gap: 14px;
}

.ae-compare__card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.ae-compare__hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.ae-compare__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.03);
  overflow: hidden;
}

.ae-compare__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ae-compare__summary {
  min-width: 0;
}

.ae-compare__kicker {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.ae-compare__title {
  font-weight: 900;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.12;
  margin-bottom: 6px;
}

.ae-compare__meta {
  color: rgba(17, 24, 39, 0.7);
  font-weight: 700;
  font-size: 13px;
}

.ae-compare__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 4px;
}

.ae-compare__from {
  color: rgba(17, 24, 39, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.ae-compare__price {
  color: var(--color-primary);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.ae-compare__card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.ae-offers {
  width: 100%;
  display: grid;
  gap: 10px;
}

.ae-offer {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(120px, 0.9fr) minmax(130px, 0.9fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.015);
}

.ae-offer--best {
  border-color: rgba(0, 59, 100, 0.22);
  background: rgba(0, 59, 100, 0.045);
}

.ae-offer__shop {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ae-offer__logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 950;
}

.ae-offer__merchant {
  font-weight: 900;
}

.ae-offer__label {
  display: inline-flex;
  margin-top: 3px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}

.ae-offer__details,
.ae-offer__status {
  display: grid;
  gap: 2px;
}

.ae-offer__muted {
  color: rgba(17, 24, 39, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.ae-offer__action {
  justify-self: end;
}

.ae-offers__price {
  font-weight: 900;
  color: var(--color-primary);
}

.ae-offers__btn {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .ae-compare__hero {
    grid-template-columns: 1fr;
  }

  .ae-compare__image {
    max-width: 220px;
    width: 100%;
    justify-self: center;
  }

  .ae-offer {
    grid-template-columns: 1fr;
  }

  .ae-offer__action {
    justify-self: stretch;
  }

  .ae-offers__btn {
    display: block;
    text-align: center;
  }
}

.ae-history {
  display: grid;
  gap: 8px;
}

.ae-history__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.03);
}

.ae-history__date {
  font-weight: 800;
  color: rgba(17, 24, 39, 0.7);
  font-size: 13px;
}

.ae-history__price {
  font-weight: 900;
}

@media (min-width: 640px) {
  .ae-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.ae-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--color-primary);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.ae-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--ae-header-height);
}

.ae-logo {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
}

.ae-logo__text {
  font-weight: 800;
  color: #f97316;
  white-space: nowrap;
  font-size: 16px;
}

.ae-logo__suffix {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .ae-logo__text {
    font-size: 18px;
  }
}

.ae-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.ae-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 20px;
}

.ae-nav__item--category-menu {
  flex-shrink: 0;
}

.ae-nav__dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100vw - 20px));
  min-width: 320px;
  max-height: min(760px, calc(100vh - 84px));
  overflow-y: auto;
  background: var(--color-white);
  color: var(--color-text-primary);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ae-nav__dropdown[hidden],
.ae-category-menu[hidden] {
  display: none !important;
}

.ae-nav__dropdown--list {
  width: min(400px, calc(100vw - 20px));
}

.ae-nav__item--dropdown:hover .ae-nav__dropdown,
.ae-nav__item--dropdown:focus-within .ae-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.ae-nav__link {
  color: var(--color-white);
  font-weight: 600;
}

.ae-nav__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.ae-nav__chevron {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.ae-nav__button[aria-expanded="true"] .ae-nav__chevron {
  transform: rotate(180deg);
}

.ae-nav__link:hover {
  color: #f97316;
}

@media (min-width: 1025px) {
  .ae-nav {
    display: flex;
  }
}

.ae-category-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 70;
  width: min(640px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 86px));
  overflow: auto;
  margin-top: 8px;
  transform: translateX(-50%);
  background: var(--color-white);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  padding: 20px;
}

.ae-category-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.ae-category-menu__block {
  min-width: 0;
  border-radius: 14px;
  padding: 10px;
  transition: background 160ms ease;
}

.ae-category-menu__block:hover,
.ae-category-menu__block:focus-within {
  background: rgba(249, 115, 22, 0.07);
}

.ae-category-menu__main {
  display: block;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ae-category-menu__main:hover {
  color: #ea580c;
}

.ae-category-menu__subcats {
  display: grid;
  gap: 4px;
  margin-top: 7px;
}

.ae-category-menu__subcat {
  color: rgba(17, 24, 39, 0.64);
  font-size: 12px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-category-menu__subcat:hover {
  color: var(--color-primary);
}

@media (max-width: 940px) {
  .ae-category-menu {
    width: min(560px, calc(100vw - 24px));
  }

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

.ae-mega {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 18px;
  width: 100%;
}

@media (max-width: 1040px) {
  .ae-mega {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ae-mega__col {
  min-width: 0;
}

.ae-mega__title {
  display: block;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--color-primary);
  overflow-wrap: anywhere;
}

.ae-mega__links {
  display: grid;
  gap: 5px;
}

.ae-mega__link {
  display: grid;
  gap: 1px;
  padding: 5px 6px;
  border-radius: 8px;
  color: rgba(17, 24, 39, 0.75);
  overflow: hidden;
}

.ae-mega__link:hover {
  color: var(--color-primary);
  background: rgba(0, 59, 100, 0.06);
}

.ae-mega__link-title {
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-mega__hint {
  min-width: 0;
  color: rgba(17, 24, 39, 0.54);
  font-size: 11px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-dropdown-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(360px, calc(100vw - 56px));
  max-width: 100%;
}

.ae-dropdown-list__link {
  font-size: 14px;
  color: rgba(17, 24, 39, 0.75);
}

.ae-dropdown-list__link:hover {
  color: var(--color-primary);
}

.ae-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--color-white);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 700;
}

@media (min-width: 1025px) {
  .ae-menu-toggle {
    display: none;
  }
}

.ae-header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 280px;
  max-width: 740px;
  min-width: 0;
}

.ae-search {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.ae-search__form {
  position: relative;
}

.ae-search__input {
  width: 100%;
  padding: 10px 78px 10px 14px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.ae-search__submit {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  padding: 0 15px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.ae-search__submit:hover {
  background: #ea580c;
}

.ae-wishlist-button {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.ae-wishlist-button:hover {
  background: rgba(249, 115, 22, 0.2);
}

.ae-wishlist-button__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 950;
}

.ae-search__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  z-index: 60;
}

.ae-search__suggestion {
  display: block;
  padding: 10px 14px;
  color: rgba(17, 24, 39, 0.85);
  text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ae-search__suggestion:first-child {
  border-top: 0;
}

.ae-search__suggestion:hover {
  background: rgba(0, 59, 100, 0.06);
  color: var(--color-primary);
}

.ae-main {
  padding-top: var(--ae-header-height);
}

.ae-mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--ae-header-height);
  z-index: 39;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  max-height: calc(100vh - var(--ae-header-height));
  overflow-y: auto;
}

@media (min-width: 1025px) {
  .ae-mobile-nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --ae-header-height: 118px;
  }

  .ae-header__inner {
    height: auto;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ae-header__brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .ae-header__tools {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    max-width: none;
  }

  .ae-search {
    flex: 1 1 auto;
  }
}

@media (max-width: 639px) {
  :root {
    --ae-header-height: 112px;
  }

  .ae-logo__text {
    font-size: 15px;
  }

  .ae-menu-toggle {
    padding: 8px 9px;
    font-size: 13px;
  }

  .ae-search__input {
    padding: 10px 74px 10px 12px;
    font-size: 15px;
  }

  .ae-search__submit {
    padding: 0 13px;
    font-size: 12px;
  }
}

.ae-mobile-nav__inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.ae-mobile-nav__section {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
}

.ae-mobile-nav__section + .ae-mobile-nav__section {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.ae-mobile-nav__title {
  font-weight: 800;
  color: var(--color-primary);
}

.ae-mobile-nav__link {
  font-weight: 600;
  color: rgba(17, 24, 39, 0.85);
}

.ae-mobile-nav__link:hover {
  color: var(--color-primary);
}

.ae-mobile-nav__group {
  display: grid;
  gap: 6px;
  padding-block: 3px;
}

.ae-mobile-nav__summary {
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 800;
  list-style: none;
  padding: 4px 0;
}

.ae-mobile-nav__summary::-webkit-details-marker {
  display: none;
}

.ae-mobile-nav__summary::after {
  content: "⌄";
  float: right;
  color: rgba(0, 59, 100, 0.72);
  transition: transform 160ms ease;
}

.ae-mobile-nav__group[open] .ae-mobile-nav__summary::after {
  transform: rotate(180deg);
}

.ae-mobile-nav__link--parent {
  color: var(--color-primary);
  font-weight: 800;
}

.ae-mobile-nav__sublink--all {
  color: var(--color-primary);
  font-weight: 800;
}

.ae-mobile-nav__sublink {
  padding-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.68);
}

.ae-main__inner {
  max-width: 1440px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 10px;
  padding-right: 10px;
}

.ae-footer {
  margin-top: 64px;
  background: var(--color-primary);
  color: var(--color-white);
}

.ae-footer__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}

.ae-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .ae-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.ae-footer__brand,
.ae-footer__links,
.ae-footer__service {
  text-align: center;
}

@media (min-width: 768px) {
  .ae-footer__brand {
    text-align: left;
  }

  .ae-footer__service {
    text-align: right;
  }
}

.ae-footer__logo-text {
  display: inline-block;
  font-weight: 800;
  color: #f97316;
  font-size: 16px;
}

.ae-footer__logo-suffix {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .ae-footer__logo-text {
    font-size: 18px;
  }
}

.ae-footer__tagline {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.ae-footer__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.ae-footer__link-list,
.ae-footer__service-list {
  display: grid;
  gap: 10px;
}

.ae-footer__service-list {
  gap: 12px;
}

.ae-footer__link {
  color: rgba(255, 255, 255, 0.75);
}

.ae-footer__link:hover,
.ae-footer__contact-link:hover {
  color: rgba(253, 186, 116, 1);
}

.ae-footer__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 180ms ease;
}

@media (min-width: 768px) {
  .ae-footer__contact-link {
    justify-content: flex-end;
  }
}

.ae-footer__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.ae-footer__icon--whatsapp {
  color: #4ade80;
}

.ae-footer__icon--mail,
.ae-footer__icon--globe {
  color: #fdba74;
}

.ae-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ae-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ae-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ae-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  width: fit-content;
}

.ae-pill .ae-icon {
  width: 16px;
  height: 16px;
}

.ae-home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 59, 100, 0.05) 0%, var(--color-surface) 55%, #ffffff 100%);
  margin-top: -24px;
}

.ae-home-hero__blob {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.ae-home-hero__blob--right {
  top: 0;
  right: -40px;
  width: 288px;
  height: 288px;
  background: rgba(253, 186, 116, 0.4);
  filter: blur(120px);
}

.ae-home-hero__blob--left {
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: rgba(0, 59, 100, 0.1);
  filter: blur(140px);
}

.ae-home-hero__inner {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .ae-home-hero__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ae-home-hero__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .ae-home-hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 56px;
  }
}

.ae-home-hero__copy {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .ae-home-hero__copy {
    grid-column: span 6;
  }
}

.ae-home-hero__title {
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
  color: #111827;
}

@media (min-width: 640px) {
  .ae-home-hero__title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .ae-home-hero__title {
    font-size: 60px;
  }
}

.ae-home-hero__subtitle {
  margin: 0;
  max-width: 36rem;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.68);
}

@media (min-width: 640px) {
  .ae-home-hero__subtitle {
    font-size: 20px;
  }
}

.ae-home-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ae-home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ae-home-hero__btn:active {
  transform: translateY(1px);
}

.ae-home-hero__btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(0, 59, 100, 0.3);
}

.ae-home-hero__btn--primary:hover {
  background: rgba(0, 59, 100, 0.92);
}

.ae-home-hero__btn--secondary {
  background: var(--color-white);
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ae-home-hero__btn--secondary:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.ae-home-hero__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ae-home-hero__btn-icon .ae-icon {
  width: 20px;
  height: 20px;
}

.ae-home-hero__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: rgba(17, 24, 39, 0.6);
  font-size: 14px;
}

@media (min-width: 640px) {
  .ae-home-hero__badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ae-home-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ae-home-badge .ae-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.ae-home-badge span {
  font-weight: 600;
  color: rgba(17, 24, 39, 0.78);
}

.ae-home-hero__carousel {
  min-width: 0;
}

@media (min-width: 1024px) {
  .ae-home-hero__carousel {
    grid-column: span 6;
  }
}

.ae-home-carousel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  height: 420px;
  background: #111827;
}

.ae-home-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.ae-home-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1000ms ease-in-out;
}

.ae-home-carousel__content {
  position: absolute;
  inset: 0;
  z-index: 20;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-white);
}

.ae-home-carousel__spotlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ae-home-carousel__spotlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ae-home-carousel__spotlight-icon .ae-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.ae-home-carousel__spotlight-label {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ae-home-carousel__spotlight-title {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.ae-home-carousel__trend-label {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ae-home-carousel__chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ae-home-carousel__chips::-webkit-scrollbar {
  display: none;
}

.ae-home-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  transition: background-color 180ms ease, color 180ms ease;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  white-space: nowrap;
}

.ae-home-chip:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ae-home-chip--active {
  background: var(--color-white);
  color: #111827;
}

.ae-home-carousel__controls {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.ae-home-carousel__control {
  pointer-events: auto;
  border: 0;
  cursor: pointer;
  padding: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  color: #111827;
  transition: background-color 180ms ease;
}

.ae-home-carousel__control:hover {
  background: var(--color-white);
}

.ae-home-carousel__control .ae-icon {
  width: 20px;
  height: 20px;
}

.ae-home-carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 35;
}

.ae-home-carousel__progress-bar {
  height: 100%;
  width: 25%;
  background: rgba(255, 255, 255, 0.8);
  transition: width 100ms linear;
}

.ae-home-categories {
  background: var(--color-white);
  padding: 64px 0;
}

.ae-home-categories__inner {
  display: grid;
  gap: 48px;
}

.ae-home-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(0, 59, 100, 0.7);
}

.ae-home-eyebrow--muted {
  color: rgba(17, 24, 39, 0.45);
  font-size: 12px;
  letter-spacing: 0.4em;
}

.ae-home-h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #111827;
}

@media (min-width: 640px) {
  .ae-home-h2 {
    font-size: 36px;
  }
}

.ae-home-h2--compact {
  font-size: 30px;
  font-weight: 700;
}

.ae-home-lead {
  margin: 14px 0 0;
  max-width: 42rem;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.68);
}

.ae-featured-category {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 32px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, rgba(0, 59, 100, 0.8) 100%);
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .ae-featured-category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.ae-featured-category__eyebrow {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.7);
}

.ae-featured-category__title {
  margin: 16px 0 0;
  font-size: 30px;
  font-weight: 700;
}

.ae-featured-category__desc {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.ae-featured-category__count {
  margin-top: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.ae-featured-category__count-number {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
}

.ae-featured-category__count-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.ae-featured-category__btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 16px;
  background: var(--color-white);
  color: #111827;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.ae-featured-category__btn:hover {
  filter: brightness(0.96);
}

.ae-featured-category__image {
  position: relative;
  height: 288px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ae-featured-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ae-featured-category__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.ae-category-cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ae-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ae-category-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ae-category-card2 {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.ae-category-card2:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.ae-category-card2__media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.ae-category-card2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  display: block;
}

.ae-category-card2:hover .ae-category-card2__media img {
  transform: scale(1.05);
}

.ae-category-card2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.6) 100%);
}

.ae-category-card2__media-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--color-white);
  z-index: 2;
}

.ae-category-card2__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.ae-category-card2__count {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ae-category-card2__body {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.ae-category-card2__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.7);
}

.ae-category-card2__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.ae-category-card2__cta .ae-icon {
  width: 20px;
  height: 20px;
  transition: transform 200ms ease;
}

.ae-category-card2:hover .ae-category-card2__cta .ae-icon {
  transform: translateX(4px);
}

.ae-home-featured {
  background: var(--color-surface);
  padding: 64px 0;
}

.ae-home-featured__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ae-home-featured__viewall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.75);
  transition: border-color 180ms ease;
}

.ae-home-featured__viewall:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.ae-home-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ae-home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ae-home-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ae-home-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ae-home-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  box-shadow: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
  overflow: hidden;
  min-width: 0;
}

.ae-home-product-card:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.ae-home-product-card__wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  padding: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(17, 24, 39, 0.75);
  font-size: 16px;
  line-height: 1;
}

.ae-home-product-card__wishlist[data-active="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.ae-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.ae-modal-open {
  overflow: hidden;
}

.ae-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.ae-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.ae-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ae-modal__eyebrow {
  margin: 0 0 4px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ae-modal__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.ae-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.06);
  color: var(--color-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ae-wishlist-modal__body {
  min-height: 220px;
  overflow: auto;
  padding: 18px 22px;
}

.ae-wishlist-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(17, 24, 39, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(17, 24, 39, 0.68);
  font-weight: 800;
}

.ae-wishlist-list {
  display: grid;
  gap: 12px;
}

.ae-wishlist-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.015);
}

.ae-wishlist-item__image {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.04);
}

.ae-wishlist-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ae-wishlist-item__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.ae-wishlist-item__meta {
  color: rgba(17, 24, 39, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.ae-wishlist-item__price {
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 950;
}

.ae-wishlist-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae-wishlist-item__remove {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  font-size: 18px;
  cursor: pointer;
}

.ae-static-page {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.ae-static-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 900;
}

.ae-static-hero {
  display: grid;
  gap: 10px;
  text-align: center;
  padding: 28px 18px;
}

.ae-static-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.ae-static-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(17, 24, 39, 0.66);
  font-size: 18px;
  line-height: 1.6;
}

.ae-static-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.ae-static-card h2,
.ae-static-card h3 {
  margin: 0;
}

.ae-static-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.7;
}

.ae-static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ae-static-feature {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 59, 100, 0.045);
}

.ae-static-feature__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 59, 100, 0.1);
  color: var(--color-primary);
  font-weight: 950;
}

.ae-static-cta {
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-primary), #075985);
  color: var(--color-white);
  text-align: center;
}

.ae-static-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.ae-static-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 14px;
  font-weight: 900;
}

.ae-static-faq {
  display: grid;
  gap: 10px;
}

.ae-static-faq details {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: var(--color-white);
  overflow: hidden;
}

.ae-static-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.ae-static-faq details[open] summary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ae-static-faq p {
  margin: 0;
  padding: 16px 18px;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .ae-wishlist-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ae-wishlist-item__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .ae-static-grid {
    grid-template-columns: 1fr;
  }

  .ae-wishlist-modal__footer {
    align-items: stretch;
    flex-direction: column;
  }
}

.ae-home-product-card__media {
  position: relative;
  height: 192px;
  background: rgba(17, 24, 39, 0.04);
  display: grid;
  place-items: center;
}

.ae-home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ae-home-product-card__quick {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 220ms ease;
}

.ae-home-product-card:hover .ae-home-product-card__quick,
.ae-home-product-card:focus-within .ae-home-product-card__quick {
  opacity: 1;
}

.ae-home-product-card__quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--color-white);
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  max-width: calc(100% - 24px);
  overflow-wrap: anywhere;
  text-align: center;
}

.ae-home-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
  min-width: 0;
}

.ae-home-product-card__brand {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 59, 100, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-home-product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ae-home-product-card__meta {
  margin: 0;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.65);
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ae-home-product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.ae-home-product-card__footer > div {
  min-width: 0;
}

.ae-home-product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  overflow-wrap: anywhere;
}

.ae-home-product-card__merchant {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.55);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ae-home-product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.06);
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
  transition: background-color 180ms ease;
}

.ae-home-product-card__action:hover {
  background: rgba(17, 24, 39, 0.1);
}

.ae-home-product-card__action[aria-disabled="true"] {
  background: rgba(17, 24, 39, 0.03);
  color: rgba(17, 24, 39, 0.35);
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  .ae-home-carousel__image,
  .ae-category-card2__media img,
  .ae-home-product-card,
  .ae-category-card2,
  .ae-home-hero__btn,
  .ae-home-product-card__quick {
    transition: none !important;
  }
}
