
#hescm20lp {
  all: initial;
  display: block;
  contain: content;
  isolation: isolate;

  /* Design tokens */
  --color-bg: #1b1c1e;
  --color-bg-card: #18191a;
  --color-text: #fafafa;
  --color-primary: #00aaa6;
  --color-border: #383435;
  --font-bold: 'Hisense Alfabet', 'Helvetica Neue', Arial, sans-serif;
  --font-regular: 'Hisense Alfabet', 'Helvetica Neue', Arial, sans-serif;
  --font-light: 'Hisense Alfabet', 'Helvetica Neue', Arial, sans-serif;
  --font-medium: 'Hisense Alfabet', 'Helvetica Neue', Arial, sans-serif;

  font-family: var(--font-regular);
  color: var(--color-text);
  line-height: 1.4;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scoped reset — every element inside our container */
#hescm20lp *,
#hescm20lp *::before,
#hescm20lp *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

#hescm20lp p {
  margin: 0;
}

/* ===== PAGE CONTAINER ===== */
#hescm20lp .page {
  width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: var(--color-bg);
}

/* ===== HEADER ===== */
#hescm20lp .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}

#hescm20lp .header__title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.3px;
  color: var(--color-text);
  max-width: 340px;
}

#hescm20lp .header__logo {
  width: 225px;
  flex-shrink: 0;
}

#hescm20lp .header__logo img {
  width: 100%;
}

/* ===== HERO SECTION ===== */
#hescm20lp .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

#hescm20lp .hero__image-wrapper {
  width: 100%;
  height: 370px;
  border-radius: 14px;
  overflow: hidden;
}

#hescm20lp .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

#hescm20lp .hero__title-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

#hescm20lp .hero__heading {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  color: var(--color-text);
}

#hescm20lp .hero__heading--accent {
  color: var(--color-primary);
}

#hescm20lp .hero__subtitle {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--color-text);
}

/* ===== PRODUCT SHOWCASE ===== */
#hescm20lp .showcase {
  width: 100%;
}

#hescm20lp .showcase__gradient {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  min-height: 458px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 170, 166, 0) 24.8%,
    rgba(0, 170, 166, 0.21) 55.8%,
    rgba(0, 170, 166, 0.47) 79.3%,
    rgb(0, 170, 166) 100%
  );
}

#hescm20lp .showcase__features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

#hescm20lp .showcase__features--left {
  width: 150px;
}

#hescm20lp .showcase__features--right {
  width: 150px;
}

#hescm20lp .feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

#hescm20lp .feature-icon-item__icon {
  width: 60px;
  height: 60px;
}

#hescm20lp .feature-icon-item__icon svg {
  width: 100%;
  height: 100%;
}

#hescm20lp .feature-icon-item__label {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-text);
  text-align: center;
}

/* Product image in center */
#hescm20lp .showcase__product {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(calc(-50% - 6px));
  width: 600px;
  z-index: 1;
}

#hescm20lp .showcase__product img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Display icons overlay */
#hescm20lp .showcase__display-icons {
  position: absolute;
  top: 150px;
  left: 258px;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 3;
}

#hescm20lp .display-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 8px;
  width: 54px;
}

#hescm20lp .display-icon img {
  width: 100%;
  height: 37px;
  object-fit: contain;
}

#hescm20lp .display-icon span {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 8.84px;
  line-height: 12px;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

#hescm20lp .display-icon--active {
  background: linear-gradient(
    to bottom,
    rgba(0, 170, 166, 0),
    rgba(0, 170, 166, 0.08)
  );
}

/* ===== SECTION TITLES ===== */
#hescm20lp .section-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
}

/* ===== ACCESSORIES ===== */
#hescm20lp .accessories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

#hescm20lp .accessories__grid {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

#hescm20lp .accessory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 207px;
}

#hescm20lp .accessory-item__image-wrapper {
  width: 178px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  position: relative;
}

