/* Order Page Styles */
.order-page-container {
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

/* Sidebar Styling */
.order-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 20px;
}

.sidebar-section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-list, .action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item, .action-item {
    margin-bottom: 8px;
}

.category-link, .action-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.category-link:hover, .action-link:hover {
    background: #f1f5f9;
    color: #007bff;
}

.category-link.active {
    background: #eff6ff;
    color: #007bff;
    border-color: #dbeafe;
    font-weight: 600;
}

.category-link .icon, .action-link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
}

/* Product Grid and Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #007bff;
}

.product-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 25px;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.currency-code {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-left: 4px;
}

.period {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

.product-features {
    margin-bottom: 30px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.95rem;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child {
    border-bottom: none;
}

.btn-order {
    background: #007bff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s ease;
}

.btn-order:hover {
    background: #0056b3;
    transform: scale(1.02);
}

/* Tab Content Transitions */
.tab-pane {
    transition: opacity 0.15s linear;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .order-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
