/* When BMSM is active for this product, hide theme price (e.g. alemar layout) */
body.bmsm-product-active .alemar-price {
    display: none !important;
}

.bmsm-wrapper {
    margin: 30px 0;
    max-width: 100%;
}

.bmsm-regular-price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.bmsm-regular-price .bmsm-price-amount {
    color: #000;
    font-weight: 600 !important;
    font-size: 28px;
}

.bmsm-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.bmsm-card {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px 20px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.bmsm-card:hover {
    border-color: #15b593;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bmsm-card-active {
    border: 1px solid #15b593 !important;
    box-shadow: 0 1px 19px rgb(0 0 0 / 20%);
    background: rgb(255 255 255);
}

.bmsm-card-content {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.bmsm-buy-text {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.bmsm-buy-text .bmsm-quantity,
.bmsm-buy-text .bmsm-discount-amount {
    color: #15b593;
    font-weight: bold;
}

.bmsm-buy-text .bmsm-discount-amount .woocommerce-Price-amount {
    color: #15b593;
}

.bmsm-card-prices {
    margin-top: 5px;
}

.bmsm-price-comparison {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bmsm-price-comparison del {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.bmsm-arrow {
    font-size: 18px;
    color: #666;
    font-weight: normal;
}

.bmsm-price-comparison .bmsm-new-price {
    font-size: 20px;
    color: #333;
}

.bmsm-progress-wrapper {
    margin: 20px 0;
}

.bmsm-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bmsm-progress-fill {
    height: 100%;
    background: linear-gradient(to right, #3cc7cc, #15b593);
    transition: width 0.3s ease;
    width: 0%;
}

.bmsm-progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Kartice vedno ena pod drugo, polne širine */
@media (min-width: 768px) {
    .bmsm-cards {
        flex-direction: column;
    }
    
    .bmsm-card {
        width: 100%;
    }
}

.mob-adj > .kt-inside-inner-col {
    width: 100% !important;
    align-items: normal !important;
}

@media(max-width: 549px){
    .bmsm-card {
        padding: 12px 8px;
    }
    .bmsm-buy-text {
        font-size: 14px;
    }
    .bmsm-price-comparison .bmsm-new-price {
        font-size: 17px;
    }
    .bmsm-price-comparison del {
        font-size: 15px;
    }
    .bmsm-arrow {
        font-size: 12px;
    }
    .bmsm-price-comparison {
        gap: 4px;
    }
    .bmsm-card-prices {
        margin-top: 0px;
    }
    .bmsm-progress-bar {
        height: 6px;
    }
}