.ts-product-list-container {
    max-width: 100%;
    margin: 0;
    padding: 60px 0;
}

.ts-category-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px 20px 10px;
    max-width: 1224px;
    margin-left: auto;
    margin-right: auto;
}

.ts-category-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.ts-category-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.ts-category-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.ts-product-list-item {
    background: #fff;
    margin-bottom: 60px;
    padding: 0;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}

.ts-product-list-item.alternate {
    background: #f9f9f9;
}

.ts-product-list-row {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    max-width: 1224px;
    margin: 0 auto;
}
.ts-product-list-item.alternate .ts-product-list-row {
    flex-direction: row-reverse;
}

.ts-product-image-col {
    flex: 0 0 45%;
    text-align: center;
}

.ts-product-image-col img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.ts-product-specs-col {
    flex: 1;
}

.ts-product-model-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    letter-spacing: 1px;
}

.ts-product-model-subtitle {
    font-size: 12px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ts-product-features-heading {
    font-size: 16px;
    font-weight: 600;
    color: #db261b;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    margin: 0;
}

.ts-learn-more-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ts-learn-more-wrapper .ts-learn-more-arrow {
    position: static;
    transform: none;
    font-size: 24px;
    color: #db261b;
}

.ts-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.ts-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ts-spec-bullet {
    width: 8px;
    height: 8px;
    background: #db261b;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.ts-spec-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.ts-spec-heading {
    font-weight: normal;
    color: gray;
}

.ts-spec-value {
    font-weight: 600;
    color: #3b3b3b;
}

.ts-learn-more-arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #db261b;
    cursor: pointer;
}



.ts-contact-btn-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.ts-contact-btn {
    background: #db261b;
    color: white;
    border: none;
    font-weight: bold;
}

.ts-empty-state {
    padding: 100px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .ts-product-list-row,
    .ts-product-list-item.alternate .ts-product-list-row {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .ts-product-image-col {
        flex: 1;
    }
    
    .ts-category-title {
        font-size: 26px;
    }
    
    .ts-product-model-title {
        font-size: 22px;
    }
    
    .ts-product-features-heading {
        font-size: 14px;
    }
    
    .ts-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 15px;
    }
    
    .ts-spec-text {
        font-size: 11px;
    }
    
    .ts-learn-more-arrow {
        position: static;
        transform: none;
        text-align: center;
        
    }
}

@media (max-width: 576px) {
    .ts-category-title {
        font-size: 20px;
    }
    
    .ts-product-model-title {
        font-size: 18px;
    }
    
    .ts-product-features-heading {
        font-size: 13px;
    }
    
    .ts-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
    }
    
    .ts-spec-text {
        font-size: 10px;
    }
    
    .ts-spec-bullet {
        width: 6px;
        height: 6px;
        margin-top: 4px;
    }
}

@media (max-width: 400px) {
    .ts-category-title {
        font-size: 18px;
    }
    .ts-category-subtitle {
        font-size: 14px;
    }
    
    .ts-product-model-title {
        font-size: 18px;
    }  
    .ts-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 10px;
    }
    
    .ts-spec-text {
        font-size: 12px;
    }
}