#hescm20lp .accessory-item__image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#hescm20lp .accessory-item__image-wrapper--filters {
  padding: 0;
}

#hescm20lp .filter-img {
  position: absolute;
}

#hescm20lp .filter-img--top {
  top: 26px;
  left: 86px;
  width: 72px;
  height: 42px;
  object-fit: cover;
}

#hescm20lp .filter-img--bottom {
  top: 52px;
  left: 39px;
  width: 75px;
  height: 51px;
  object-fit: cover;
}

#hescm20lp .accessory-item__label {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

/* ===== FEATURES SECTION ===== */
#hescm20lp .features-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 10px;
}

#hescm20lp .feature-row {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

#hescm20lp .feature-row--reversed {
  flex-direction: row;
}

#hescm20lp .feature-row__image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 544 / 410;
  border-radius: 24px;
  overflow: hidden;
}

#hescm20lp .feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hescm20lp .feature-row__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#hescm20lp .feature-row__header {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
}

#hescm20lp .feature-row__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hescm20lp .feature-row__icon svg {
  width: 60px;
  height: 60px;
}

#hescm20lp .feature-row__titles {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

#hescm20lp .feature-row__name {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-text);
}

#hescm20lp .feature-row__tagline {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}

#hescm20lp .feature-row__description {
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text);
}

/* ===== SPECIFICATION SECTION ===== */
#hescm20lp .spec-section {
  margin-top: 10px;
}

#hescm20lp .spec-section__inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-bg-card);
}

#hescm20lp .spec-section__table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#hescm20lp .spec-section__heading {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 23px;
  color: var(--color-text);
}

#hescm20lp .spec-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#hescm20lp .spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

#hescm20lp .spec-row--last {
  border-bottom: none;
  padding-bottom: 0;
}

#hescm20lp .spec-row__label {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 12.4px;
  color: var(--color-text);
}

#hescm20lp .spec-row__value {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 14.15px;
  color: var(--color-text);
  text-align: right;
}

/* Dimensions visual */
#hescm20lp .spec-section__dimensions {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#hescm20lp .spec-dimensions__product {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== FOOTER ===== */
#hescm20lp .footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

#hescm20lp .footer__logo {
  width: 230px;
}

#hescm20lp .footer__logo img {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
/* Below desktop (1000px) — fluid page */
@media (max-width: 1000px) {
  #hescm20lp .page {
    width: 100%;
    min-width: 320px;
  }
}

