/* ACF Product Specifications Grid */
.acf-product-specs {
    margin: 30px 0;
}

.acf-product-specs h3 {
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 600;
}

.acf-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.acf-spec-item {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.acf-spec-label {
    font-weight: 700;
    color: #333;
    display: inline;
    margin-right: 4px;
}

.acf-spec-value {
    color: #555;
    display: inline;
}

/* Tablet y móvil: 1 columna */
@media (max-width: 1024px) {
    .acf-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .acf-spec-item {
        padding: 10px 12px;
        font-size: 0.95em;
    }
}

/* Descripción del producto */
.woocommerce-product-description {
    margin-top: 50px;
}

.woocommerce-product-description h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.product-description-content {
    line-height: 1.8;
    font-size: 1.05em;
    color: #555;
}

.product-description-content p {
    margin-bottom: 1em;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1em 0 1em 2em;
}

.product-description-content li {
    margin-bottom: 0.5em;
}
