/* LIGHT THEME VARIABLES & ANIMATIONS */

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#mobile-menu.hidden {
    display: none;
}

/* --- Progress Bar Styles (Identical to TrackMe) --- */
.step {
    text-align: center;
    position: relative;
    width: 25%;
}

.icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background-color: white;
    border: 2px solid #e5e7eb; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af; 
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    position: relative;
}

.step-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s;
}

/* Active State (Gold) */
.step.active .icon-box {
    border-color: #cd853f;
    background-color: #cd853f;
    color: white;
    box-shadow: 0 4px 12px rgba(205, 133, 63, 0.3);
    transform: scale(1.1);
}

.step.active .step-label {
    color: #cd853f;
    font-weight: bold;
}

/* --- Order Item Styles --- */
.order-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}
.order-item-row:hover {
    background-color: #f9fafb;
}
.order-item-row:last-child {
    border-bottom: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f9fafb; 
}
::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cd853f; 
}