Pick a scale to see the weight and dimensions of the Speedster paddles:


SizeSurfaceMax WidthDiameter ⌀Weight
76490cm²16cm29mm425g
81522cm²16.5cm29mm435g
86555cm²17.2cm29mm450g
76 RDM490cm²16cm26mm415g
81 RDM522cm²16.3cm26mm425g
86 RDM555cm²17.2cm26mm440g

.custom-table-wrapper {
width: 100%;
overflow-x: auto;
background: #ffffff;
padding: 20px;
box-sizing: border-box;
}

.toggle-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
}

.toggle-button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #f0f0f0;
border: none;
color: #000;

width: 100px;
text-align: center;
}

.toggle-button.active {
background-color: #000;
color: #fff;
}

.custom-table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
color: #000;
}

.custom-table th, .custom-table td {
border: 1px solid #ddd;
padding: 10px;
text-align: center;
}

.custom-table th {
background-color: #f0f0f0;
font-weight: bold;
}

.custom-table td {
font-weight: normal;
}

@media (max-width: 768px) {
.custom-table-wrapper {
padding: 10px;
}

.custom-table th, .custom-table td {
padding: 6px; /* Reduced padding for mobile */
}
}

function toggleMeasurement(unit) {
const rows = document.querySelectorAll('#measurement-table tbody tr td');

rows.forEach(row => {
if (row.hasAttribute(`data-${unit}`)) {
row.innerText = row.getAttribute(`data-${unit}`);
}
});

// Set the active state on the buttons
document.getElementById('metric-button').classList.toggle('active', unit === 'metric');
document.getElementById('imperial-button').classList.toggle('active', unit === 'imperial');
}

// Initialize with metric by default
document.addEventListener('DOMContentLoaded', function() {
toggleMeasurement('metric');
});