/* ================================================
   PRODUCT MODULES (Tackiness, Speed, etc.)
   ================================================ */

.pg-product-modules {
    margin-top: 28px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-module {
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: 2px;
    padding: 16px 18px;
}

.pg-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pg-module-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--pg-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pg-module-value-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg-module-badge {
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pg-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pg-module-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--pg-dark);
    line-height: 1;
}

.pg-module-value small {
    font-size: 13px;
    font-weight: 500;
    color: var(--pg-grey);
}

.pg-module-bar-track {
    position: relative;
    height: 8px;
    background: var(--pg-light-grey);
    border-radius: 2px;
    overflow: visible;
}

.pg-module-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.pg-module-bar-marker {
    position: absolute;
    top: -1px;
    width: 1px;
    height: 10px;
    background: rgba(0, 0, 0, 0.08);
    transform: translateX(-50%);
}

/* Level labels below progress bar */
.pg-module-levels {
    display: flex;
    margin-top: 6px;
}

.pg-module-level {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.45;
    transition: opacity 0.2s;
    line-height: 1.3;
    padding: 2px 0;
}

.pg-module-level-active {
    opacity: 1;
    font-weight: 800;
    font-size: 11px;
}

/* Throw Angle SVG module */
.pg-module-throw-svg {
    margin-top: 8px;
}

.pg-module-throw-svg svg {
    width: 100%;
    height: auto;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .pg-product-modules {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .pg-module {
        padding: 16px 18px;
        border-radius: 2px;
    }

    .pg-module-label {
        font-size: 12px;
    }

    .pg-module-value {
        font-size: 18px;
    }

    .pg-module-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
}

