
  .rx-product-simple-page {
    --navy: #102a43;
    --blue: #2563eb;
    --border: #e5e7eb;
    --text: #334155;
    --muted: #475569;
    --white: #ffffff;

    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.65;
  }

  .rx-product-simple-page * {
    box-sizing: border-box;
  }

  .rx-product-simple-page .container {
    width: min(1080px, 92%);
    margin: 0 auto;
  }

  .rx-product-simple-page section {
    padding: 58px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
  }

  .rx-product-simple-page h1,
  .rx-product-simple-page h2,
  .rx-product-simple-page h3 {
    margin: 0 0 24px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .rx-product-simple-page h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .rx-product-simple-page p {
    margin: 0 0 18px;
    font-size: 16px;
    color: var(--muted);
  }

  .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .spec-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
  }

  .spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 16px;
  }

  .spec-table th,
  .spec-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
  }

  .spec-table tr:last-child th,
  .spec-table tr:last-child td {
    border-bottom: none;
  }

  .spec-table th {
    width: 28%;
    color: var(--navy);
    background: #f8fafc;
    font-weight: 700;
  }

  .spec-table td {
    color: var(--text);
    font-weight: 600;
  }

  .product-image-box {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
  }

  .product-image-box img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

  .image-note {
    margin-top: 14px;
    font-size: 14px;
    color: var(--muted);
  }

  /* Product Model Download Area */
  .download-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: stretch;
    margin-top: 26px;
  }

  .download-icon {
    width: 240px;
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .download-icon:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  }

  .download-icon img {
    width: 150px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 16px;
  }

  .download-icon span {
    display: block;
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
  }

  .download-icon small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
  }

  @media (max-width: 768px) {
    .rx-product-simple-page section {
      padding: 44px 0;
    }

    .spec-table th,
    .spec-table td {
      display: block;
      width: 100%;
    }

    .spec-table th {
      border-bottom: none;
      padding-bottom: 6px;
    }

    .spec-table td {
      padding-top: 6px;
    }

    .download-icons {
      gap: 22px;
    }

    .download-icon {
      width: 100%;
      min-height: 210px;
    }

    .download-icon img {
      width: 140px;
    }
  }
