@charset "UTF-8";
/* Minimalist Product Specifications */
.ww-product-specs {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.ww-product-specs h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ww-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.ww-spec-item {
    display: flex;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ww-spec-name {
    width: 120px;
    min-width: 120px;
    color: #6b7280;
    font-weight: 400;
}

.ww-spec-value {
    flex: 1;
    color: #111827;
}

.ww-spec-description {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .ww-spec-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .ww-spec-name {
        width: 100%;
    }
}