/* Receiteria Reviews - CSS Otimizado */

/* Botão "Achei útil" melhorado */
.review-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F53E28;
    border: 0;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.helpful-btn i {color: #fff !important;}

.helpful-btn:hover {
    background: #36eb98;
    border-color: #36eb98;
    color: #53240C;
    transform: translateY(-1px);
}

.helpful-btn:hover i {color: #53240C !important;}



.helpful-btn.voted {
    background: #F53E28;
    border-color: #F53E28;
    color: white;
}

.helpful-btn.voted:hover {
    background: #d63384;
    border-color: #d63384;
}

.helpful-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.helpful-btn:hover i {
    transform: scale(1.1);
}

.helpful-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.helpful-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Botões de admin melhorados */
.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edit-btn {
    background: #F53E28;
    color: white;
}

.edit-btn:hover {
    background: #F53E28;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(23, 162, 184, 0.3);
}

.delete-btn {
    background: #F53E28;
    color: white;
}

.delete-btn:hover {
    background: #F53E28;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.admin-btn i {
    font-size: 11px;
}

/* MODAL DE GALERIA - MODO CLARO */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.gallery-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-counter {
    font-size: 14px;
    color: #B69583;
    font-weight: 500;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #703416;
}

.gallery-close {
    background: none;
    border: none;
    color: #703416;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #703416;
    font-size: 24px;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-main {
    flex: 1;
    display: flex;
    height: 100%;
    padding: 0 100px;
}

.gallery-image-container {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.gallery-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.gallery-details {
    flex: 1;
    padding: 40px 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-top:10px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.reviewer-data {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #703416;
}

.reviewer-rating {
    margin-bottom: 8px;
}

.reviewer-rating i {
    color: #F53E28;
    margin-right: 2px;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-text-preview {
    background: #FBF7F1;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #703416;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-thumbnails {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: #F53E28;
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cursor personalizado para fotos */
.review-thumbnail.gallery-trigger {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.review-thumbnail.gallery-trigger:hover {
    transform: scale(1.05);
}

/* Modal moderno */
.modern-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modern-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modern-modal-content {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, #F53E28, #ff6b4a);
    color: white;
}

.modern-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color:#fff;
}

.modern-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.modern-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modern-form-group {
    margin-bottom: 20px;
    padding: 0 24px;
}

.modern-form-group:first-of-type {
    margin-top: 24px;
}

.modern-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.modern-form-control:focus {
    outline: none;
    border-color: #F53E28;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 62, 40, 0.1);
}

.modern-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.modern-btn-primary {
    background: #F53E28;
    color: white;
}

.modern-btn-primary:hover {
    background: #d63384;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 62, 40, 0.3);
}

.modern-btn-secondary {
    background: #6c757d;
    color: white;
}

.modern-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Modais de filtro e ordenação */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .modern-modal-content {
        margin: 20px;
        max-width: none;
    }
    
    .review-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .gallery-header {
        padding: 15px 20px;
    }

    .gallery-main {
        flex-direction: column;
        padding: 0 20px;
    }

    /* MOBILE: Ocultar detalhes da avaliação, mostrar apenas fotos */
    .gallery-details {
        display: none !important;
    }

    .gallery-image-container {
        flex: 1;
        padding: 10px;
    }

    .gallery-nav {
        padding: 15px 10px;
        font-size: 20px;
    }

    .gallery-prev {
        left: 15px;
    }

    .gallery-next {
        right: 15px;
    }

    .thumbnails-container {
        justify-content: center;
    }
}

/* Spinner para loading */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.125em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.125em;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Estilos específicos do sistema de reviews */
.review {
    margin-bottom: 20px;
    padding: 15px;
    border: 0;
    border-radius: 8px;
    background: rgba(251, 247, 241, 0.5);
}

.review.has-photo {
    display: flex;
    gap: 15px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-body {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.review-photo {
    flex-shrink: 0;
}

.review-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.review-text-tags {
    flex: 1;
}

.custom-badge {
    background: #F53E28;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.response {
    background: #f8f9fa;
    padding: 10px;
    border-left: 3px solid #F53E28;
    margin-top: 10px;
    font-style: italic;
}

.aguardando-aprovacao {
    background: #ffc107;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

/* Formulário de review */
.review-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating i {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-label {
    font-weight: bold;
    color: #F53E28;
}

#comentarios .btn-tag {
    margin: 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
}

#comentarios .btn-tag.selected {
    background: #F53E28;
    color: white;
    border-color: #F53E28;
}

/* Corrigir quebra de linha dos botões */
.form-group.text-end {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.form-group.text-end .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.custom-file-preview {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.custom-file-preview:hover {
    border-color: #F53E28;
}

.custom-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

#remove-preview {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

/* Rating distribution */
.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-bar .star {
    min-width: 80px;
    font-size: 16px;
}

.progress {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #F53E28;
    transition: width 0.3s ease;
}

.rating-count {
    min-width: 30px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* Recipe rating shortcode */
.recipe-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
    line-height: 1;
}

.recipe-rating:hover {
    transform: scale(1.02);
}

.recipe-rating i {
    font-size: 16px;
    color: #F53E28;
    vertical-align: middle;
}

.recipe-rating .rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    vertical-align: middle;
}

.recipe-rating .rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0 5px 5px 5px;
}

.recipe-rating .rating-number {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

/* Garantir que não quebre em containers pequenos */
.recipe-rating-container {
    display: inline-block;
    text-align: center;
}

/* Otimizações de performance */
.review-thumbnail {
    will-change: transform;
}

.gallery-image {
    will-change: opacity;
}

.helpful-btn {
    will-change: transform;
}

/* Lazy loading placeholder */
.review-thumbnail[data-src] {
    background: #f0f0f0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0"/><text x="50" y="50" text-anchor="middle" dy=".3em" fill="%23999">Carregando...</text></svg>');
    background-size: cover;
    background-position: center;
}



/* ===== CAROUSEL DE FOTOS REVIEWS ===== */

.fotos-reviews-carousel-container {
    position: relative;
    margin: 20px 0;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fotos-reviews-carousel {
    display: flex;
    gap: 12px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.fotos-reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.fotos-reviews-item {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
}

.fotos-reviews-thumb {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fotos-reviews-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fotos-reviews-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fotos-reviews-thumb:hover img {
    transform: scale(1.05);
}

/* Botão "Envie a sua" */
.fotos-reviews-submit-btn {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F53E28 0%, #ff6b54 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fotos-reviews-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.fotos-reviews-submit-btn:hover::before {
    left: 100%;
}

.fotos-reviews-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 62, 40, 0.3);
}

.fotos-reviews-submit-icon {
    font-size: 24px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.fotos-reviews-submit-btn:hover .fotos-reviews-submit-icon {
    transform: scale(1.1);
}

.fotos-reviews-submit-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botões de navegação */
.fotos-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.fotos-reviews-nav:hover {
    background: #F53E28;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.fotos-reviews-prev {
    left: 10px;
}

.fotos-reviews-next {
    right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .fotos-reviews-carousel {
        padding: 15px;
        gap: 8px;
    }
    
    .fotos-reviews-item {
        width: 100px;
        height: 100px;
    }
    
    .fotos-reviews-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .fotos-reviews-prev {
        left: 5px;
    }
    
    .fotos-reviews-next {
        right: 5px;
    }
    
    .fotos-reviews-submit-icon {
        font-size: 20px;
    }
    
    .fotos-reviews-submit-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .fotos-reviews-item {
        width: 80px;
        height: 80px;
    }
    
    .fotos-reviews-carousel {
        padding: 10px;
        gap: 6px;
    }
    
    .fotos-reviews-submit-icon {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .fotos-reviews-submit-text {
        font-size: 9px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.fotos-reviews-carousel-container {
    animation: fadeIn 0.5s ease-out;
}

.fotos-reviews-item {
    animation: slideIn 0.3s ease-out;
    animation-fill-mode: both;
}

.fotos-reviews-item:nth-child(1) { animation-delay: 0.1s; }
.fotos-reviews-item:nth-child(2) { animation-delay: 0.2s; }
.fotos-reviews-item:nth-child(3) { animation-delay: 0.3s; }
.fotos-reviews-item:nth-child(4) { animation-delay: 0.4s; }
.fotos-reviews-item:nth-child(5) { animation-delay: 0.5s; }
.fotos-reviews-item:nth-child(6) { animation-delay: 0.6s; }
.fotos-reviews-item:nth-child(7) { animation-delay: 0.7s; }
.fotos-reviews-item:nth-child(8) { animation-delay: 0.8s; }

/* Estados de loading */
.fotos-reviews-thumb.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

