/* Skeleton loader animation and styles */
.skeleton-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.skeleton {
    background: linear-gradient(
        90deg,
        #e0e0e0 25%,
        #f0f0f0 50%,
        #e0e0e0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

.skeleton.atb-checkout-thumbnail {
    width: 78px;
    height: 78px;
}

.skeleton.line {
    height: 24px;
    flex: 1;
}

.skeleton.line.short {
    height: 30px;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 auto;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}