/* Tablet — ≤ 768px */
@media (max-width: 768px) {
  #hescm20lp .page {
    padding: 0 30px;
    gap: 30px;
  }

  /* Header */
  #hescm20lp .header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 30px;
  }

  #hescm20lp .header__title {
    max-width: 100%;
    font-size: 24px;
    line-height: 28px;
  }

  #hescm20lp .header__logo {
    width: 170px;
  }

  /* Hero */
  #hescm20lp .hero__image-wrapper {
    height: 260px;
    border-radius: 10px;
  }

  #hescm20lp .hero__heading {
    font-size: 24px;
    line-height: 28px;
  }

  #hescm20lp .hero__subtitle {
    font-size: 14px;
  }

  /* Showcase */
  #hescm20lp .showcase__gradient {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
    padding: 30px 16px;
    border-radius: 14px;
    align-items: center;
  }

  #hescm20lp .showcase__features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    gap: 24px;
  }

  #hescm20lp .showcase__features--left,
  #hescm20lp .showcase__features--right {
    width: auto;
    flex-direction: row;
    gap: 20px;
  }

  #hescm20lp .showcase__features--left {
    order: 1;
  }

  #hescm20lp .showcase__product {
    position: relative;
    left: auto;
    transform: none;
    width: 300px;
    bottom: auto;
    order: 2;
  }

  #hescm20lp .showcase__features--right {
    order: 0;
  }

  #hescm20lp .feature-icon-item {
    width: 100px;
  }

  #hescm20lp .feature-icon-item__icon {
    width: 48px;
    height: 48px;
  }

  #hescm20lp .feature-icon-item__icon svg {
    width: 48px;
    height: 48px;
  }

  #hescm20lp .showcase__display-icons {
    position: absolute;
    top: 67%;
    left: 46%;
    transform: translate(-50%, -20%);
    display: flex;
    gap: 6px;
    align-items: center;
    order: 4;
    z-index: 3;
  }

  #hescm20lp .display-icon {
    width: 40px;
    padding: 4px;
    gap: 3px;
  }

  #hescm20lp .display-icon img {
    height: 26px;
  }

  #hescm20lp .display-icon span {
    font-size: 6px;
    line-height: 8px;
  }

  /* Section titles */
  #hescm20lp .section-title {
    font-size: 24px;
  }

  /* Accessories */
  #hescm20lp .accessories {
    margin-top: 30px;
    gap: 20px;
  }

  #hescm20lp .accessories__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  #hescm20lp .accessory-item {
    width: 100%;
    max-width: 260px;
  }

  /* Features */
  #hescm20lp .features-section {
    gap: 30px;
  }

  #hescm20lp .feature-row,
  #hescm20lp .feature-row--reversed {
    flex-direction: column !important;
    gap: 20px;
  }

  #hescm20lp .feature-row--reversed .feature-row__image {
    order: -1;
  }

  #hescm20lp .feature-row__image {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  #hescm20lp .feature-row__name {
    font-size: 16px;
    line-height: 20px;
  }

  #hescm20lp .feature-row__description {
    font-size: 14px;
    line-height: 18px;
  }

  /* Spec */
  #hescm20lp .spec-section__inner {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  #hescm20lp .spec-section__heading {
    font-size: 20px;
  }

  #hescm20lp .spec-dimensions__product {
    max-width: 320px;
  }

  /* Footer */
  #hescm20lp .footer {
    padding: 40px 0;
  }

  #hescm20lp .footer__logo {
    width: 180px;
  }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
  #hescm20lp .page {
    padding: 0 16px;
    gap: 24px;
  }

  /* Header */
  #hescm20lp .header {
    padding-top: 20px;
    gap: 12px;
  }

  #hescm20lp .header__title {
    font-size: 20px;
    line-height: 24px;
  }

  #hescm20lp .header__logo {
    width: 140px;
  }

  /* Hero */
  #hescm20lp .hero {
    gap: 20px;
  }

  #hescm20lp .hero__image-wrapper {
    height: 200px;
    border-radius: 8px;
  }

  #hescm20lp .hero__heading {
    font-size: 20px;
    line-height: 24px;
  }

  #hescm20lp .hero__subtitle {
    font-size: 13px;
    line-height: 16px;
  }

  /* Showcase */
  #hescm20lp .showcase__gradient {
    padding: 20px 12px 0;
    gap: 20px;
    border-radius: 12px;
  }

  #hescm20lp .showcase__features--left,
  #hescm20lp .showcase__features--right {
    gap: 12px;
  }

  #hescm20lp .feature-icon-item {
    width: 85px;
    gap: 6px;
  }

  #hescm20lp .feature-icon-item__icon {
    width: 40px;
    height: 40px;
  }

  #hescm20lp .feature-icon-item__icon svg {
    width: 40px;
    height: 40px;
  }

  #hescm20lp .feature-icon-item__label {
    font-size: 10px;
    line-height: 12px;
  }

  #hescm20lp .showcase__product {
    width: 320px;
  }

  #hescm20lp .display-icon {
    width: 34px;
    padding: 3px;
    gap: 2px;
  }

  #hescm20lp .display-icon img {
    height: 20px;
  }

  #hescm20lp .display-icon span {
    font-size: 5px;
    line-height: 7px;
  }

  #hescm20lp .showcase__display-icons {
    gap: 4px;
  }

  /* Section titles */
  #hescm20lp .section-title {
    font-size: 20px;
  }

  /* Accessories */
  #hescm20lp .accessories {
    margin-top: 20px;
  }

  #hescm20lp .accessory-item__image-wrapper {
    width: 140px;
    height: 90px;
    padding: 14px;
  }

  #hescm20lp .accessory-item__label {
    font-size: 12px;
  }

  #hescm20lp .filter-img--top {
    top: 18px;
    left: 68px;
    width: 56px;
    height: 34px;
  }

  #hescm20lp .filter-img--bottom {
    top: 38px;
    left: 28px;
    width: 60px;
    height: 42px;
  }

  /* Features */
  #hescm20lp .features-section {
    gap: 24px;
  }

  #hescm20lp .feature-row__header {
    gap: 10px;
  }

  #hescm20lp .feature-row__icon {
    width: 44px;
    height: 44px;
  }

  #hescm20lp .feature-row__icon svg {
    width: 44px;
    height: 44px;
  }

  #hescm20lp .feature-row__name {
    font-size: 15px;
    line-height: 18px;
  }

  #hescm20lp .feature-row__tagline {
    font-size: 12px;
    line-height: 15px;
  }

  #hescm20lp .feature-row__description {
    font-size: 13px;
    line-height: 17px;
  }

  #hescm20lp .feature-row__image {
    border-radius: 10px;
  }

  /* Spec */
  #hescm20lp .spec-section__inner {
    padding: 20px;
    gap: 24px;
    border-radius: 10px;
  }

  #hescm20lp .spec-section__heading {
    font-size: 18px;
  }

  #hescm20lp .spec-row__label {
    font-size: 11px;
  }

  #hescm20lp .spec-row__value {
    font-size: 12px;
  }

  #hescm20lp .spec-dimensions__product {
    max-width: 260px;
  }

  /* Footer */
  #hescm20lp .footer {
    padding: 30px 0;
  }

  #hescm20lp .footer__logo {
    width: 150px;
  }
}

