/* Price Guide Section */
.price-section {
    background-color: var(--light-bg);
}

.price-disclaimer {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.price-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: var(--white);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.price-table th:first-child {
    background-color: #0d1245;
    /* Darker shade for row headers */
}

/* Column specific styles */
.col-general {
    background-color: #f9f9f9;
}

.col-premium {
    background-color: #fff8f5;
    /* Very light orange tint */
}

.col-supreme {
    background-color: #fff2e0;
    /* Stronger orange tint */
    border-left: 2px solid var(--primary-light);
    border-right: 2px solid var(--primary-light);
    position: relative;
}

.col-supreme::after {
    content: "BEST";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    display: none;
    /* Hide for now, table headers make it tricky */
}

.price-header {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.price-rate {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.price-value {
    font-weight: 700;
    color: var(--text-color);
}

.price-value.highlight {
    color: var(--primary-color);
    font-size: 1.1em;
}

.as-period {
    font-weight: 600;
    color: var(--secondary-color);
}

.recommend-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Mobile Card View (hidden on desktop) */
.price-cards {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.price-card.premium {
    border-color: var(--primary-light);
    background: #fff8f5;
}

.price-card.supreme {
    border: 2px solid var(--primary-color);
    background: #fff2e0;
    position: relative;
    overflow: hidden;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card-title {
    font-size: 20px;
    font-weight: 700;
}

.price-card-rate {
    font-size: 14px;
    color: #666;
}

.price-card-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.price-card-label {
    color: #666;
}

.price-card-value {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .price-table-container {
        display: none;
    }

    .price-cards {
        display: flex;
    }
}