.auth-container {
    background-color: #fdfcf8;
    /* Warm off-white background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    font-family: inherit;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.auth-header {
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

.forgot-password {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: #666;
    font-size: 0.9rem;
}

.toggle-btn {
    background: none;
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.toggle-btn:hover {
    color: #333;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: #888;
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.auth-divider:not(:empty)::before {
    margin-right: 1rem;
}

.auth-divider:not(:empty)::after {
    margin-left: 1rem;
}

.guest-btn {
    background-color: #fff;
    color: #555;
    padding: 0.875rem;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.guest-btn:hover {
    background-color: #f9f9f9;
    border-color: #ddd;
    color: #333;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .auth-container {
        padding: 2rem 1rem;
        background: #fff;
    }
}

/* ========================================= */
/*       PREMIUM DASHBOARD STYLES            */
/* ========================================= */

.profile-dashboard {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
    font-family: 'Inter', sans-serif;
    color: #333;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar / Profile Card */
.dashboard-sidebar {
    position: sticky;
    top: 100px;
}

.user-profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.user-profile-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(135deg, #0f2230 0%, #1a3a52 100%);
    z-index: 0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.user-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f2230;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.user-email {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.logout-btn {
    width: 100%;
    background: #fdfcf8;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-btn:hover {
    background: #d4af37;
    color: #fff;
}

/* Main Dashboard Section */
.dashboard-main {
    min-width: 0;
}

.section-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2230;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #777;
    font-size: 1rem;
}

/* Empty Orders */
.empty-orders {
    background: #fff;
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.empty-icon-wrap {
    width: 80px;
    height: 80px;
    background: #fdfcf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    color: #d4af37;
}

.empty-orders h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f2230;
}

.empty-orders p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.shop-now-lnk {
    background: #0f2230;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.shop-now-lnk:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Order Cards Grid */
.orders-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.order-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.order-card-header {
    background: #fcfbf8;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.order-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.text-right {
    text-align: right;
}

.order-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
}

.order-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0f2230;
}

.total-price {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
}

.order-card-status {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Colors */
.status-pending { background: #f39c12; }
.status-processing { background: #3498db; }
.status-shipped { background: #2ecc71; }
.status-delivered { background: #27ae60; }
.status-cancelled { background: #e74c3c; }

.order-card-status:has(.status-pending) .status-text { color: #f39c12; }
.order-card-status:has(.status-processing) .status-text { color: #3498db; }
.order-card-status:has(.status-shipped) .status-text { color: #2ecc71; }
.order-card-status:has(.status-delivered) .status-text { color: #27ae60; }
.order-card-status:has(.status-cancelled) .status-text { color: #e74c3c; }

.order-items-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-img-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.item-meta {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    gap: 15px;
}

.prebook-badge {
    background: #d4af37;
    color: #fff;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.order-card-footer {
    padding: 1rem 1.5rem;
    background: #fcfbf8;
    border-top: 1px solid rgba(0,0,0,0.04);
    text-align: right;
}

.print-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #555;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.print-btn:hover {
    background: #0f2230;
    border-color: #0f2230;
    color: #fff;
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .profile-dashboard {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-info-group.text-right {
        text-align: left;
    }
}
