/* ============================================
   PÁGINA DE PRODUTO MODERNA
   Layout limpo e profissional
   ============================================ */

.product-details-modern {
    padding: 40px 0;
    background: #fff;
}

/* Descrição do Produto */
.product-description-modern {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-description-modern h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #0066FF;
}

.product-description-modern__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
}

.product-description-modern__content p {
    margin-bottom: 15px;
}

.product-description-modern__content ul,
.product-description-modern__content ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.product-description-modern__content li {
    margin-bottom: 8px;
}

.product-description-modern__content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

/* Especificações */
.product-specs-modern {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
}

.product-specs-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.product-specs-modern__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.product-specs-modern__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-specs-modern__item i {
    color: #0066FF;
    font-size: 1.25rem;
}

.product-specs-modern__item strong {
    color: #2c3e50;
    font-weight: 600;
}

.product-specs-modern__item span {
    color: #6c757d;
}

/* Produtos Relacionados */
.related-products-modern {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-products-modern h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 40px 0;
}

.related-products-modern__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
    .product-details-modern {
        padding: 30px 0;
    }
    
    .product-description-modern {
        padding: 25px 20px;
    }
    
    .product-description-modern h3 {
        font-size: 1.5rem;
    }
    
    .product-specs-modern {
        padding: 20px;
    }
    
    .product-specs-modern__list {
        grid-template-columns: 1fr;
    }
    
    .related-products-modern {
        padding: 40px 0;
    }
    
    .related-products-modern h3 {
        font-size: 1.5rem;
    }
    
    .related-products-modern__grid {
        grid-template-columns: 1fr;
    }
}
