/* Estilos da página de Outlet */

/* Barra de busca */
.outlet-search-wrap {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.outlet-search-wrap input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.outlet-search-wrap input:focus {
    border-color: #FF8C00;
}

.outlet-count {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Grade de produtos */
.outlet-section {
    padding: 4rem 0;
    background: white;
}

.outlet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.outlet-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #FF8C00;
}

.outlet-image {
    margin: -1.5rem -1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlet-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.outlet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.outlet-supplier {
    background: #2C2C2C;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    letter-spacing: 0.5px;
}

.outlet-discount {
    background: #FF8C00;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.outlet-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.outlet-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.outlet-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.outlet-price-vista,
.outlet-price-prazo {
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.outlet-price-vista {
    background: #FFF4E6;
    border: 1px solid #FFD9A8;
}

.outlet-price-prazo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 0.25rem;
}

.outlet-price-vista .price-label {
    color: #cc7000;
}

.price-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2C2C2C;
}

.outlet-price-vista .price-value {
    color: #FF8C00;
    font-size: 1.25rem;
}

.outlet-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.outlet-btn:hover {
    background: #e67e00;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Estado vazio */
.outlet-empty {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

.outlet-empty h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

/* Aviso de condições */
.outlet-disclaimer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .outlet-grid {
        grid-template-columns: 1fr;
    }
}
