/* Estilos Personalizados ZaenixStudio */

:root {
    --zs-primary: #007bff;
    --zs-secondary: #6c757d;
    --zs-success: #28a745;
    --zs-danger: #dc3545;
    --zs-warning: #ffc107;
    --zs-info: #17a2b8;
    --zs-light: #f8f9fa;
    --zs-dark: #343a40;
}

body {
    font-family: 'Roboto', sans-serif;
}

.zs-img-responsivo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.zs-resume {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

.zs-select {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.zs-count {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.zs-select span {
    cursor: pointer;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    user-select: none;
}

.zs-select span:hover {
    background: #ddd;
}

.zs-detalhes {
    text-decoration: none;
    padding: 8px 16px;
    background: #6c757d;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.zs-detalhes:hover {
    background: #5a6268;
    color: white;
}

.zs-primary {
    background: var(--zs-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.zs-primary:hover {
    background: #0056b3;
}

#zs-btn-carrinho {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.zs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.zs-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.zs-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.zs-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.zs-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.zs-filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.zs-filter-tab {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.zs-filter-tab.active {
    background: var(--zs-primary);
    color: white;
}

.zs-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.zs-footer a {
    color: #ecf0f1;
    text-decoration: none;
}

.zs-footer a:hover {
    color: var(--zs-primary);
}

.zs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.zs-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--zs-primary);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 10px;
}

.zs-navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zs-md-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .zs-md-6 {
        width: 48%;
        display: inline-block;
        margin: 1%;
        vertical-align: top;
    }
}

zs {
    display: block;
}
