/* Estilos específicos para a página de produtos */

/* Seção Hero de Produtos */
:root {
    --primary: #00cc66;
    --primary-dark: #00aa55;
    --secondary: #ff6600;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --box-shadow: 0 0 10px 2px rgba(0, 204, 102, 0.7);
    --metor-color: rgba(0, 204, 102, 0.8);
    --bg-color: #021100;
    --color-btn: white;
}

[data-theme="natal"] {
    --primary: #ffffff;
    --primary-dark: #1b2520;
    --secondary: #ff6600;
    --dark: #c4bebe;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --box-shadow: 0 0 10px 2px rgba(223, 223, 223, 0.7);
    --metor-color: rgba(0, 204, 102, 0.8);
    --bg-color: #021100;
    --color-btn: rgba(49, 49, 49, 0.719);
}

.products-hero {
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #17A649;
}

.hero-content {
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.products-hero.container {
    width: 80%;
}

.hero-text {
    animation: slideInFromLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f2f2f2;
    margin-bottom: 20px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.3rem;
    color: #f2f2f2;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* Container que alinha a busca e as tags */
.container-filtros {
    display: flex;
    gap: 10px;
    /* Espaço entre a caixa de busca e os botões */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* --- Botões de Filtro/Tags --- */
.tags-container {
    flex-wrap: wrap;
    gap: 20px;
}

.tag-button {
    background-color: white;
    color: #5a627d;
    /* Cor do texto (Roxo/Azul escuro na imagem) */
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    /* Bordas bem arredondadas (pílula) */
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    /* Evita que o texto quebre a linha dentro do botão */
}

.tag-button:hover {
    background-color: #f0f0f0;
}

/* Estilo para o botão principal/ativo ("Todos os Produtos") */
.tag-button.primary {
    background-color: #28a745;
    /* Cor de fundo verde */
    color: white;
    border-color: #28a745;
    font-weight: bold;
}

.tag-button.primary:hover {
    background-color: #1e7e34;
    /* Verde mais escuro no hover */
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 204, 102, 0.6);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-section {
    padding: 25px 0 50px 0;
}

.hero-image {
    animation: slideInFromRight 1s ease-out 0.3s both;
    position: relative;
}

.hero-image img {
    width: 110%;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 204, 102, 0.582));
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Seção de Categorias */

.catalog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(204, 202, 201, 0.4);
}

.categories-section {
    padding: 20px 0;
    background-color: #f2f2f2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: rgba(0, 30, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 204, 102, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 204, 102, 0.2);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 204, 102, 0.4);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.3);
}

.category-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-count {
    display: inline-block;
    background: rgba(0, 204, 102, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.search-container {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

/* Grid de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    justify-items: center;
}

.products-grid.grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
}

.product-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 204, 102, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover::after {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 204, 102, 0.25);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 225, 255, 0.4);
}

.product-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: max-content;

}

.product-card:hover .product-image img {
    transform: scale(1.2);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #2e2e2e;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.3);
}

.product-description {
    color: #2e2e2e;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.spec-item {
    background: rgba(0, 204, 102, 0.1);
}

.card-brand-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    z-index: 5;
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-brand-fallback {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-brand-fallback img {
    height: 30px;
    /* Adjust size for fallback logo */
    width: auto;
}

/* padding: 10px 12px;
border-radius: 8px;
text-align: center;
font-size: 13px;
font-weight: 600;
color: var(--primary);
border: 1px solid rgba(0, 204, 102, 0.2);
} */

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.3);
}

.old-price {
    color: #ccc;
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.7;
}

.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-actions .btn {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--color-btn);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-actions .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;
}

.product-actions .btn:hover::before {
    left: 100%;
}

.product-actions .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
}

.btn-mark {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mark:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

/* Animações */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 204, 102, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 204, 102, 0.8), 0 0 30px rgba(0, 204, 102, 0.4);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos de Paginação */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
}

.pagination-controls {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 102, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover:not(.active) {
    background: #f5f5f5;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 204, 102, 0.3);
}

.pagination-ellipsis {
    padding: 0 8px;
    color: #999;
    font-weight: 600;
}

.pagination-info {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Responsividade para Paginação */
@media (max-width: 768px) {
    .pagination-controls {
        gap: 5px;
    }

    .pagination-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .pagination-number {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .pagination-info {
        font-size: 12px;
    }
}

/* Modal de Produto */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* Para o scroll ser interno se precisar */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.product-modal-overlay.active .product-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    color: #333;
}

.modal-close-btn:hover {
    background: #ff4444;
    color: white;
    transform: rotate(90deg);
}

.modal-content-wrapper {
    display: flex;
    flex-direction: row;
    overflow-y: auto;
    /* Scroll apenas no conteúdo se necessário */
    max-height: 90vh;
}

.modal-image-container {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 300px;
    overflow: hidden;
    /* Needed for zoom */
}

.modal-image-container img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.modal-image-container img:hover {
    transform: scale(1.6);
}

.modal-info-container {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-codes {
    margin-bottom: 20px;
}

.code-badge {
    background: #eee;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1rem;
    color: #555;
    border: 1px solid #ddd;
}

.modal-description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-specs {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.modal-specs p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

.modal-specs p:last-child {
    margin-bottom: 0;
}

.modal-actions {
    margin-top: auto;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Loading State */
.modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.modal-loading.active {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content-wrapper {
        flex-direction: column;
    }

    .modal-image-container {
        padding: 20px;
        min-height: 200px;
    }

    .modal-image-container img {
        max-height: 250px;
    }

    .modal-info-container {
        padding: 25px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

.btn-wishlist-add {
    position: absolute;
    bottom: 15px;
    right: 15px;
    top: auto;
    left: auto;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--secondary, #ff6600);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-wishlist-add:hover {
    transform: scale(1.1);
    background: var(--secondary, #ff6600);
    color: white;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* Modal specific positioning */
.modal-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--secondary, #ff6600);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modal-wishlist-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
    color: white;
}

.modal-image-container {
    position: relative;
    /* Ensure absolute child aligns to this */
}

#floating-list-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary, #ff6600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s;
}

#floating-list-btn:hover {
    transform: scale(1.1);
}

#list-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.modal-list-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-list-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: slideInFromTop 0.3s;
}

.modal-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.close-list-modal {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-list-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.custom-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    z-index: 10001;
    transition: transform 0.3s;
}

.custom-toast.show {
    transform: translateX(-50%) translateY(0);
}

#paginationInfo {
    margin-top: 20px;
}