/* NutriSegredos Amazon Affiliate - Estilos Públicos */

/* Reset e base */
.nsaa-store-container,
.nsaa-single-product,
.nsaa-related-products {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.nsaa-store-container *,
.nsaa-single-product *,
.nsaa-related-products * {
    box-sizing: inherit;
}

/* Cabeçalho da loja */
.nsaa-store-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 2px solid #e0e0e0;
}

.nsaa-store-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsaa-store-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 300;
}

/* Formulário de busca */
.nsaa-search-form {
    margin-bottom: 2rem;
    text-align: center;
}

.nsaa-search-form form {
    display: inline-flex;
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
}

.nsaa-search-form input[type="text"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.nsaa-search-form input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
}

.nsaa-search-form button {
    padding: 0.75rem 1.5rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nsaa-search-form button:hover {
    background: #229954;
}

/* Resultados da busca */
.nsaa-search-results {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

/* Grid de produtos */
.nsaa-products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.nsaa-columns-1 { grid-template-columns: 1fr; }
.nsaa-columns-2 { grid-template-columns: repeat(2, 1fr); }
.nsaa-columns-3 { grid-template-columns: repeat(3, 1fr); }
.nsaa-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards de produto */
.nsaa-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.nsaa-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nsaa-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.nsaa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.nsaa-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #ecf0f1;
    color: #95a5a6;
    font-weight: 500;
}

/* Informações do produto */
.nsaa-product-info {
    padding: 1.5rem;
}

.nsaa-product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nsaa-product-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    min-height: 4.5rem;
}

.nsaa-product-price {
    margin-bottom: 1.5rem;
}

.nsaa-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Botões */
.nsaa-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.nsaa-btn-primary {
    background: #3498db;
    color: white;
}

.nsaa-btn-primary:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.nsaa-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.nsaa-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.nsaa-product-actions {
    text-align: center;
}

/* Produto único */
.nsaa-single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.nsaa-product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nsaa-product-image-large {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.nsaa-product-image-large img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nsaa-no-image-large {
    height: 400px;
    background: #ecf0f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    font-size: 1.2rem;
}

.nsaa-product-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.nsaa-product-price-large {
    margin-bottom: 2rem;
}

.nsaa-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nsaa-product-description-full {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
}

.nsaa-product-actions-large {
    margin-top: 2rem;
}

/* Produtos relacionados */
.nsaa-related-products {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.nsaa-related-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 2rem 0;
}

.nsaa-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nsaa-related-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nsaa-related-product-card:hover {
    transform: translateY(-3px);
}

.nsaa-related-image {
    height: 150px;
    overflow: hidden;
    background: #f8f9fa;
}

.nsaa-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nsaa-no-image-small {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
    color: #95a5a6;
    font-size: 0.9rem;
}

.nsaa-related-info {
    padding: 1rem;
}

.nsaa-related-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    min-height: 2.6rem;
}

.nsaa-related-price {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #e74c3c;
}

.nsaa-related-actions {
    text-align: center;
}

/* Paginação */
.nsaa-pagination {
    text-align: center;
    margin-top: 3rem;
}

.nsaa-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #3498db;
    transition: all 0.3s ease;
}

.nsaa-pagination .page-numbers:hover,
.nsaa-pagination .page-numbers.current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Mensagem de produtos não encontrados */
.nsaa-no-products {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nsaa-columns-3,
    .nsaa-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nsaa-store-title {
        font-size: 2rem;
    }
    
    .nsaa-product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nsaa-product-title-large {
        font-size: 1.5rem;
    }
    
    .nsaa-price-large {
        font-size: 2rem;
    }
    
    .nsaa-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nsaa-search-form form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nsaa-columns-2,
    .nsaa-columns-3,
    .nsaa-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .nsaa-related-grid {
        grid-template-columns: 1fr;
    }
    
    .nsaa-single-product {
        padding: 1rem;
    }
    
    .nsaa-store-header {
        padding: 1rem 0;
    }
    
    .nsaa-store-title {
        font-size: 1.5rem;
    }
    
    .nsaa-store-description {
        font-size: 1rem;
    }
}

/* Animações de carregamento */
.nsaa-loading {
    opacity: 0.6;
    pointer-events: none;
}

.nsaa-track-click {
    position: relative;
    overflow: hidden;
}

.nsaa-track-click::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.nsaa-track-click:active::after {
    width: 200px;
    height: 200px;
}


/* Estilos para produtos relacionados nos posts */
.nsaa-post-related-products {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.nsaa-post-related-header {
    text-align: center;
    margin-bottom: 2rem;
}

.nsaa-post-related-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.nsaa-post-related-subtitle {
    color: #7f8c8d;
    margin: 0;
    font-size: 1rem;
}

.nsaa-post-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nsaa-post-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.nsaa-post-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nsaa-post-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.nsaa-post-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nsaa-post-product-card:hover .nsaa-post-product-image img {
    transform: scale(1.05);
}

.nsaa-post-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #c3c4c7;
    font-size: 2rem;
}

.nsaa-post-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.nsaa-post-product-content {
    padding: 1.5rem;
}

.nsaa-post-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nsaa-post-product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    min-height: 3rem;
}

.nsaa-post-product-actions {
    text-align: center;
}

.nsaa-post-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nsaa-post-btn:hover {
    background: #229954;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.nsaa-btn-icon {
    font-size: 1.1rem;
}

.nsaa-post-related-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.nsaa-disclaimer {
    margin: 0;
    color: #6c757d;
}

/* Estilos para o widget */
.nsaa-widget-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nsaa-widget-product {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
}

.nsaa-widget-product:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nsaa-widget-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
}

.nsaa-widget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nsaa-widget-content {
    flex: 1;
    min-width: 0;
}

.nsaa-widget-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.nsaa-widget-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.nsaa-widget-btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nsaa-widget-btn:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
}

/* Responsividade para produtos relacionados nos posts */
@media (max-width: 768px) {
    .nsaa-post-related-products {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .nsaa-post-related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nsaa-post-related-title {
        font-size: 1.5rem;
    }
    
    .nsaa-post-product-image {
        height: 180px;
    }
    
    .nsaa-post-product-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nsaa-post-related-products {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .nsaa-post-product-image {
        height: 160px;
    }
    
    .nsaa-post-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .nsaa-widget-product {
        padding: 0.75rem;
    }
    
    .nsaa-widget-image {
        width: 50px;
        height: 50px;
    }
}

/* Animações */
.nsaa-post-product-card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

/* Estados especiais */
.nsaa-post-related-products.nsaa-loading {
    opacity: 0.6;
}

.nsaa-post-related-products.nsaa-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Integração com temas */
.entry-content .nsaa-post-related-products,
.post-content .nsaa-post-related-products,
.content .nsaa-post-related-products {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Widget na sidebar */
.widget .nsaa-widget-products {
    margin-top: 1rem;
}

.widget_nsaa_related_products_widget .widget-title {
    margin-bottom: 1rem;
}

/* Acessibilidade */
.nsaa-post-btn:focus,
.nsaa-widget-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nsaa-post-related-products {
        display: none;
    }
}