/* Minimum width — 320px */
@media (max-width: 360px) {
  #hescm20lp .page {
    padding: 0 12px;
  }

  #hescm20lp .header__title {
    font-size: 18px;
    line-height: 22px;
  }

  #hescm20lp .header__logo {
    width: 120px;
  }

  #hescm20lp .hero__image-wrapper {
    height: 170px;
  }

  #hescm20lp .hero__heading {
    font-size: 18px;
    line-height: 22px;
  }

  #hescm20lp .showcase__gradient {
    padding: 16px 10px;
  }

  #hescm20lp .showcase__features--left,
  #hescm20lp .showcase__features--right {
    gap: 8px;
  }

  #hescm20lp .feature-icon-item {
    width: 75px;
  }

  #hescm20lp .feature-icon-item__icon {
    width: 36px;
    height: 36px;
  }

  #hescm20lp .feature-icon-item__icon svg {
    width: 36px;
    height: 36px;
  }

  #hescm20lp .feature-icon-item__label {
    font-size: 9px;
    line-height: 11px;
  }

  #hescm20lp .showcase__product {
    width: 180px;
  }

  #hescm20lp .section-title {
    font-size: 18px;
  }

  #hescm20lp .feature-row__icon {
    width: 38px;
    height: 38px;
  }

  #hescm20lp .feature-row__icon svg {
    width: 38px;
    height: 38px;
  }

  #hescm20lp .feature-row__name {
    font-size: 14px;
  }

  #hescm20lp .feature-row__tagline {
    font-size: 11px;
  }

  #hescm20lp .feature-row__description {
    font-size: 12px;
    line-height: 16px;
  }

  #hescm20lp .spec-section__inner {
    padding: 16px;
  }

  #hescm20lp .spec-dimensions__product {
    max-width: 220px;
  }

  #hescm20lp .footer__logo {
    width: 120px;
  }
}
