@media only screen and (min-width: 768px) {
ul.products li.product {
width: 16.05%!important;
}
}
/* Section titles */
.text .has-body-1-font-size{
    font-size:22px;
    font-weight:700;
    margin:25px 0 12px;
    letter-spacing:0.5px;
}

/* Table layout */
.product__features-table{
    width:100%;
    border-collapse:collapse;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom:25px;
}

/* Table cells */
.product__features-table td{
    padding:12px 15px;
    font-size:14px;
    color:#333;
}

/* Alternate row colors */
.product__features-table tr:nth-child(odd){
    background:#f2f2f2;
}

.product__features-table tr:nth-child(even){
    background:#ffffff;
}

/* First column (feature names) */
.product__features-table td:first-child{
    font-weight:600;
    width:50%;
}

/* Optional hover effect */
.product__features-table tr:hover{
    background:#e9e9e9;
}

/* Mobile responsiveness */
@media (max-width:768px){
    .product__features-table td{
        padding:10px;
        font-size:13px;
    }
} 
/* Product specifications styling */
.product-short-description {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.product-short-description p {
    margin: 10px 0;
    padding: 8px 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: baseline;
    transition: transform 0.2s ease;
}

.product-short-description p:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Style for the labels (Frequency of use, Power, Running surface) */
.product-short-description p strong {
    min-width: 150px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-right: 10px;
}

.product-short-description p strong::after {
    content: ":";
    position: absolute;
    right: 5px;
    color: #007cba;
}

/* Style for the values */
.product-short-description p br {
    display: none;
}

/* Alternative grid layout */
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.product-specs-grid .spec-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.product-specs-grid .spec-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs-grid .spec-value {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
}

/* Table layout option */
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-specs-table tr {
    border-bottom: 1px solid #eef2f6;
}

.product-specs-table tr:last-child {
    border-bottom: none;
}

.product-specs-table td {
    padding: 12px 20px;
}

.product-specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    width: 40%;
}

.product-specs-table td:last-child {
    color: #007cba;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-short-description p {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-short-description p strong {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .product-specs-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-specs-table td:first-child {
        width: 100%;
        border-bottom: 1px solid #eef2f6;
    }
}
/* Two-Column Table with Alternating White and Grey Rows */
.parameters {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    font-family: inherit;
    overflow: hidden;
}

/* Clear floats */
.parameters:after {
    content: "";
    display: table;
    clear: both;
}

/* Left and right columns */
.parameters .left-side,
.parameters .right-side {
    width: 48%;
    float: left;
    box-sizing: border-box;
}

.parameters .left-side {
    margin-right: 4%;
}

.parameters .right-side {
    margin-left: 0;
}

/* Parameter boxes */
.parameters .parameter-box {
    width: 100%;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

/* Headers inside parameter boxes */
.parameters .parameter-box h3 {
    margin: 0;
    padding: 14px 18px;
    background: #2c3e50;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #1a252f;
}

/* Each row line */
.parameters .parameter-box .line {
    display: flex;
    align-items: flex-start;
    padding: 12px 18px;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    line-height: 1.5;
}

/* Alternating row colors - white and grey */
.parameters .parameter-box .line:nth-child(odd) {
    background-color: #ffffff;
}

.parameters .parameter-box .line:nth-child(even) {
    background-color: #f5f5f5;
}

/* Parameter name (left column) */
.parameters .parameter-box .line .name {
    flex: 0 0 45%;
    font-weight: 600;
    color: #2c3e50;
    padding-right: 12px;
}

/* Parameter value (right column) */
.parameters .parameter-box .line .value {
    flex: 0 0 50%;
    color: #555555;
    font-weight: 400;
}

/* Remove any unwanted paragraph spacing */
.parameters .parameter-box .line p {
    display: none;
}

/* Responsive - stack columns on mobile */
@media screen and (max-width: 768px) {
    .parameters .left-side,
    .parameters .right-side {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-left: 0;
    }
    
    .parameters .left-side {
        margin-bottom: 20px;
    }
}

/* Optional: Add hover effect for better user experience */
.parameters .parameter-box .line:hover {
    background-color: #f0f7ff;
    transition: background-color 0.2s ease;
}
