/* === PROFALAT SÚLY KALKULÁTOR (új layout) === */

.profalat-calc-container.full-width {
    width: 100%;
    margin: 40px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.profalat-calc-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(0, 42, 58, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 15px 40px rgba(0, 42, 58, 0.04);
}

.profalat-calc-wrapper * {
    box-sizing: border-box;
}

.profalat-calc-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profalat-calc-right {
    flex: 1;
    display: flex;
}

.calc-title {
    font-size: 26px;
    font-weight: 800;
    color: #002a3a;
    margin: 0 0 6px 0;
}

.calc-subtitle {
    font-size: 15px;
    color: #555;
    margin: 0 0 25px 0;
}

.calc-weight-display {
    margin-bottom: 20px;
}

.profalat-calc-container .current-weight {
    font-size: 56px;
    font-weight: 800;
    color: #002a3a;
    line-height: 1;
}

.profalat-calc-container .weight-unit {
    font-size: 24px;
    font-weight: 700;
    color: #002a3a;
    margin-left: 4px;
}

.profalat-calc-container .size-badge {
    display: inline-block;
    background: rgba(0, 42, 58, 0.06);
    color: #002a3a;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-slider-wrap {
    width: 100%;
    margin: 0 0 35px 0;
    position: relative;
}

.profalat-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: rgba(0, 42, 58, 0.1);
    outline: none;
    margin: 15px 0;
}

.profalat-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f03142;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(240, 49, 66, 0.4);
    transition: transform 0.1s ease;
}

.profalat-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.profalat-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #f03142;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(240, 49, 66, 0.4);
    transition: transform 0.1s ease;
}

.profalat-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    font-size: 13px;
    color: #718096;
    font-weight: 600;
}

.calc-result-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.result-box {
    flex: 1;
    background: rgba(0, 42, 58, 0.02);
    border: 1px solid rgba(0, 42, 58, 0.05);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.3s ease;
    text-align: center;
}

.result-box:hover {
    border-color: rgba(0, 42, 58, 0.15);
}

.result-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #718096;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.result-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #f03142;
    line-height: 1.2;
}

.result-sub {
    display: block;
    font-size: 12.5px;
    color: #555;
    margin-top: 4px;
}

/* === JOBB OLDAL (sötét kártya) === */

.calc-bundle-offer {
    width: 100%;
    background: #012838;
    border-radius: 16px;
    padding: 30px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 12px 30px rgba(1, 40, 56, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 35px;
    background: #f03142;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(240, 49, 66, 0.3);
    z-index: 2;
}

.bundle-image-wrap {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-image-wrap img {
    max-width: 130%;
    max-height: 130%;
    object-fit: contain;
    transform: scale(1.15);
    transition: transform 0.2s ease, opacity 0.25s ease-in-out;
}

.bundle-info h4 {
    margin: 0 0 8px 0;
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.bundle-info p {
    margin: 0 0 15px 0;
    font-size: 13.5px;
    color: #a0aec0;
    line-height: 1.5;
}

.bundle-price {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.calc-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #f03142 !important;
    padding: 16px 24px;
    border-radius: 12px;
    transition: all 0.25s ease;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none !important;
    margin-top: auto;
}

.cta-button-text {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.cta-button-svg {
    stroke: #ffffff !important;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.calc-cta-button:hover {
    background: #d62434 !important;
    box-shadow: 0 8px 20px rgba(240, 49, 66, 0.3);
    transform: translateY(-2px);
}

.calc-cta-button:hover .cta-button-svg {
    transform: translateX(4px);
}

/* === MOBIL === */
@media (max-width: 900px) {
    .profalat-calc-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }
    .profalat-calc-left,
    .profalat-calc-right {
        width: 100%;
        flex: none;
    }
    .calc-title { font-size: 22px; }
    .profalat-calc-container .current-weight { font-size: 48px; }
    .bundle-image-wrap { height: 200px; }
    .calc-bundle-offer { padding: 25px 20px; }
}
