.product-detail-section {
    margin-bottom: 40px;
}

.product-name {
    color: #ffffff;
}

.product-gallery {
    margin-top: 20px;
}

.product-gallery img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.feature-card {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.spec-table th,
.spec-table td {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.spec-table th {
    background-color: black;
    font-weight: 600;
    width: 40%;
}

.use-case-list {
    list-style-type: none;
    padding-left: 0;
}

.use-case-list li {
    background: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.safety-warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.product-header {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-tagline {
    color: white;
    font-size: 2.2rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .spec-table {
        font-size: 0.9rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 8px 10px;
    }
}