
  .rx-product-detail-page {
    --navy: #102a43;
    --blue: #2563eb;
    --border: #e5e7eb;
    --light: #f8fafc;
    --text: #334155;
    --muted: #64748b;

    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.65;
  }

  .rx-product-detail-page * {
    box-sizing: border-box;
  }

  .rx-product-detail-page .container {
    width: min(1080px, 92%);
    margin: 0 auto;
  }

  .rx-product-detail-page section {
    padding: 58px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
  }

  .rx-product-detail-page h2,
  .rx-product-detail-page h3 {
    margin: 0 0 24px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .rx-product-detail-page h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
  }

  .rx-product-detail-page h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .rx-product-detail-page p {
    margin: 0 0 18px;
    font-size: 16px;
    color: var(--muted);
  }

  .rx-product-detail-page ul {
    margin: 18px 0 22px;
    padding-left: 22px;
  }

  .rx-product-detail-page li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text);
  }

  .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;
  }

  .spec-table th,
  .spec-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
    font-size: 15px;
  }

  .spec-table tr:last-child th,
  .spec-table tr:last-child td {
    border-bottom: none;
  }

  .spec-table th {
    width: 32%;
    color: var(--navy);
    background: #f8fafc;
    font-weight: 700;
  }

  .spec-table td {
    color: var(--text);
    font-weight: 600;
  }

  .table-title {
    margin: 34px 0 16px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
  }

  .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);
    text-align: center;
  }

  .download-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: stretch;
    margin-top: 28px;
  }

  .download-icon {
    width: 250px;
    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: 155px;
    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;
  }

  .contact-box {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #f8fafc;
  }

  .contact-box a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
  }

  .contact-box a:hover {
    text-decoration: underline;
  }

  .contact-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
  }

  .contact-btn:hover {
    background: #1d4ed8;
    text-decoration: none !important;
  }

  @media (max-width: 768px) {
    .rx-product-detail-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: 145px;
    }
  }
