/* ============================================
   Server Page CSS - 服务详情页面样式
   ============================================ */

/* ========== 服务标签按钮容器 ========== */
.service-tabs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
}

.tab-btn {
    background: #252a3a;
    color: var(--text-muted);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: #2f3548;
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

/* ========== 页面容器 ========== */
.server-page-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    padding: 40px 40px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* ========== 左侧服务信息区 ========== */
.server-info-section {
    padding-top: 10px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 18px;
    margin-top: 45px;
}

.section-title:first-child {
    margin-top: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.info-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 50%;
}

.info-list li .highlight {
    color: #7ecb5a;
    font-weight: 500;
}

/* ========== 右侧表单区 ========== */
.server-form-section {
    position: sticky;
    top: 150px;
}

.form-card {
    background: #1a1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-image-wrapper {
    position: relative;
}

.form-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.form-content {
    padding: 28px;
}

/* ========== 表单字段 ========== */
.form-field {
    margin-bottom: 26px;
}

.field-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

/* ========== 按钮组 ========== */
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-select {
    background: #252a3a;
    color: var(--text-muted);
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select:hover {
    background: #2f3548;
    color: var(--text-main);
}

.btn-select.active {
    background: var(--primary);
    color: #fff;
}

/* ========== 表单行 ========== */
.form-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 26px;
}

.arrow-icon {
    color: var(--text-gray);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 24px;
}

.level-input {
    width: 100%;
    background: #252a3a;
    border: none;
    color: var(--text-main);
    padding: 14px;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: all 0.2s;
    -moz-appearance: textfield;
}

.level-input::-webkit-outer-spin-button,
.level-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.level-input:focus {
    background: #2f3548;
}

/* ========== 滑块样式 ========== */
.power-slider {
    margin-bottom: 30px;
    position: relative;
}

.slider-range {
    width: 100%;
    height: 12px;
    background: #252a3a;
    border-radius: 6px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.2s;
    border: 2px solid #e0e0e0;
    margin-top: -8px;
}

.slider-range::-webkit-slider-thumb:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.slider-range::-moz-range-thumb {
    width: 20px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.slider-range::-moz-range-thumb:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.slider-range::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 6px;
}

.slider-range::-moz-range-track {
    height: 12px;
    border-radius: 6px;
    background: #252a3a;
    border: none;
}

.slider-range::-moz-range-progress {
    height: 12px;
    border-radius: 6px;
    background: var(--primary);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

/* ========== 价格区域 ========== */
.price-section {
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.total-hour {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

/* ========== 购买按钮 ========== */
.btn-buy {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-buy:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 49, 71, 0.4);
}

.btn-buy:active {
    transform: translateY(0);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .server-page-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px 30px 50px 30px;
    }

    .server-info-section {
        padding-top: 0;
    }

    .server-form-section {
        position: static;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-tabs-wrapper {
        padding: 0 20px;
    }

    .service-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .service-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .server-page-container {
        padding: 20px 20px 40px 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .info-list li {
        font-size: 0.9rem;
    }

    .form-image {
        height: 220px;
    }

    .form-content {
        padding: 20px;
    }

    .price {
        font-size: 1.6rem;
    }
}

/* 订单追踪页面样式 */
.tracking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 查询表单区域 */
.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.tracking-form-section {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.required {
    color: #ff4444;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.btn-search,
.btn-clear {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-search {
    background: #ff4757;
    color: #fff;
}

.btn-search:hover {
    background: #fff;
    color: #000;
}

.btn-clear {
    background: #ff4757;
    color: #fff;
}

.btn-clear:hover {
    background: #ff3344;
}

/* 订单状态 */
.order-status {
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.order-status strong {
    color: #fff;
    font-weight: 600;
}

/* 订单详情 */
.order-details-section {
    background: transparent;
}

.details-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.order-details-table {
    display: flex;
    flex-direction: column;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.table-header {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding-bottom: 12px;
}

.col-product {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-link {
    color: #ff4757;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.product-link:hover {
    color: #ff6677;
    text-decoration: underline;
}

.product-qty {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 14px;
}

.col-total {
    color: #ff4757;
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

.table-row.summary-row {
    grid-template-columns: 1fr 150px;
}

.col-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
}

.col-value {
    color: #ff4757;
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

.col-value.payment-method {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.table-row.total-row {
    border-bottom: none;
    padding-top: 20px;
}

.total-row .col-label {
    font-size: 16px;
    font-weight: 700;
}

.total-row .col-value {
    font-size: 18px;
    font-weight: 700;
}

/* 响应式 */
@media (max-width: 768px) {
    .tracking-container {
        padding: 30px 15px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .tracking-form-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-search,
    .btn-clear {
        width: 100%;
    }

    /* 订单详情移动端优化 */
    .order-details-section {
        padding: 20px;
    }

    .order-details-table {
        overflow-x: auto;
    }

    .table-header {
        display: none;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 0;
    }

    .table-row.product-row {
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .col-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-link {
        font-size: 14px;
        line-height: 1.5;
    }

    .product-qty {
        font-size: 13px;
    }

    .col-total {
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        margin-top: 5px;
    }

    .table-row.summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .table-row.summary-row:last-child {
        border-bottom: none;
    }

    .col-label {
        font-size: 14px;
        font-weight: 500;
    }

    .col-value {
        font-size: 15px;
        text-align: right;
    }

    .total-row {
        padding-top: 15px;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
        margin-top: 10px;
    }

    .total-row .col-label {
        font-size: 16px;
        font-weight: 700;
    }

    .total-row .col-value {
        font-size: 20px;
        font-weight: 700;
    }

    .order-status {
        padding: 10px;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .tracking-container {
        padding: 20px 10px;
    }

    .form-title {
        font-size: 20px;
    }

    .tracking-form-section {
        padding: 15px;
    }

    .form-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-search,
    .btn-clear {
        padding: 10px 20px;
        font-size: 13px;
    }

    .order-details-table {
        padding: 0 5px;
    }

    .product-link {
        font-size: 13px;
    }

    .col-total {
        font-size: 15px;
    }

    .col-label {
        font-size: 13px;
    }

    .col-value {
        font-size: 14px;
    }

    .total-row .col-label {
        font-size: 15px;
    }

    .total-row .col-value {
        font-size: 18px;
    }
}

/* ============================================
   Dashboard 页面样式
   ============================================ */

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.dashboard-content {
    padding-top: 20px;
}

.welcome-section {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.welcome-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.logout-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.logout-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.points-info {
    margin-bottom: 20px;
    font-size: 1rem;
}

.highlight-red {
    color: #ff4757;
    font-weight: 600;
}

.account-desc {
    font-size: 1rem;
    line-height: 1.8;
}

.link-red {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.link-red:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* 右侧边栏 */
.dashboard-sidebar {
    position: sticky;
    top: 120px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar svg {
    width: 26px;
    height: 26px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-email {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.user-level {
    color: #ff4757;
    font-size: 0.85rem;
    font-weight: 600;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.dash-nav-item {
    padding: 16px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: block;
}

.dash-nav-item:last-child {
    border-bottom: none;
}

.dash-nav-item:hover {
    color: var(--text-main);
    padding-left: 10px;
}

.dash-nav-item.active {
    color: var(--text-main);
    font-weight: 700;
    padding-left: 15px;
}

.dash-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff4757;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 30px 60px 30px;
    }

    .dashboard-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px 20px 50px 20px;
    }

    .welcome-text,
    .points-info,
    .account-desc {
        font-size: 0.95rem;
    }

    .user-profile {
        padding: 15px 0;
    }

    .dash-nav-item {
        padding: 14px 0;
        font-size: 0.9rem;
    }
}

/* ============================================
   Profile 表单样式
   ============================================ */

.profile-form {
    padding-top: 10px;
}

.profile-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.profile-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-field-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.profile-field-required {
    color: #ff4757;
    margin-left: 4px;
}

.profile-field-input {
    width: 100%;
    height: 48px;
    background: #1e2235;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

.profile-field-input:focus {
    border-color: rgba(255, 71, 87, 0.5);
    background: #252a3a;
}

.profile-field-input[readonly] {
    cursor: not-allowed;
    opacity: 0.8;
}

.profile-field-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    min-height: 40px;
}

.profile-select-wrapper {
    position: relative;
}

.profile-field-select {
    width: 100%;
    height: 48px;
    background: #1e2235;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0 40px 0 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
}

.profile-field-select:focus {
    border-color: rgba(255, 71, 87, 0.5);
    background: #252a3a;
}

.profile-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.profile-form-actions {
    margin-top: 40px;
}

.profile-btn-save {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 16px 32px;
    height: 48px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
}

.profile-btn-save:hover {
    background: #ff6677;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.profile-btn-save:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .profile-form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .profile-form {
        padding-top: 0;
    }

    .profile-form-row {
        margin-bottom: 25px;
    }

    .profile-field-input,
    .profile-field-select {
        height: 44px;
        padding: 0 14px;
        font-size: 0.95rem;
    }

    .profile-field-select {
        padding-right: 36px;
    }

    .profile-btn-save {
        width: 100%;
        height: 44px;
        padding: 0 24px;
        font-size: 0.95rem;
    }
}

/* ============================================
   Reviews 页面样式
   ============================================ */

.reviews-welcome-section {
    margin-bottom: 60px;
}

.reviews-welcome-header {
    background: #1e2235;
    padding: 20px 24px;
    border-left: 4px solid #ff4757;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.reviews-welcome-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.reviews-content-area {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.reviews-form-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-rate-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-rate-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.reviews-stars {
    display: flex;
    gap: 8px;
}

.review-star {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.review-star:hover,
.review-star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.reviews-trust-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    margin: 0;
}

.reviews-textarea {
    width: 100%;
    min-height: 180px;
    background: #1e2235;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    resize: vertical;
    transition: all 0.2s;
}

.reviews-textarea:focus {
    border-color: rgba(255, 71, 87, 0.5);
    background: #252a3a;
}

.reviews-textarea::placeholder {
    color: var(--text-muted);
}

.reviews-submit-btn {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 14px 32px;
    height: 48px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    align-self: flex-start;
}

.reviews-submit-btn:hover {
    background: #ff6677;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.reviews-submit-btn:active {
    transform: translateY(0);
}

.reviews-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.reviews-description-box {
    background: #1a1e2e;
    padding: 30px;
    border-radius: 12px;
    line-height: 1.8;
}

.reviews-description-box p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reviews-description-box p:last-child {
    margin-bottom: 0;
}

.reviews-why-title {
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 30px !important;
}

.reviews-expand-section {
    text-align: center;
    margin-top: 20px;
}

.reviews-show-more-btn {
    background: transparent;
    color: #ff4757;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.reviews-show-more-btn:hover {
    color: #ff6677;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .reviews-content-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-image-side {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .reviews-welcome-header {
        padding: 16px 20px;
    }

    .reviews-welcome-header h2 {
        font-size: 1.3rem;
    }

    .reviews-rate-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-star {
        font-size: 1.5rem;
    }

    .reviews-description-box {
        padding: 20px;
    }

    .reviews-textarea {
        min-height: 140px;
    }

    .reviews-submit-btn {
        width: 100%;
    }
}

/* ========== 订单表格 ========== */
.orders-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.orders-table thead {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.orders-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.orders-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.orders-table td {
    padding: 18px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.order-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.order-link:hover {
    color: #ff6677;
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-completed {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
}

.status-processing {
    background: rgba(255, 165, 2, 0.15);
    color: #ffa502;
}

.status-cancelled {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.status-pending {
    background: rgba(30, 144, 255, 0.15);
    color: #1e90ff;
}

.action-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.action-link:hover {
    color: #ff6677;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .orders-table th,
    .orders-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}
