/* ===============================================
   DR-Drive-06 Price Page Styles
   Theme: Mint/Fresh
   =============================================== */

/* Price Table */
.price-table-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: var(--primary-color);
}

.price-table th {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.price-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.price-table td {
    padding: 20px 24px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    color: var(--gray-700);
}

.price-table td:first-child {
    text-align: left;
    padding-left: 30px;
}

.price-table td:first-child strong {
    display: block;
    color: var(--gray-900);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.price-table td:first-child small {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.price-table tbody tr {
    transition: background var(--transition-fast);
}

.price-table tbody tr:hover {
    background: var(--gray-50);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Price Info Text */
.price-info-text {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.price-info-text i {
    margin-right: 6px;
}

.price-warning-text {
    text-align: center;
    margin-top: 12px;
    color: #dc3545;
    font-weight: 700;
    font-size: 1.05rem;
}

.price-warning-text i {
    margin-right: 6px;
}

/* Notice Box */
.price-notice-box {
    background: var(--primary-lighter);
    padding: 30px;
    border-radius: var(--radius-xl);
    max-width: 800px;
    margin: 0 auto;
}

.price-notice-box h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.price-notice-list {
    list-style: none;
    padding: 0;
    color: var(--gray-700);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.price-notice-list li {
    padding: 5px 0;
}

.price-notice-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .price-table th,
    .price-table td {
        padding: 15px 16px;
        font-size: 0.9rem;
    }

    .price-table th:first-child,
    .price-table td:first-child {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .price-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 480px;
    }
}
