/* Product Specifications Block Styles */

.h2w-product-specifications {
    margin: 2rem 0;
}

.product-specs-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-group {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.spec-group-title {
    margin: 0;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-row {
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row.custom-spec {
    background: #f9f9f9;
}

.spec-label {
    width: 40%;
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-weight: 500;
    color: #555;
    background: #fafafa;
}

.spec-value {
    padding: 0.75rem 1.5rem;
    color: #333;
}

.specs-preview-message,
.specs-preview-note {
    padding: 1rem;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 4px;
    color: #1565c0;
    text-align: center;
}

.specs-preview-note {
    margin-top: 1rem;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .spec-label,
    .spec-value {
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .spec-label {
        padding-bottom: 0.25rem;
        border-bottom: none;
    }

    .spec-value {
        padding-top: 0.25rem;
        font-weight: 600;
    }
}
