.produto-detalhes-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #7e57c2;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
}

.produto-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.produto-imagem img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.produto-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.marca {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.preco {
    font-size: 24px;
    font-weight: bold;
    color: #7e57c2;
    margin-bottom: 20px;
}

.tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #666;
}

.descricao {
    margin-bottom: 30px;
}

.descricao h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.descricao p {
    line-height: 1.6;
    color: #666;
}

.form-carrinho {
    margin-bottom: 20px;
}

.btn-adicionar-carrinho {
    background: #7e57c2;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-adicionar-carrinho:hover {
    background: #6a4aaa;
}

.btn-voltar {
    display: inline-block;
    color: #7e57c2;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #7e57c2;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-voltar:hover {
    background: #7e57c2;
    color: white;
}

@media (max-width: 768px) {
    .produto-detalhes {
        grid-template-columns: 1fr;
    }
    
    .produto-info h1 {
        font-size: 24px;
    }
}