/* Products Detail Page Styles */

.product-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tech-descriptor {
    color: #6c757d;
    font-style: italic;
    font-size: 1.1rem;
}

.hcpcs-code {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #bbdefb;
}

.product-description h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.spec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.spec-card h5 {
    color: #2c5aa0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.spec-card h5 i {
    color: #28a745;
}

.spec-card p {
    margin: 0;
    color: #495057;
}

.gallery-item img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}



/* Contact Widget Enhancement */
.widget_contact .widget-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .spec-card {
        margin-bottom: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

/* Animation Enhancements */
.content-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.content-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Badge Styles */
.badge-feature {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.25rem;
}

.badge-regulatory {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.25rem;
}