.luxury-table-container {
      width: 100%;
      max-width: 860px;
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0 0, 0.08);
      border: 1px solid #f0ede8;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    thead th {
      background: linear-gradient(to bottom, #ffffff, #f8f6f3);
      color: #8a7d6f;
      font-weight: 600;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      padding: 28px 40px;
      text-align: center;
      border-bottom: 1px solid #e8e3dc;
    }

    thead th:first-child {
      text-align: center;
    }

    thead th:nth-child(2) {
      text-align: center;
    }

    thead th:last-child {
      text-align: center;
    }

    tbody tr {
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    tbody tr:hover {
      background-color: #fdfbf8;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.07);
    }

    tbody td {
      padding: 32px 40px;
      border-bottom: 1px solid #f0ede8;
      vertical-align: middle;
    }

    tbody td:first-child {
      font-weight: 600;
      color: #1a1816;
      font-size: 2.0rem;
      width: 38%;
      text-align: center;
    }

    tbody td:nth-child(2) {
      text-align: center;
      font-size: 2.0rem;
    }

    tbody td:last-child {
      color: #4a453f;
      font-size: 2.0rem;
      line-height: 1.6;
      text-align: center;
    }

    /* Subtle gold accent line under header */
    thead th {
      position: relative;
    }

    thead th::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 40px;
      right: 40px;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, #d4af37, transparent);
      opacity: 0.6;
    }

    /* Last row no bottom border */
    tbody tr:last-child td {
      border-bottom: none;
    }

    /* Optional: premium badge or icon in first column */
    .premium-label {
      display: block;
      background: linear-gradient(135deg, #d4af37, #f1d8a0);
      color: #1a1104;
      font-size: 0.99rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      border-radius: 30px;
      margin: 8px auto 0;
      text-align: center;
      width: fit-content;
    }

    /* Responsive styles for mobile and tablet */
    @media (max-width: 768px) {
      .luxury-table-container {
        border-radius: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      thead th {
        font-size: 1.1rem;
        padding: 20px 15px;
        letter-spacing: 1px;
      }

      thead th:first-child {
        text-align: center;
      }

      thead th:nth-child(2) {
        text-align: center;
      }

      thead th:last-child {
        text-align: center;
      }

      thead th::after {
        left: 15px;
        right: 15px;
      }

      tbody td {
        padding: 20px 15px;
      }

      tbody td:first-child {
        font-size: 1rem;
        width: 50%;
        text-align: center;
      }

      tbody td:nth-child(2) {
        font-size: 1rem;
        text-align: center;
      }

      tbody td:last-child {
        font-size: 1rem;
        text-align: center;
      }

      .premium-label {
        font-size: 0.65rem;
        padding: 3px 8px;
        display: block;
        margin: 6px auto 0;
        text-align: center;
        width: fit-content;
      }
    }

    @media (max-width: 480px) {
      .luxury-table-container {
        border-radius: 12px;
        margin: 0 -15px;
        border-left: none;
        border-right: none;
      }

      thead th {
        font-size: 1.5rem;
        padding: 16px 12px;
        letter-spacing: 0.5px;
      }

      thead th:first-child {
        text-align: center;
      }

      thead th:nth-child(2) {
        text-align: center;
      }

      thead th:last-child {
        text-align: center;
      }

      thead th::after {
        left: 12px;
        right: 12px;
      }

      tbody td {
        padding: 16px 12px;
        font-size: 1.45rem;
      }

      tbody td:first-child {
        font-size: 1.45rem;
        width: 55%;
        text-align: center;
      }

      tbody td:nth-child(2) {
        font-size: 1.45rem;
        text-align: center;
      }

      tbody td:last-child {
        font-size: 1.45rem;
        text-align: center;
      }

      .premium-label {
        font-size: 0.6rem;
        padding: 2px 6px;
        display: block;
        margin: 4px auto 0;
        text-align: center;
        width: fit-content;
      }
    }