  #mainImgWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
  }

  #mainImg {
    max-width: 100%;
    max-height: 370px;
    object-fit: contain;
  }

  .thumb-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    justify-content: center;
  }

  .thumb-item {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    transition: border-color 0.15s;
  }

  .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .thumb-item.active,
  .thumb-item:hover {
    border: 2px solid #54AB47;
  }

  .label-small {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
  }

  .product-name {
    font-size: 28px;
    font-weight: 800;
    color: #2a9d2a;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
  }

  .price-label {
    font-size: 14px;
    font-weight: 800;
    color: #333;
  }

  .price-value {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    line-height: 1;
  }

  .price-unit {
    font-size: 12px;
    font-weight: 700;
    color: #555;
  }

  .spec-line {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }

  .spec-line strong {
    font-weight: 700;
  }

  .meaning-text {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .meaning-text strong {
    font-weight: 700;
  }


  /* ── Bottom CTA buttons ── */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    background: #e07a2a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: none;
    border-radius: 50px;
    padding-left: 24px;
    padding-right: 8px;
    height: 48px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .btn-cta i {
    font-size: 32px;
    margin-left: 12px;
  }

  .btn-cta.btn-cta-outline {
    border: 1px solid #e07a2a;
    background: transparent;
    color: #e07a2a;
  }

  .btn-cta:hover {
    background: #c86a1e;
    color: #fff;
  }


  .cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
  }