/* Premium Account Dashboard Styles */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c0a25d; /* Matches the site's gold accent */
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition-speed: 0.3s;
}

.account-dashboard {
    padding: 3rem 0;
    min-height: 70vh;
    background-color: #fafafa;
}

.account-sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.account-sidebar .nav-link {
    color: var(--primary-color) !important;
    padding: 0.8rem 1rem !important;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 15px !important;
}

.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
    background-color: var(--bg-light) !important;
    color: var(--accent-color) !important;
}

.account-sidebar .nav-link.active {
    font-weight: 600;
}

.account-sidebar .nav-link i {
    font-size: 1.2rem;
    color: inherit;
}

.account-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.account-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.account-header h4,
.account-header h5 {
    font-weight: 600;
    color: var(--primary-color);
}

.user-profile-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.profile-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.profile-info p {
    margin: 0;
    color: var(--text-muted);
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.orders-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.orders-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.orders-table tr:hover {
    background-color: #fcfcfc;
}

.order-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-completed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-processing { background: #cce5ff; color: #004085; }

.btn-view-order {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed);
}

.btn-view-order:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .account-dashboard {
        padding: 1.5rem 0;
    }
    .account-content {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    .orders-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Premium Luxe Theme Styles */
.text-luxe { color: #DEC273 !important; }
.bg-luxe { background: linear-gradient(135deg, #DEC273 0%, #a88a44 100%) !important; color: #fff !important; }
.btn-luxe { 
    background: linear-gradient(135deg, #DEC273 0%, #a88a44 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-luxe:hover {
    background: linear-gradient(135deg, #a88a44 0%, #DEC273 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(222, 194, 115, 0.4);
}

.btn-outline-luxe {
    color: #DEC273;
    border: 1px solid #DEC273;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-luxe:hover,
.btn-check:checked + .btn-outline-luxe {
    color: #fff;
    background: linear-gradient(135deg, #DEC273 0%, #a88a44 100%);
    border-color: #DEC273;
}

.auth-container .seuptext p {
    width: 100% !important;
}
