.luggage-loader {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.locker {
    width: 150px;
    height: 200px;
    background: #1A374D;
    position: relative;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.locker-door {
    width: 100%;
    height: 100%;
    background: #02436B;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left;
    animation: doorOpen 2s infinite;
}

.luggage {
    width: 80px;
    height: 100px;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: luggageMove 2s infinite;
}

.luggage-body {
    width: 100%;
    height: 100%;
    background: #B1D0E0;
    border-radius: 5px;
    position: relative;
}

.luggage-handle {
    width: 40px;
    height: 10px;
    background: #1A374D;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.luggage-loader .fa-lock {
    color: #1A374D;
    font-size: 6rem;
}

.luggage-loader .fa-suitcase {
    color: #B1D0E0;
    font-size: 4rem;
    animation: suitcaseMove 3s infinite;
}

@keyframes doorOpen {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(-90deg);
    }
    80% {
        transform: rotateY(-90deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

@keyframes luggageMove {
    0% {
        bottom: -100px;
    }
    20% {
        bottom: 100px;
    }
    80% {
        bottom: 100px;
    }
    100% {
        bottom: -100px;
    }
}

@keyframes lockPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes suitcaseMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(0);
    }
} 