@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swap");

[class*="sako-"] * {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-display {
    margin: 15px 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-netto,
.sako-price-brutto,
.sako-price-per-m2 {
    display: flex;
    align-items: baseline;
    margin: 5px 0;
    line-height: 1.4;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    gap:4px;
}

.sako-price-netto .sako-price-amount {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-brutto .sako-price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #E25303;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-per-m2 .sako-price-amount {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-left: 5px;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-price-brutto .sako-price-label {
    color: #E25303;
    font-weight: 500;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

@media screen and (max-width: 768px) {
    .sako-price-netto .sako-price-amount {
        font-size: 16px;
    }
    
    .sako-price-brutto .sako-price-amount {
        font-size: 18px;
    }
    
    .sako-price-per-m2 .sako-price-amount {
        font-size: 14px;
    }
    
    .sako-price-label {
        font-size: 12px;
    }
}

.sako-floating-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-floating-cart.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sako-floating-quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.sako-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f8f8;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.sako-qty-btn:hover {
    background: #eee;
}

.sako-qty-btn:active {
    background: #ddd;
}

.sako-floating-quantity {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: white;
    outline: none;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-floating-add-to-cart {
    flex: 1;
    height: 48px;
    background: #E25303;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.sako-floating-add-to-cart:hover:not(:disabled) {
    background: #d44a02;
}

.sako-floating-add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    color: white !important;
}

.sako-floating-add-to-cart .__text {
    display: inline;
}

@media screen and (max-width: 1024px) {
    .sako-floating-cart.visible {
        display: flex;
    }
}
