
    .ts-display-page {
      --ts-text: #111827;
      --ts-muted: #5f6673;
      --ts-border: #e5e7eb;
      --ts-light: #f7f8fa;
      --ts-dark: #111827;
      --ts-radius: 16px;
      color: var(--ts-text);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.65;
      max-width: 1440px;
      margin: 0 auto;
      overflow: hidden;
    }

    .ts-display-page * {
      box-sizing: border-box;
    }

    .ts-display-page img {
      display: block;
      width: 100%;
      height: auto;
    }

    .ts-container {
      width: 92%;
      max-width: 1240px;
      margin: 0 auto;
    }

    /* =========================
       HERO
    ========================= */

    .ts-hero {
      padding: 70px 0 80px;
    }

    .ts-hero-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center;
    }

    .ts-eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #666;
    }

    .ts-hero h1 {
      margin: 0 0 20px;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: -1.8px;
    }

    .ts-hero-text {
      max-width: 610px;
      margin: 0;
      font-size: 19px;
      line-height: 1.7;
      color: var(--ts-muted);
    }

    .ts-hero-image {
      overflow: hidden;
      border-radius: 18px;
    }

    .ts-hero-image img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }


    /* =========================
       INTRO
    ========================= */

    .ts-intro {
      padding: 90px 0 70px;
      background: var(--ts-light);
    }

    .ts-intro-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .ts-section-label {
      margin-bottom: 12px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: #777;
    }

    .ts-intro h2,
    .ts-section-heading h2 {
      margin: 0 0 18px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.15;
      letter-spacing: -0.8px;
    }

    .ts-intro p {
      margin: 0;
      font-size: 17px;
      line-height: 1.8;
      color: var(--ts-muted);
    }


    /* =========================
       SIZE NAVIGATION
    ========================= */

    .ts-size-nav {
      padding: 24px 0;
      border-bottom: 1px solid var(--ts-border);
      background: #fff;
    }

    .ts-size-nav-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ts-size-nav span {
      padding: 7px 15px;
      border: 1px solid var(--ts-border);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      color: #555;
      background: #fff;
    }


    /* =========================
       COMPACT 10 / 15.6
    ========================= */

    .ts-compact {
      padding: 90px 0;
    }

    .ts-section-heading {
      max-width: 850px;
      margin-bottom: 42px;
    }

    .ts-section-heading p {
      margin: 0;
      max-width: 800px;
      font-size: 17px;
      color: var(--ts-muted);
      line-height: 1.75;
    }

    .ts-compact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .ts-product-card {
      overflow: hidden;
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      background: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .ts-product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    }

    .ts-product-image {
      overflow: hidden;
      background: #f5f6f7;
    }

    .ts-product-image img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .ts-product-content {
      padding: 28px;
    }

    .ts-product-content h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.25;
    }

    .ts-product-content p {
      margin: 0 0 20px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--ts-muted);
    }

    .ts-product-link {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      color: var(--ts-text);
      text-decoration: none;
    }

    .ts-product-link:hover {
      text-decoration: underline;
    }


    /* =========================
       21.5 FEATURED
    ========================= */

    .ts-featured {
      padding: 90px 0;
      background: var(--ts-light);
    }

    .ts-featured-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 60px;
      align-items: center;
    }

    .ts-featured-image {
      overflow: hidden;
      border-radius: var(--ts-radius);
      background: #fff;
    }

    .ts-featured-image img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .ts-featured-content h2 {
      margin: 0 0 18px;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.15;
    }

    .ts-featured-content > p {
      margin: 0 0 26px;
      font-size: 17px;
      line-height: 1.75;
      color: var(--ts-muted);
    }

    .ts-featured-list {
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .ts-featured-list li {
      position: relative;
      padding: 9px 0 9px 22px;
      font-size: 15px;
      border-bottom: 1px solid var(--ts-border);
    }

    .ts-featured-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      font-size: 20px;
      line-height: 1.2;
    }


    /* =========================
       LARGE FORMAT
    ========================= */

    .ts-large-format {
      padding: 100px 0;
    }

    .ts-large-format .ts-section-heading {
      margin-bottom: 45px;
    }

    .ts-large-format-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .ts-large-card {
      overflow: hidden;
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      background: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .ts-large-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    }

    .ts-large-card-image {
      position: relative;
      background: #f5f6f7;
    }

    .ts-large-card-image img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .ts-touch-badge {
      position: absolute;
      left: 16px;
      bottom: 16px;
      padding: 7px 11px;
      border-radius: 5px;
      background: rgba(17, 24, 39, 0.9);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    .ts-large-card-content {
      padding: 25px;
    }

    .ts-large-card-content h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.25;
    }

    .ts-large-card-content p {
      margin: 0 0 18px;
      font-size: 14px;
      line-height: 1.7;
      color: var(--ts-muted);
    }


    /* =========================
       CUSTOM TOUCHSCREEN
    ========================= */

    .ts-custom {
      margin-top: 45px;
      padding: 42px 45px;
      border-radius: var(--ts-radius);
      background: var(--ts-dark);
      color: #fff;
    }

    .ts-custom-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 50px;
      align-items: center;
    }

    .ts-custom h3 {
      margin: 0 0 12px;
      font-size: 30px;
      line-height: 1.2;
    }

    .ts-custom p {
      max-width: 750px;
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      line-height: 1.75;
    }

    .ts-custom-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .ts-custom-option {
      padding: 12px 15px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 7px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }


    /* =========================
       TOUCH TECHNOLOGY
    ========================= */

    .ts-touch-technology {
      padding: 90px 0;
      background: var(--ts-light);
    }

    .ts-touch-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .ts-touch-card {
      padding: 35px;
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      background: #fff;
    }

    .ts-touch-card h3 {
      margin: 0 0 8px;
      font-size: 24px;
    }

    .ts-touch-size {
      margin-bottom: 16px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #666;
    }

    .ts-touch-card p {
      margin: 0;
      font-size: 15px;
      line-height: 1.75;
      color: var(--ts-muted);
    }

    .ts-touch-note {
      margin-top: 25px;
      padding: 20px 25px;
      border-left: 3px solid #222;
      background: #fff;
      font-size: 14px;
      line-height: 1.7;
      color: #555;
    }


    /* =========================
       INSTALLATION
    ========================= */

    .ts-installation {
      padding: 90px 0;
    }

    .ts-installation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .ts-install-card {
      overflow: hidden;
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      background: #fff;
    }

    .ts-install-image {
      background: #f5f6f7;
    }

    .ts-install-image img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .ts-install-content {
      padding: 23px;
    }

    .ts-install-content h3 {
      margin: 0 0 7px;
      font-size: 20px;
    }

    .ts-install-content p {
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
      color: var(--ts-muted);
    }


    /* =========================
       FEATURES
    ========================= */

    .ts-features {
      padding: 90px 0;
      background: var(--ts-light);
    }

    .ts-feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .ts-feature-item {
      padding: 25px;
      border: 1px solid var(--ts-border);
      border-radius: 12px;
      background: #fff;
    }

    .ts-feature-item h3 {
      margin: 0 0 8px;
      font-size: 17px;
      line-height: 1.3;
    }

    .ts-feature-item p {
      margin: 0;
      font-size: 13px;
      line-height: 1.65;
      color: var(--ts-muted);
    }


    /* =========================
       MANUFACTURER
    ========================= */

    .ts-manufacturer {
      padding: 100px 0 80px;
    }

    .ts-manufacturer-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center;
    }

    .ts-manufacturer-image {
      overflow: hidden;
      border-radius: var(--ts-radius);
    }

    .ts-manufacturer-image img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .ts-manufacturer-content h2 {
      margin: 0 0 18px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.15;
    }

    .ts-manufacturer-content > p {
      margin: 0 0 25px;
      font-size: 16px;
      line-height: 1.8;
      color: var(--ts-muted);
    }

    .ts-manufacturer-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 9px 25px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .ts-manufacturer-list li {
      position: relative;
      padding-left: 18px;
      font-size: 14px;
      color: #444;
    }

    .ts-manufacturer-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      font-weight: 700;
    }


    /* =========================
       BOTTOM SPACE
    ========================= */

    .ts-bottom-space {
      height: 25px;
    }


    /* =========================
       TABLET
    ========================= */

    @media (max-width: 1024px) {

      .ts-hero-grid,
      .ts-featured-grid,
      .ts-manufacturer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .ts-hero {
        padding: 55px 0 65px;
      }

      .ts-hero-content {
        order: 1;
      }

      .ts-hero-image {
        order: 2;
      }

      .ts-large-format-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ts-installation-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ts-feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ts-custom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 767px) {

      .ts-container {
        width: 90%;
      }

      .ts-hero {
        padding: 45px 0 55px;
      }

      .ts-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
      }

      .ts-hero-text {
        font-size: 16px;
      }

      .ts-intro,
      .ts-compact,
      .ts-featured,
      .ts-large-format,
      .ts-touch-technology,
      .ts-installation,
      .ts-features,
      .ts-manufacturer {
        padding: 65px 0;
      }

      .ts-compact-grid,
      .ts-large-format-grid,
      .ts-touch-grid,
      .ts-installation-grid {
        grid-template-columns: 1fr;
      }

      .ts-feature-grid {
        grid-template-columns: 1fr;
      }

      .ts-custom {
        margin-top: 30px;
        padding: 30px 25px;
      }

      .ts-custom-options {
        grid-template-columns: 1fr 1fr;
      }

      .ts-manufacturer-list {
        grid-template-columns: 1fr;
      }

      .ts-product-content,
      .ts-large-card-content,
      .ts-touch-card {
        padding: 23px;
      }
    }


    /* =========================
       SMALL MOBILE
    ========================= */

    @media (max-width: 480px) {

      .ts-hero h1 {
        font-size: 36px;
      }

      .ts-size-nav-inner {
        gap: 7px;
      }

      .ts-size-nav span {
        padding: 6px 11px;
        font-size: 12px;
      }

      .ts-custom-options {
        grid-template-columns: 1fr;
      }

      .ts-custom h3 {
        font-size: 26px;
      }
    }
  